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.1.0.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.1.0-py3-none-any.whl (672.0 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: fagoon_upgrade-2.1.0.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.1.0.tar.gz
Algorithm Hash digest
SHA256 0abf3a1715ffc618ba336ec3207e3a15419da957a7bbd30e01ccc4c06e19c73e
MD5 0fde9afa2a9b2c0454e12fa95f43803b
BLAKE2b-256 90d79c4a9aba05ea4d27c3d0d50488cd841b182cd925d1f55dc1ec5574d6bbe4

See more details on using hashes here.

Provenance

The following attestation bundles were made for fagoon_upgrade-2.1.0.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.1.0-py3-none-any.whl.

File metadata

  • Download URL: fagoon_upgrade-2.1.0-py3-none-any.whl
  • Upload date:
  • Size: 672.0 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.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 844f7a87122b2641c6b2b9a862cd79ec973be0ecac458046d9d7fe0cb0b8c94e
MD5 e3fde10a08d41164dedc5654cc8eecdb
BLAKE2b-256 0d07be58046c9711f56271be641f9715f46fbca16ce5daaa2385af9677c0f111

See more details on using hashes here.

Provenance

The following attestation bundles were made for fagoon_upgrade-2.1.0-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