Spaces:
Build error
Build error
File size: 744 Bytes
886572e |
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 |
services:
- type: web
name: math-agent-backend
env: python
region: oregon
plan: free
buildCommand: |
pip install poetry
poetry install --no-interaction --no-ansi --no-root
startCommand: |
poetry run uvicorn app.main:app --host 0.0.0.0 --port $PORT
autoDeploy: true
envVars:
- key: WEAVIATE_URL
sync: false
- key: WEAVIATE_API_KEY
sync: false
- key: TAVILY_API_KEY
sync: false
- key: MCP_TAVILY_URL
sync: false
- key: GEMINI_API_KEY
sync: false
- key: SIMILARITY_THRESHOLD
value: "0.80"
- key: ENFORCE_INPUT_GUARDRAILS
value: "true"
- key: ENFORCE_OUTPUT_GUARDRAILS
value: "true"
|