CoolFace
Apppublic

simata/huggingmes

sourceHugging Facemitupdated 4mo agoView on Hugging Face
1likes
docker-compose.yml23 linesDownload Raw Back to root
1services:2  huggingmes:3    build:4      context: .5      args:6        HERMES_AGENT_VERSION: ${HERMES_AGENT_VERSION:-latest}7    image: huggingmes:local8    ports:9      - "7861:7861"10    environment:11      LLM_MODEL: ${LLM_MODEL:-openrouter/anthropic/claude-sonnet-4}12      LLM_API_KEY: ${LLM_API_KEY:-}13      GATEWAY_TOKEN: ${GATEWAY_TOKEN:-local-dev-token}14      TELEGRAM_BOT_TOKEN: ${TELEGRAM_BOT_TOKEN:-}15      TELEGRAM_ALLOWED_USERS: ${TELEGRAM_ALLOWED_USERS:-}16      HF_TOKEN: ${HF_TOKEN:-}17      SPACE_HOST: ${SPACE_HOST:-localhost:7861}18    volumes:19      - huggingmes-data:/opt/data20 21volumes:22  huggingmes-data:23