-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
53 lines (53 loc) · 1.2 KB
/
config.json
File metadata and controls
53 lines (53 loc) · 1.2 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
43
44
45
46
47
48
49
50
51
52
53
{
"examples": {
"openai": {
"provider": "openai",
"model_name": "gpt-4",
"max_tokens": 2000,
"temperature": 0.7
},
"anthropic": {
"provider": "anthropic",
"model_name": "claude-3-opus-20240229",
"max_tokens": 2000,
"temperature": 0.7
},
"google": {
"provider": "google",
"model_name": "gemini-pro",
"max_tokens": 2000,
"temperature": 0.7
},
"meta": {
"provider": "meta",
"model_name": "meta-llama/Llama-2-70b-chat-hf",
"base_url": "https://api.together.xyz/v1/chat/completions",
"max_tokens": 2000,
"temperature": 0.7
},
"ollama": {
"provider": "ollama",
"model_name": "llama3.3:latest",
"base_url": "http://localhost:11434",
"max_tokens": 2000,
"temperature": 0.7
}
},
"model1": {
"provider": "openai",
"model_name": "gpt-4",
"max_tokens": 2000,
"temperature": 0.7
},
"model2": {
"provider": "anthropic",
"model_name": "claude-3-opus-20240229",
"max_tokens": 2000,
"temperature": 0.7
},
"conversation": {
"stop_condition": "fixed_turns",
"max_turns": 8,
"output_dir": "conversations"
}
}