CoolFace
Apppublic

hemant2747/multi-agent-framework

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
render.yaml35 linesDownload Raw Back to root
1# Render Blueprint — backend (FastAPI). Deploys on every push to main.2# Create the service via Render → "New +" → "Blueprint" and point it at this repo.3# Set the secret env vars (LLM_API_KEY, CORS_ORIGINS) in the Render dashboard.4services:5  - type: web6    name: maf-backend7    runtime: docker8    plan: free9    dockerfilePath: ./Dockerfile10    autoDeploy: true11    healthCheckPath: /api/health12    envVars:13      # --- LLM provider (cloud; no Ollama in the cloud) ---14      - key: ENABLE_LOCAL_LLM15        value: "false"16      - key: LLM_PROVIDER17        value: anthropic            # or "openai"18      - key: LLM_MODEL19        value: claude-haiku-4-5-20251001   # cheap+fast; or claude-sonnet-4-6 / gpt-4o20      - key: LLM_API_KEY21        sync: false                 # SET IN DASHBOARD (secret)22      # --- Embeddings ---23      - key: EMBED_BACKEND24        value: hash                 # works with no key; set "openai" + EMBED_API_KEY for quality25      - key: EMBED_API_KEY26        sync: false                 # only needed if EMBED_BACKEND=openai27      # --- CORS: set to your Vercel URL after the frontend is deployed ---28      - key: CORS_ORIGINS29        sync: false                 # e.g. https://your-app.vercel.app  (or "*")30      # --- perf defaults for a small cloud box ---31      - key: ENABLE_WEB_SEARCH32        value: "true"33      - key: LLM_PARALLEL34        value: "true"35