refactor: Set Cognee to use gpt4o-mini by default
This commit is contained in:
parent
711f3fe070
commit
73c9777128
1 changed files with 2 additions and 2 deletions
|
|
@ -35,7 +35,7 @@ class LLMConfig(BaseSettings):
|
|||
|
||||
structured_output_framework: str = "instructor"
|
||||
llm_provider: str = "openai"
|
||||
llm_model: str = "gpt-5-mini"
|
||||
llm_model: str = "openai/gpt-4o-mini"
|
||||
llm_endpoint: str = ""
|
||||
llm_api_key: Optional[str] = None
|
||||
llm_api_version: Optional[str] = None
|
||||
|
|
@ -44,7 +44,7 @@ class LLMConfig(BaseSettings):
|
|||
llm_max_completion_tokens: int = 16384
|
||||
|
||||
baml_llm_provider: str = "openai"
|
||||
baml_llm_model: str = "gpt-5-mini"
|
||||
baml_llm_model: str = "openai/gpt-4o-mini"
|
||||
baml_llm_endpoint: str = ""
|
||||
baml_llm_api_key: Optional[str] = None
|
||||
baml_llm_temperature: float = 0.0
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue