diff --git a/scripts/batch_o3_prompts.py b/scripts/batch_o3_prompts.py index df6ad8b..0e87b96 100644 --- a/scripts/batch_o3_prompts.py +++ b/scripts/batch_o3_prompts.py @@ -55,8 +55,6 @@ def call_o3(prompt: str) -> str: response = client.chat.completions.create( model=MODEL, messages=[{"role": "user", "content": prompt}], - max_tokens=1024, - temperature=0.7, ) return response.choices[0].message.content.strip()