Skip to content

Commit 2eba424

Browse files
Restore OpenAI params to focus PR on tool-call fix
1 parent e8c9873 commit 2eba424

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

mini_agent/llm/openai_client.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,8 @@ async def _make_api_request(
6565
params = {
6666
"model": self.model,
6767
"messages": api_messages,
68-
# Add consistent parameters for better KV cache stability
69-
"temperature": 0.7, # Consistent temperature
70-
"seed": 42, # Fixed seed for deterministic behavior and better caching
7168
# Enable reasoning_split to separate thinking content
72-
# NOTE: Commenting out for local models - may cause cache invalidation
73-
# "extra_body": {"reasoning_split": True},
69+
"extra_body": {"reasoning_split": True},
7470
}
7571

7672
if tools:

0 commit comments

Comments
 (0)