-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenclaw-faigate-full.jsonc
More file actions
129 lines (129 loc) · 3.36 KB
/
openclaw-faigate-full.jsonc
File metadata and controls
129 lines (129 loc) · 3.36 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
// Full OpenClaw example for fusionAIze Gate as the primary chat gateway.
// Merge the relevant blocks into ~/.openclaw/openclaw.json.
//
// Notes:
// - The ids under providers.faigate.models must match GET /v1/models
// from fusionAIze Gate.
// - Keep direct providers only when you still want manual overrides outside
// the gateway.
// - If fusionAIze Gate does not yet expose a real image-capable provider, keep
// imageModel on one direct provider until it does.
{
"models": {
"mode": "merge",
"providers": {
"faigate": {
"baseUrl": "http://127.0.0.1:8090/v1",
"apiKey": "local",
"auth": "api-key",
"api": "openai-completions",
"models": [
{
"id": "auto",
"name": "fusionAIze Gate Auto-Router",
"contextWindow": 128000,
"maxTokens": 8000
},
{
"id": "deepseek-chat",
"name": "DeepSeek Chat (via fusionAIze Gate)",
"contextWindow": 128000,
"maxTokens": 8000
},
{
"id": "deepseek-reasoner",
"name": "DeepSeek Reasoner (via fusionAIze Gate)",
"contextWindow": 128000,
"maxTokens": 8000
},
{
"id": "gemini-flash-lite",
"name": "Gemini Flash-Lite (via fusionAIze Gate)",
"contextWindow": 1000000,
"maxTokens": 8000
},
{
"id": "gemini-flash",
"name": "Gemini Flash (via fusionAIze Gate)",
"contextWindow": 1000000,
"maxTokens": 8000
},
{
"id": "openrouter-fallback",
"name": "OpenRouter Fallback (via fusionAIze Gate)",
"contextWindow": 128000,
"maxTokens": 8000
}
]
},
"google": {
"baseUrl": "https://generativelanguage.googleapis.com/v1beta",
"apiKey": "${GEMINI_API_KEY}",
"auth": "api-key",
"api": "google-generative-ai",
"models": [
{
"id": "gemini-2.5-flash",
"name": "Gemini 2.5 Flash",
"contextWindow": 1000000,
"maxTokens": 8000
}
]
}
}
},
"agents": {
"defaults": {
"model": {
"primary": "faigate/auto",
"fallbacks": []
},
"imageModel": {
"primary": "google/gemini-2.5-flash",
"fallbacks": []
},
"models": {
"faigate/auto": {
"alias": "auto"
},
"faigate/deepseek-chat": {
"alias": "ds"
},
"faigate/deepseek-reasoner": {
"alias": "r1"
},
"faigate/gemini-flash-lite": {
"alias": "lite"
},
"faigate/gemini-flash": {
"alias": "flash"
},
"faigate/openrouter-fallback": {
"alias": "or"
},
"google/gemini-2.5-flash": {
"alias": "img"
}
},
"contextTokens": 200000,
"heartbeat": {
"every": "12h",
"model": "faigate/gemini-flash-lite",
"suppressToolErrorWarnings": true
},
"subagents": {
"maxConcurrent": 6,
"model": "faigate/auto"
}
}
},
"commands": {
"native": "auto",
"nativeSkills": "auto",
"restart": true,
"ownerDisplay": "raw"
},
"gateway": {
"mode": "local"
}
}