-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.example.json
More file actions
42 lines (42 loc) · 1.07 KB
/
Copy pathconfig.example.json
File metadata and controls
42 lines (42 loc) · 1.07 KB
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
{
"base_url": "127.0.0.1",
"port": 1865,
"user_id": "testing_user",
"username": "admin",
"password": "admin",
"timeout": 60,
"check_tokens_usage": false,
"llm_config": [
{
"name": "LLMOpenAIChatConfig",
"value": {
"openai_api_key": "REPLACE_ME",
"model_name": "gpt-4o-mini",
"temperature": 0.7,
"streaming": true
},
"cost_per_million_tokens": {
"input": 0.15,
"output": 0.6
}
},
{
"name": "LLMOpenAIChatConfig",
"value": {
"openai_api_key": "REPLACE_ME",
"model_name": "gpt-4.1-mini",
"temperature": 0.4,
"streaming": true
},
"cost_per_million_tokens": {
"input": 0.4,
"output": 1.6
}
}
],
"conversations": [
["How are you?"],
["My name is Luigi", "What's my name?"]
],
"num_runs": 2
}