## Turn 1

*   Task: Return a compact JSON object.
    *   Keys: `status`, `model_fit_observation`, `caveat`.
    *   Constraint: `caveat` must be exactly "a true max-context result requires restarting the server with different context settings."
    *   Context: Running in a private home-lab benchmark harness.
    *   Output format: JSON only.

    *   `status`: "success" (or similar).
    *   `model_fit_observation`: A brief observation about model fit (e.g., "The model demonstrates high coherence and adherence to constraints within the current context window.").
    *   `caveat`: "a true max-context result requires restarting the server with different context settings."

    ```json
    {
      "status": "success",
      "model_fit_observation": "The model demonstrates high coherence and adherence to constraints within the current context window.",
      "caveat": "a true max-context result requires restarting the server with different context settings."
    }
    ```

    *   Compact JSON? Yes.
    *   Keys correct? Yes.
    *   Caveat exact? Yes.
    *   No extra text? Yes.