Update SEMAPHORE_LIMIT default value in docker-compose.yml to 10 for improved concurrency management (#628)

This commit is contained in:
Daniel Chalef 2025-06-25 21:45:46 -07:00 committed by GitHub
parent 97593550a9
commit fc104cbe41
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -36,7 +36,7 @@ services:
- OPENAI_API_KEY=${OPENAI_API_KEY}
- MODEL_NAME=${MODEL_NAME}
- PATH=/root/.local/bin:${PATH}
- SEMAPHORE_LIMIT=${SEMAPHORE_LIMIT}
- SEMAPHORE_LIMIT=${SEMAPHORE_LIMIT:-10}
ports:
- "8000:8000" # Expose the MCP server via HTTP for SSE transport
command: ["uv", "run", "graphiti_mcp_server.py", "--transport", "sse"]