-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathconfig.toml
46 lines (38 loc) · 993 Bytes
/
config.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[vendor]
simple_model = "openai"
complex_model = "openai"
embeddings_model = "openai"
[aws]
simple_model = "anthropic.claude-3-haiku-20240307-v1:0"
complex_model = "anthropic.claude-3-5-sonnet-20240620-v1:0"
embeddings_model = "amazon.titan-embed-text-v1"
region_name = "us-east-1"
[openai]
simple_model = "gpt-4o-mini"
complex_model = "gpt-4o-2024-08-06"
embeddings_model = "text-embedding-ada-002"
base_url = "https://api.openai.com/v1/" # for openai compatible apis
[ollama]
simple_model = "llama3.2"
complex_model = "llama3.1:70b"
embeddings_model = "llama3.2"
base_url = "http://localhost:11434"
[tracing]
project = "rai"
[tracing.langfuse]
use_langfuse = false
host = "http://localhost:3000"
[tracing.langsmith]
use_langsmith = false
[asr]
recording_device_name = "default"
vendor = "whisper"
language = "en"
silence_grace_period = 0.3
use_wake_word = false
vad_threshold = 0.3
wake_word_model = ""
wake_word_threshold = 0.5
[tts]
vendor = "elevenlabs"
keep_speaker_busy = false