blob: fec2b026986f99f7f6d050efe73b17f79f6b6a3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
[app]
# LLM used for internal operations, like deriving conversation names
fast_llm = "azure/gpt-4o-mini"
# LLM used for user-facing output, like RAG replies
quality_llm = "azure/gpt-4o"
# LLM used for ingesting visual inputs
vlm = "azure/gpt-4o"
# LLM used for transcription
audio_lm = "azure/whisper-1"
# Reasoning model, used for `research` agent
reasoning_llm = "azure/o3-mini"
# Planning model, used for `research` agent
planning_llm = "azure/o3-mini"
[embedding]
base_model = "azure/text-embedding-3-small"
[completion_embedding]
base_model = "azure/text-embedding-3-small"
|