Skip to content

Commit f989019

Browse files
committed
feat: update base LLM & search model
1 parent 28a13aa commit f989019

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

backend/api/ai/services/chat_service.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from api.ai.connectors.openrouter_connector import OpenRouterConnector
55
from api.ai.services.prompt_service import PromptService
66

7-
LLM_MODEL: str = "qwen/qwen3-235b-a22b-2507"
7+
LLM_MODEL: str = "openai/gpt-oss-120b"
88
LLM_TEMPERATURE: float = 0
99

1010
CHAT_PROMPT_PATH: str = "api/prompts/chat.prompt"

backend/api/ai/services/scheduling_service.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from api.ai.services.tools_service import ToolsService
99
from api.ai.services.transcription_service import TranscriptionService
1010

11-
LLM_MODEL: str = "qwen/qwen3-235b-a22b-2507"
11+
LLM_MODEL: str = "openai/gpt-oss-120b"
1212
LLM_TEMPERATURE: float = 0
1313

1414
handler = CallbackHandler()

backend/api/ai/services/search_service.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from api.ai.connectors.exa_connector import ExaConnector
44

5-
EXA_MODEL = "exa-fast-preview"
5+
EXA_MODEL = "exa"
66

77

88
class SearchService:

0 commit comments

Comments
 (0)