We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6a9a3f commit 26f4f29Copy full SHA for 26f4f29
server/api/views/assistant/views.py
@@ -223,7 +223,8 @@ def search_documents(query: str, user=user) -> str:
223
MODEL_DEFAULTS = {
224
"instructions": INSTRUCTIONS,
225
"model": "gpt-5-nano", # 400,000 token context window
226
- "reasoning": {"effort": "low", "summary": "auto"},
+ # A summary of the reasoning performed by the model. This can be useful for debugging and understanding the model's reasoning process.
227
+ "reasoning": {"effort": "low", "summary": None},
228
"tools": tools,
229
}
230
0 commit comments