multi-agent-system / README.md
firepenguindisopanda
Updated
427cb30
metadata
title: Multi-Agent System (API)
emoji: 🤖
colorFrom: indigo
colorTo: blue
sdk: docker
sdk_version: 0.0.0
app_file: Dockerfile
pinned: false

Multi-Agent System (API) — Hugging Face Space

This Space runs the FastAPI-based Multi-Agent System backend inside a Docker container.

How this Space runs

  • The repository contains a Dockerfile that starts the FastAPI app using Uvicorn.
  • The Dockerfile respects the platform-provided PORT environment variable.

Secrets / Settings

  • Add the following secrets in the Space Settings → Secrets:
    • NVIDIA_API_KEY (required)
    • SECRET_KEY (required)
    • DATABASE_URL (optional)

Local dev If you want to test locally without Spaces:

docker build -t ideasprinter-api:local .
docker run -p 5001:5001 -e NVIDIA_API_KEY="$NVIDIA_API_KEY" ideasprinter-api:local
# then visit http://localhost:5001/docs

More info: https://huggingface.co/docs/hub/spaces-sdks-docker