Spaces:
Paused
Paused
File size: 623 Bytes
b9d12d1 1428d20 b9d12d1 1428d20 b9d12d1 1428d20 b9d12d1 1428d20 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | services:
huggingmes:
build:
context: .
args:
HERMES_AGENT_VERSION: ${HERMES_AGENT_VERSION:-latest}
image: huggingmes:local
ports:
- "7861:7861"
environment:
LLM_MODEL: ${LLM_MODEL:-openrouter/anthropic/claude-sonnet-4}
LLM_API_KEY: ${LLM_API_KEY:-}
GATEWAY_TOKEN: ${GATEWAY_TOKEN:-local-dev-token}
TELEGRAM_BOT_TOKEN: ${TELEGRAM_BOT_TOKEN:-}
TELEGRAM_ALLOWED_USERS: ${TELEGRAM_ALLOWED_USERS:-}
HF_TOKEN: ${HF_TOKEN:-}
SPACE_HOST: ${SPACE_HOST:-localhost:7861}
volumes:
- huggingmes-data:/opt/data
volumes:
huggingmes-data:
|