-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathflexible_config.json
More file actions
84 lines (84 loc) · 2.03 KB
/
flexible_config.json
File metadata and controls
84 lines (84 loc) · 2.03 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"engines": [
{
"name": "openai_reasoning",
"engine": "openai",
"connection": {
"protocol": "https",
"hostname": "api.openai.com",
"port": 443,
"request_path": "/v1/chat/completions"
},
"parameters": {
"bearer_token": "${OPENAI_API_KEY}",
"max_tokens": 4000,
"model": "gpt-4o",
"temperature": 0.1
}
},
{
"name": "anthropic_reasoning",
"engine": "anthropic",
"connection": {
"protocol": "https",
"hostname": "api.anthropic.com",
"port": 443,
"request_path": "/v1/messages"
},
"parameters": {
"bearer_token": "${ANTHROPIC_API_KEY}",
"max_tokens": 4000,
"model": "claude-sonnet-4-20250514",
"temperature": 0.1
}
},
{
"name": "gemini_reasoning",
"engine": "gemini",
"connection": {
"protocol": "https",
"hostname": "generativelanguage.googleapis.com",
"port": 443,
"request_path": "/v1beta/models/gemini-pro:generateContent"
},
"parameters": {
"bearer_token": "${GEMINI_API_KEY}",
"max_tokens": 4000,
"model": "gemini-pro",
"temperature": 0.1
}
},
{
"name": "openai_action",
"engine": "openai",
"connection": {
"protocol": "https",
"hostname": "api.openai.com",
"port": 443,
"request_path": "/v1/chat/completions"
},
"parameters": {
"bearer_token": "${OPENAI_API_KEY}",
"max_tokens": 2000,
"model": "gpt-4o",
"temperature": 0.1
}
},
{
"name": "anthropic_action",
"engine": "anthropic",
"connection": {
"protocol": "https",
"hostname": "api.anthropic.com",
"port": 443,
"request_path": "/v1/messages"
},
"parameters": {
"bearer_token": "${ANTHROPIC_API_KEY}",
"max_tokens": 2000,
"model": "claude-sonnet-4-20250514",
"temperature": 0.1
}
}
]
}