Skip to content

Commit

Permalink
chore(openai_engine): add o3-mini model and remove o1-preview model
Browse files Browse the repository at this point in the history
  • Loading branch information
AAClause committed Feb 1, 2025
1 parent 453ee3e commit 33e95e1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions basilisk/provider_engine/openai_engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,24 +102,24 @@ 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,
vision=True,
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,
),
Expand Down

0 comments on commit 33e95e1

Please sign in to comment.