Skip to content

Commit 15d2ee8

Browse files
authored
Merge pull request #386 from sahilds1/385-bugfix-model-reasoning-summary
BUGFIX: OpenAI model reasoning summary requires org verification
2 parents e6a9a3f + 26f4f29 commit 15d2ee8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

server/api/views/assistant/views.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,8 @@ def search_documents(query: str, user=user) -> str:
223223
MODEL_DEFAULTS = {
224224
"instructions": INSTRUCTIONS,
225225
"model": "gpt-5-nano", # 400,000 token context window
226-
"reasoning": {"effort": "low", "summary": "auto"},
226+
# 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},
227228
"tools": tools,
228229
}
229230

0 commit comments

Comments
 (0)