Adding fixes to gunnar and hermes

This commit is contained in:
2026-05-09 18:02:49 +02:00
parent 774dcfb37a
commit e34d7a59de
13 changed files with 83 additions and 3 deletions
@@ -1 +1,40 @@
{"allow_chat_override": true, "chat_model": {"provider": "openrouter", "name": "anthropic/claude-sonnet-4.6", "api_base": "", "ctx_length": 200000, "ctx_history": 0.7, "vision": true, "max_embeds": 10, "rl_requests": 0, "rl_input": 0, "rl_output": 0, "kwargs": {}}, "utility_model": {"provider": "openrouter", "name": "google/gemini-3.1-flash-lite-preview", "api_base": "", "ctx_length": 128000, "ctx_input": 0.7, "rl_requests": 0, "rl_input": 0, "rl_output": 0, "kwargs": {}}, "embedding_model": {"provider": "huggingface", "name": "sentence-transformers/all-MiniLM-L6-v2", "api_base": "", "rl_requests": 0, "rl_input": 0, "kwargs": {}}}
{
"allow_chat_override": false,
"chat_model": {
"provider": "lm_studio",
"name": "qwen2.5-7b-instruct",
"api_base": "http://festinger:11434",
"ctx_length": 32768,
"ctx_history": 0.7,
"vision": true,
"rl_requests": 0,
"rl_input": 0,
"rl_output": 0,
"kwargs": {
"max_tokens": 4096,
"agent_id": 3
},
"max_embeds": 10
},
"utility_model": {
"provider": "lm_studio",
"name": "qwen2.5-7b-instruct",
"api_base": "http://festinger:11434",
"ctx_length": 32768,
"ctx_input": 0.7,
"rl_requests": 0,
"rl_input": 0,
"rl_output": 0,
"kwargs": {
"X-Agent-Id": 3
}
},
"embedding_model": {
"provider": "huggingface",
"name": "sentence-transformers/all-MiniLM-L6-v2",
"api_base": "",
"rl_requests": 0,
"rl_input": 0,
"kwargs": {}
}
}
View File
View File
View File
@@ -0,0 +1,40 @@
{
"allow_chat_override": false,
"chat_model": {
"provider": "lm_studio",
"name": "qwen2.5-7b-instruct",
"api_base": "http://festinger:11434",
"ctx_length": 32768,
"ctx_history": 0.7,
"vision": true,
"rl_requests": 0,
"rl_input": 0,
"rl_output": 0,
"kwargs": {
"max_tokens": 4096,
"agent_id": 8
},
"max_embeds": 10
},
"utility_model": {
"provider": "lm_studio",
"name": "qwen2.5-7b-instruct",
"api_base": "http://festinger:11434",
"ctx_length": 32768,
"ctx_input": 0.7,
"rl_requests": 0,
"rl_input": 0,
"rl_output": 0,
"kwargs": {
"X-Agent-Id": 8
}
},
"embedding_model": {
"provider": "huggingface",
"name": "sentence-transformers/all-MiniLM-L6-v2",
"api_base": "",
"rl_requests": 0,
"rl_input": 0,
"kwargs": {}
}
}
View File
View File
View File
+2 -2
View File
@@ -180,9 +180,9 @@ services:
- "host.docker.internal:host-gateway"
hermes:
image: agent0ai/agent-zero:latest
container_name: herms
container_name: hermes
ports:
- "50003:80"
- "50008:80"
volumes:
- ./agents/hermes:/a0/usr
- ${HOME}/.ssh:/root/.ssh
+1
View File
@@ -115,6 +115,7 @@ async def init_schema(pool: asyncpg.Pool) -> None:
(3, "gunnar", "http://gunnar:80", "00oDLpLbWuS16IzE"),
(5, "rind", "http://rind:80", "3GRS5iP91Y2qQNLr"),
(6, "abyssinthia", "http://abyssinthia:80", "_XxQlg7qAxhmlyJh"),
(8, "hermes", "http://hermes:80", "7giYJjjk38c7IsYj"),
]:
await conn.execute(
"""
Regular → Executable
View File