Forward instruction schemas to llm-connect

This commit is contained in:
2026-05-21 03:19:27 +02:00
parent 5c4f96e7aa
commit cf92f0d686
3 changed files with 81 additions and 8 deletions

View File

@@ -157,5 +157,18 @@ async def test_evaluate_instructions_forwards_llm_connect_depth_config(monkeypat
"temperature": 0.2,
"max_tokens": 1200,
"max_depth": 2,
"model_params": {"reasoning_effort": "medium"},
"model_params": {
"reasoning_effort": "medium",
"json_schema": {
"type": "object",
"required": ["summary", "recommendations"],
"properties": {
"summary": {"type": "string"},
"recommendations": {
"type": "array",
"items": {"type": "object"},
},
},
},
},
}