Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion server/api/views/assistant/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,8 @@ def search_documents(query: str, user=user) -> str:
MODEL_DEFAULTS = {
"instructions": INSTRUCTIONS,
"model": "gpt-5-nano", # 400,000 token context window
"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.
"reasoning": {"effort": "low", "summary": None},
"tools": tools,
}

Expand Down