Skip to content

Commit

Permalink
default model
Browse files Browse the repository at this point in the history
  • Loading branch information
= Enea_Gore committed Jan 23, 2025
1 parent 8761143 commit 054d114
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llm_core/llm_core/models/openai.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
if openai_available:
openai.api_type = "openai"
for model in openai.models.list():
if ("gpt" in model.id or "o1" in model.id) and "audio" not in model.id and "realtime" not in model.id:
if "gpt" in model.id and "audio" not in model.id and "realtime" not in model.id:
available_models[OPENAI_PREFIX + model.id] = ChatOpenAI(model=model.id)

# Load Azure OpenAI models
Expand Down

0 comments on commit 054d114

Please sign in to comment.