From 1d1c7d21f7376815cfee1e8448f5adb34a65a466 Mon Sep 17 00:00:00 2001 From: Andrej Milicevic Date: Wed, 22 Oct 2025 14:06:43 +0200 Subject: [PATCH] change model --- .github/workflows/basic_tests.yml | 2 +- cognee/infrastructure/llm/config.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/basic_tests.yml b/.github/workflows/basic_tests.yml index 4520fc0fc..e1c6a666b 100644 --- a/.github/workflows/basic_tests.yml +++ b/.github/workflows/basic_tests.yml @@ -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 }} diff --git a/cognee/infrastructure/llm/config.py b/cognee/infrastructure/llm/config.py index e1ac55405..8fd196eaf 100644 --- a/cognee/infrastructure/llm/config.py +++ b/cognee/infrastructure/llm/config.py @@ -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"