From f76634365b5680a838da84ff257abde96714506e Mon Sep 17 00:00:00 2001 From: sam-paech <152407511+sam-paech@users.noreply.github.com> Date: Sat, 12 Jul 2025 10:34:10 +1000 Subject: [PATCH] revert openai-response commented params --- ai_diplomacy/clients.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ai_diplomacy/clients.py b/ai_diplomacy/clients.py index 974e3ba..3fdfe44 100644 --- a/ai_diplomacy/clients.py +++ b/ai_diplomacy/clients.py @@ -969,8 +969,8 @@ class OpenAIResponsesClient(BaseModelClient): payload = { "model": self.model_name, "input": full_prompt, - #"temperature": temperature, - #"max_tokens": self.max_tokens, + "temperature": temperature, + "max_tokens": self.max_tokens, } headers = {"Content-Type": "application/json", "Authorization": f"Bearer {self.api_key}"}