SuperAGI

SuperAGI is an all-in-one AI platform designed to support a wide range of work-related tasks and workflows.

1.1 Usage

Method 1: config.yaml (Recommended)

Update your SuperAGI configuration:

# config.yaml

OPENAI_API_BASE: "https://api.rygen.io/v1"
OPENAI_API_KEY: "sk-your-rygen-api-key"
OPENAI_MODEL: "your-model-name"

Restart SuperAGI:

docker compose up -d

Method 2: GUI Configuration

  1. Start SuperAGI and open the dashboard (default: http://localhost:3000)
  2. Go to Settings → Models → Custom Model
  3. Enter Below Details:
    • API Base URL: https://api.rygen.io/v1
    • API Key: sk-your-rygen-api-key
    • Model Name: your-model-name
  4. Save the Configs.

Method 3: Environment Variables

# docker-compose.yaml or .env
services:
  superagi-backend:
    environment:
      - OPENAI_API_BASE=https://api.rygen.io/v1
      - OPENAI_API_KEY=sk-your-rygen-api-key
      - OPENAI_MODEL=your-model-name

1.2 Creating Agents

After setup:

  1. Go to the Agents tab
  2. Click Create Agent
  3. Select your configured model under LLM Model
  4. Define the agent’s goal, tools, and behavior
  5. Start the agent

1.3 Verify Configuration

# Check backend logs for API connectivity
docker compose logs superagi-backend --tail 50

1.4 References