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)
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 -dMethod 2: GUI Configuration
- Start SuperAGI and open the dashboard (default:
http://localhost:3000) - Go to Settings → Models → Custom Model
- Enter Below Details:
- API Base URL:
https://api.rygen.io/v1 - API Key:
sk-your-rygen-api-key - Model Name:
your-model-name
- API Base URL:
- 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-name1.2 Creating Agents
After setup:
- Go to the Agents tab
- Click Create Agent
- Select your configured model under LLM Model
- Define the agent’s goal, tools, and behavior
- Start the agent
1.3 Verify Configuration
# Check backend logs for API connectivity
docker compose logs superagi-backend --tail 50
