diff --git a/basilisk/provider_engine/openai_engine.py b/basilisk/provider_engine/openai_engine.py index d2309764..5d3c6f48 100644 --- a/basilisk/provider_engine/openai_engine.py +++ b/basilisk/provider_engine/openai_engine.py @@ -102,10 +102,10 @@ def models(self) -> list[ProviderAIModel]: max_temperature=2.0, ), ProviderAIModel( - id="o1", + id="o3-mini", # Translators: This is a model description description=_( - "Points to the most recent snapshot of the o1 model" + "Our most recent small reasoning model, providing high intelligence at the same cost and latency targets of o1-mini. o3-mini also supports key developer features, like Structured Outputs, function calling, Batch API, and more. Like other models in the o-series, it is designed to excel at science, math, and coding tasks." ), context_window=200000, max_output_tokens=100000, @@ -113,13 +113,13 @@ def models(self) -> list[ProviderAIModel]: max_temperature=2.0, ), ProviderAIModel( - id="o1-preview", + id="o1", # Translators: This is a model description description=_( - "Points to the most recent snapshot of the o1-preview model" + "Points to the most recent snapshot of the o1 model" ), - context_window=128000, - max_output_tokens=32768, + context_window=200000, + max_output_tokens=100000, vision=True, max_temperature=2.0, ),