Skip to main content

Fagoon AI Agents Workflow

Project description

Fagoon Upgrade

Self-hosted AI platform with workflow automation, agents, chat, and API generation.

Build AI workflows visually, publish them as REST APIs, deploy agents, and chat with LLMs — all running on your own machine.


Quick Start

Prerequisites

Install & Run

# Install the CLI
pipx install fagoon-upgrade

# Start the platform
fagoon up

On first run, you'll see a setup wizard:

  Welcome to Fagoon!
  Let's set up your AI platform.

  How would you like to power your AI?
  1) I have an API key (OpenAI, Gemini, Groq, etc.)
  2) Use local Ollama model (free, runs on your machine)
  3) Skip for now (configure later in the UI)

  Choose [1/2/3]:

Access the Platform

Service URL
Frontend http://localhost:3000
Backend http://localhost:8000

Features

  • Visual Workflow Builder - Drag-and-drop canvas with 20+ node types
  • Workflow-as-API - Publish any workflow as a REST endpoint with API key auth
  • AI Agents - Conversational agents with memory and tool use
  • Chat Interface - Chat with any LLM provider through a unified UI
  • Multi-Provider - OpenAI, Gemini, Groq, Anthropic, Ollama
  • Self-Hosted - Your data stays on your machine

CLI Commands

fagoon up                    # Start the platform (lite mode)
fagoon up --full             # Start with Redis + Celery (multi-worker)
fagoon up --ollama           # Start with local Ollama LLM
fagoon down                  # Stop the platform
fagoon logs -f               # Follow live logs
fagoon status                # Check if running
fagoon update                # Pull latest version and restart
fagoon config set KEY=VALUE  # Set configuration
fagoon config show           # Show current config
fagoon db set-url URL        # Switch database

Workflow-as-API

Publish any workflow as a callable REST API:

curl -X POST http://localhost:8000/api/v1/workflow-api/your-slug/execute \
  -H "X-API-Key: wfapi_your_key_here" \
  -H "Content-Type: application/json" \
  -d '{"input": "Hello from my app"}'

Response:

{
  "success": true,
  "execution_id": "uuid",
  "status": "COMPLETED",
  "output": {
    "output_text": "AI generated response",
    "model": "gemini-2.5-flash"
  },
  "usage": { "duration_ms": 2500 }
}

Deployment Modes

Lite Mode (Default)

Single-user, no Redis/Celery. Perfect for personal use.

fagoon up

Full Mode

Multi-worker with Redis + Celery. For production.

fagoon up --full

With Ollama (Local LLM)

Free, offline AI using local models.

fagoon up --ollama

Docker Compose (Direct)

services:
  app:
    image: ghcr.io/fagoon-ai/upgrade:2.0.4
    ports:
      - "8000:8000"
      - "3000:3000"
    environment:
      LITE_MODE: "true"
      DATABASE_URL: postgresql+asyncpg://fagoon:fagoon@db:5432/fagoon
    depends_on:
      db: { condition: service_healthy }

  db:
    image: pgvector/pgvector:pg16
    environment:
      POSTGRES_USER: fagoon
      POSTGRES_PASSWORD: fagoon
      POSTGRES_DB: fagoon
    volumes:
      - fagoon_db:/var/lib/postgresql/data
    healthcheck:
      test: ["CMD-SHELL", "pg_isready -U fagoon"]
      interval: 5s
      timeout: 5s
      retries: 10

volumes:
  fagoon_db:

Environment Variables

Variable Default Description
LITE_MODE true true = single-process, false = Redis+Celery
DATABASE_URL auto PostgreSQL connection string
JWT_SECRET auto Secret for JWT tokens
GEMINI_API_KEY Google Gemini API key
OPENAI_API_KEY OpenAI API key
GROQ_API_KEY Groq API key
OLLAMA_BASE_URL Ollama server URL
WEB_CONCURRENCY 1 Number of workers

Troubleshooting

"Cannot connect to Docker daemon" — Start Docker Desktop and wait for it to load.

"Port 3000/8000 already in use" — Stop other services on those ports.

Platform won't start:

fagoon logs -f     # Check logs
fagoon down        # Stop
fagoon up          # Restart

Reset everything:

fagoon down
docker volume rm fagoon_db fagoon_data
fagoon up

Tech Stack

  • Backend: Python, FastAPI, SQLAlchemy, PostgreSQL, pgvector
  • Frontend: Next.js, React, TailwindCSS, React Flow
  • Workflow Engine: Custom DAG executor with 20+ node types
  • Task Queue: Celery + Redis (full mode)
  • Container: Docker, Docker Compose

Links

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fagoon_upgrade-2.0.8.tar.gz (7.7 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

fagoon_upgrade-2.0.8-py3-none-any.whl (672.3 kB view details)

Uploaded Python 3

File details

Details for the file fagoon_upgrade-2.0.8.tar.gz.

File metadata

  • Download URL: fagoon_upgrade-2.0.8.tar.gz
  • Upload date:
  • Size: 7.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for fagoon_upgrade-2.0.8.tar.gz
Algorithm Hash digest
SHA256 f603fe877f1d9e1a14f6fae101210812bcba96e5f469b0c5d0eec751aa4afb67
MD5 be0a3b13e1f417e1513c04253050a008
BLAKE2b-256 8bb86f43147de1b5dbde5055a39933ba653c9c4aaedc46021bd8c45fab9ea63b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fagoon_upgrade-2.0.8.tar.gz:

Publisher: release.yml on Fagoon-AI/upgrade

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fagoon_upgrade-2.0.8-py3-none-any.whl.

File metadata

  • Download URL: fagoon_upgrade-2.0.8-py3-none-any.whl
  • Upload date:
  • Size: 672.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for fagoon_upgrade-2.0.8-py3-none-any.whl
Algorithm Hash digest
SHA256 5f576c63d0f9c89f84c166a94580ef3fb79feb743363a57bacb22a0e8f8edef5
MD5 3caa86e551ee268ee5e261fd89b50604
BLAKE2b-256 5452e8728342e3279ee469b2ca7a99e46dacb524618d61b7ded1ce2f098fd222

See more details on using hashes here.

Provenance

The following attestation bundles were made for fagoon_upgrade-2.0.8-py3-none-any.whl:

Publisher: release.yml on Fagoon-AI/upgrade

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page