echo8900 commited on
Commit
05d89f2
·
verified ·
1 Parent(s): 403fe23

Create openclaw.json

Browse files
Files changed (1) hide show
  1. openclaw.json +78 -0
openclaw.json ADDED
@@ -0,0 +1,78 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "gateway": {
3
+ "auth": { "mode": "token", "token": "WILL_BE_SET_BY_ENV" },
4
+ "controlUi": {
5
+ "allowInsecureAuth": true,
6
+ "allowedOrigins": ["*"],
7
+ "dangerouslyDisableDeviceAuth": true,
8
+ "dangerouslyAllowHostHeaderOriginFallback": true
9
+ },
10
+ "dangerouslyDisableDeviceAuth": true,
11
+ "trustedProxies": [
12
+ "10.0.0.0/8", "172.16.0.0/12", "192.168.0.0/16",
13
+ "10.16.0.0/12", "10.20.0.0/12",
14
+ "10.16.4.123", "10.16.7.92", "10.16.18.232",
15
+ "10.16.34.155", "10.16.43.133", "10.16.1.206",
16
+ "10.16.37.110", "10.16.43.246",
17
+ "10.20.1.9", "10.20.1.222", "10.20.26.157", "10.20.31.87",
18
+ "10.20.0.1", "172.17.0.1", "127.0.0.1"
19
+ ]
20
+ },
21
+ "agents": {
22
+ "defaults": {
23
+ "model": "google/gemini-2.0-flash",
24
+ "workspace": "WILL_BE_SET_BY_ENV"
25
+ }
26
+ },
27
+ "models": {
28
+ "providers": {
29
+ "openrouter": {
30
+ "baseUrl": "https://openrouter.ai/api/v1",
31
+ "apiKey": "WILL_BE_SET_BY_ENV",
32
+ "models": [
33
+ { "id": "google/gemini-2.0-flash", "name": "Gemini 2.0 Flash" },
34
+ { "id": "google/gemini-2.5-pro", "name": "Gemini 2.5 Pro" },
35
+ { "id": "anthropic/claude-3.5-sonnet", "name": "Claude 3.5 Sonnet" },
36
+ { "id": "deepseek/deepseek-chat", "name": "DeepSeek Chat" },
37
+ { "id": "meta-llama/llama-3.3-70b-instruct", "name": "Llama 3.3 70B" }
38
+ ]
39
+ },
40
+ "siliconflow": {
41
+ "baseUrl": "https://api.siliconflow.cn/v1",
42
+ "apiKey": "WILL_BE_SET_BY_ENV",
43
+ "api": "openai-chat",
44
+ "models": [
45
+ { "id": "Qwen/Qwen2.5-72B-Instruct", "name": "Qwen2.5 72B" },
46
+ { "id": "deepseek-ai/DeepSeek-V3", "name": "DeepSeek V3" }
47
+ ]
48
+ },
49
+ "deepseek": {
50
+ "baseUrl": "https://api.deepseek.com/v1",
51
+ "apiKey": "WILL_BE_SET_BY_ENV",
52
+ "api": "openai-chat",
53
+ "models": [
54
+ { "id": "deepseek-chat", "name": "DeepSeek Chat" },
55
+ { "id": "deepseek-reasoner", "name": "DeepSeek Reasoner" }
56
+ ]
57
+ },
58
+ "groq": {
59
+ "baseUrl": "https://api.groq.com/openai/v1",
60
+ "apiKey": "WILL_BE_SET_BY_ENV",
61
+ "api": "openai-chat",
62
+ "models": [
63
+ { "id": "llama-3.3-70b-versatile", "name": "Llama 3.3 70B" },
64
+ { "id": "gemma2-9b-it", "name": "Gemma2 9B" }
65
+ ]
66
+ },
67
+ "google": {
68
+ "baseUrl": "https://generativelanguage.googleapis.com/v1beta",
69
+ "apiKey": "WILL_BE_SET_BY_ENV",
70
+ "models": [
71
+ { "id": "google/gemini-2.0-flash", "name": "Gemini 2.0 Flash" },
72
+ { "id": "google/gemini-2.5-pro-exp", "name": "Gemini 2.5 Pro Exp" }
73
+ ]
74
+ }
75
+ }
76
+ },
77
+ "env": { "vars": {} }
78
+ }