-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig_openai_realtime_beta_2024_10.json
71 lines (71 loc) · 1.85 KB
/
config_openai_realtime_beta_2024_10.json
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"bot_profile": "openai_realtime_beta_2024_10",
"max_duration": 600,
"services": {
"llm": "openai_realtime"
},
"config": [
{
"service": "tts",
"options": [
{
"name": "voice",
"value": "79a125e8-cd45-4c13-8a67-188112f4dd22"
}
]
},
{
"service": "llm",
"options": [
{
"name": "model",
"value": "meta-llama/Meta-Llama-3.1-70B-Instruct-Turbo"
},
{
"name": "initial_messages",
"value": [
{
"role": "system",
"content": "You are helpful assistant called Daily Bot. You can ask me anything. Keep responses brief and legible. Start by briefly introducing yourself. Your responses will be converted to audio."
}
]
},
{
"name": "tools",
"value": [
{
"type": "function",
"name": "get_current_weather",
"description": "Get the current weather",
"parameters": {
"type": "object",
"properties": {
"location": {
"type": "string",
"description": "The city and state, e.g. San Francisco, CA"
},
"format": {
"type": "string",
"enum": [
"celsius",
"fahrenheit"
],
"description": "The temperature unit to use. Infer this from the users location."
}
},
"required": [
"location",
"format"
]
}
}
]
},
{
"name": "run_on_config",
"value": true
}
]
}
]
}