change model

This commit is contained in:
Andrej Milicevic 2025-10-22 14:06:43 +02:00
parent a7c74de208
commit 1d1c7d21f7
2 changed files with 2 additions and 2 deletions

View file

@ -162,7 +162,7 @@ jobs:
env:
STRUCTURED_OUTPUT_FRAMEWORK: "BAML"
BAML_LLM_PROVIDER: openai
BAML_LLM_MODEL: ${{ secrets.LLM_MODEL }}
BAML_LLM_MODEL: ${{ secrets.OPENAI_MODEL }}
BAML_LLM_ENDPOINT: ${{ secrets.OPENAI_ENDPOINT }}
BAML_LLM_API_KEY: ${{ secrets.OPENAI_API_KEY }}
# BAML_LLM_API_VERSION: ${{ secrets.LLM_API_VERSION }}

View file

@ -51,7 +51,7 @@ class LLMConfig(BaseSettings):
baml_llm_model: str = "gpt-5-mini"
baml_llm_endpoint: str = ""
baml_llm_api_key: Optional[str] = None
baml_llm_temperature: float = 1.0
baml_llm_temperature: float = 0.0
baml_llm_api_version: str = ""
transcription_model: str = "whisper-1"