-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.example.json
34 lines (34 loc) · 1.11 KB
/
config.example.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
{
"conversation_generator": {
"generation_prompt": {
"provider": "openai",
"model": "gpt-4o",
"api_key": "your_api_key_here",
"system_prompt_path": "./prompts/defaults/conversation-generation.txt"
},
"next_message": {
"provider": "openai",
"model": "gpt-4o-mini",
"api_key": "your_api_key_here",
"system_prompt_path": "./prompts/defaults/conversation-next-message.txt"
}
},
"conversation_evaluator": {
"conversation": {
"provider": "openai",
"model": "gpt-4o-mini",
"api_key": "your_api_key_here",
"system_prompt_path": "./prompts/defaults/conversation-evaluation.txt"
},
"information_extraction": {
"provider": "openai",
"model": "gpt-4o-mini",
"api_key": "your_api_key_here",
"system_prompt_path": "./prompts/defaults/conversation-information-extraction.txt"
}
},
"test_suite": {
"dir": "./test-suites",
"results_dir": "./test-results"
}
}