Commit
·
75bc69f
1
Parent(s):
b8dbd20
fix(config): use gpt-5.1 (actually available) not gpt-5 (deprecated)
Browse files- src/utils/config.py +1 -1
src/utils/config.py
CHANGED
|
@@ -26,7 +26,7 @@ class Settings(BaseSettings):
|
|
| 26 |
llm_provider: Literal["openai", "anthropic", "huggingface"] = Field(
|
| 27 |
default="openai", description="Which LLM provider to use"
|
| 28 |
)
|
| 29 |
-
openai_model: str = Field(default="gpt-5", description="OpenAI model name")
|
| 30 |
anthropic_model: str = Field(
|
| 31 |
default="claude-sonnet-4-5-20250929", description="Anthropic model"
|
| 32 |
)
|
|
|
|
| 26 |
llm_provider: Literal["openai", "anthropic", "huggingface"] = Field(
|
| 27 |
default="openai", description="Which LLM provider to use"
|
| 28 |
)
|
| 29 |
+
openai_model: str = Field(default="gpt-5.1", description="OpenAI model name")
|
| 30 |
anthropic_model: str = Field(
|
| 31 |
default="claude-sonnet-4-5-20250929", description="Anthropic model"
|
| 32 |
)
|