Unverified Commit 30885632 authored by Kurt Yang's avatar Kurt Yang Committed by GitHub
Browse files

Adding support for OpenAI GPT-5 model; Models only support hardcoded...

Adding support for OpenAI GPT-5 model; Models only support hardcoded tempeature=1 and stop=None (#3247)
parent a4fd524f
...@@ -289,7 +289,7 @@ class OpenAIChatCompletion(LocalChatCompletion): ...@@ -289,7 +289,7 @@ class OpenAIChatCompletion(LocalChatCompletion):
"seed": seed, "seed": seed,
**gen_kwargs, **gen_kwargs,
} }
if "o1" in self.model: if "o1" in self.model or "5" in self.model:
output.pop("stop") output.pop("stop")
output["temperature"] = 1 output["temperature"] = 1
elif "o3" in self.model: elif "o3" in self.model:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment