-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopenai.json
35 lines (35 loc) · 1.06 KB
/
openai.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
{
"$schema": "chatroom_configuration_schema.json",
"channel_config": {
"openai_config": {
"llm_type": "OpenAI",
"openai_model_id": "gpt-3.5-turbo",
"openai_api_key": "<openai-api-key>"
}
},
"server_config": {
"urls": "http://localhost:51234;https://localhost:51235"
},
"chatroom_openai_configuration": {
"agents": [
{
"name": "gpt35",
"system_message": "You are a helpful AI assistant",
"llm_config": {
"llm_type": "OpenAI",
"openai_model_id": "gpt-3.5-turbo",
"openai_api_key": "<openai-api-key>"
}
},
{
"name": "gpt4o",
"system_message": "You are a helpful AI assistant",
"llm_config": {
"llm_type": "OpenAI",
"openai_model_id": "gpt-4o",
"openai_api_key": "<openai-api-key>"
}
}
]
}
}