-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenclaw-faigate.jsonc
More file actions
61 lines (61 loc) · 1.59 KB
/
openclaw-faigate.jsonc
File metadata and controls
61 lines (61 loc) · 1.59 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
// Example OpenClaw provider block for fusionAIze Gate.
// Merge this into ~/.openclaw/openclaw.json.
//
// Important:
// - The ids listed under providers.faigate.models must match
// GET /v1/models from fusionAIze Gate.
// - Use faigate/auto for normal chat routing and, if desired, also for
// imageModel so fusionAIze Gate can choose among image-capable providers.
{
"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": "local-worker",
"name": "Local Worker (via fusionAIze Gate)",
"contextWindow": 128000,
"maxTokens": 8000
},
{
"id": "image-provider",
"name": "Image Provider (via fusionAIze Gate)",
"contextWindow": 128000,
"maxTokens": 8000
}
]
}
}
},
"agents": {
"defaults": {
"model": {
"primary": "faigate/auto",
"fallbacks": []
},
"imageModel": {
"primary": "faigate/auto",
"fallbacks": []
},
"models": {
"faigate/auto": { "alias": "auto" },
"faigate/local-worker": { "alias": "local" },
"faigate/image-provider": { "alias": "img" }
},
"subagents": {
"model": "faigate/auto"
}
}
}
}