-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbackends.json
More file actions
129 lines (129 loc) · 3.05 KB
/
Copy pathbackends.json
File metadata and controls
129 lines (129 loc) · 3.05 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
[
{
"name": "openclaw",
"display_name": "OpenClaw",
"image": "ghcr.io/openclaw/openclaw:latest",
"container_prefix": "agstack-openclaw",
"internal_port": 17567,
"health_path": "/healthz",
"ready_path": "/v1/models",
"extra_models": [
"openclaw/main"
],
"api_key_env": "OPENCLAW_GATEWAY_TOKEN",
"api_key_header": "Authorization",
"api_key_scheme": "Bearer",
"seed_subdir": "openclaw-home",
"mount_target": "/home/node/.openclaw",
"extra_env": {
"OPENCLAW_GATEWAY_BIND": "0.0.0.0",
"NODE_ENV": "production"
},
"user_overridable_env": [
"LLM_BASE_URL",
"LLM_API_KEY",
"LLM_MODEL"
],
"templated_files": [
"openclaw.json",
"AGENTS.md",
"skills/agent-stack-callback/SKILL.md"
],
"cmd": [
"node",
"openclaw.mjs",
"gateway",
"--allow-unconfigured"
],
"user": "node",
"chown_uid": 1000,
"chown_gid": 1000,
"default_idle_seconds": 600,
"extra_networks": [
"amd-bridge-standalone_default"
]
},
{
"name": "hermes-agent",
"display_name": "Hermes Agent",
"image": "nousresearch/hermes-agent:latest",
"container_prefix": "agstack-hermes",
"internal_port": 8080,
"health_path": "/health",
"ready_path": "/v1/models",
"extra_models": [
"hermes-agent/main"
],
"api_key_env": "API_SERVER_KEY",
"api_key_header": "Authorization",
"api_key_scheme": "Bearer",
"seed_subdir": "hermes-home",
"mount_target": "/opt/data",
"extra_env": {
"HERMES_HOME": "/opt/data",
"API_SERVER_ENABLED": "true",
"API_SERVER_HOST": "0.0.0.0",
"API_SERVER_PORT": "8080",
"API_SERVER_MODEL_NAME": "hermes-agent",
"GATEWAY_ALLOW_ALL_USERS": "true"
},
"user_overridable_env": [
"LLM_BASE_URL",
"LLM_API_KEY",
"LLM_MODEL"
],
"templated_files": [
"config.yaml",
".env",
"AGENTS.md",
"skills/agent-stack-callback/SKILL.md"
],
"cmd": [
"gateway",
"run"
],
"user": "root",
"chown_uid": 0,
"chown_gid": 0,
"default_idle_seconds": 600,
"extra_networks": [
"amd-bridge-standalone_default"
]
},
{
"name": "nanobot",
"display_name": "nanobot (HKUDS)",
"image": "agstack/nanobot-hkuds:0.1.5.post3",
"container_prefix": "agstack-nanobot",
"internal_port": 8900,
"health_path": "/health",
"ready_path": "/v1/models",
"extra_models": [
"nanobot/main"
],
"forward_model_env": "LLM_MODEL",
"seed_subdir": "nanobot-home",
"mount_target": "/home/nanobot/.nanobot",
"extra_env": {},
"user_overridable_env": [
"LLM_BASE_URL",
"LLM_API_KEY",
"LLM_MODEL"
],
"templated_files": [
"config.json",
"AGENTS.md",
"skills/agent-stack-callback/SKILL.md"
],
"cmd": [
"serve"
],
"user": "nanobot",
"chown_uid": 1000,
"chown_gid": 1000,
"default_idle_seconds": 1800,
"extra_networks": [
"amd-bridge-standalone_default"
]
}
]