AutoGPT

AutoGPT is a platform that enables AI assistants to operate autonomously, continuously executing tasks on behalf of the user without requiring constant input.

1.1 API Configuration

Method 1: Direct Setup (GUI)

AutoGPT Platform (v0.6+) allows you to configure OpenAI-compatible providers through the interface:

  1. Go to Settings → Providers
  2. Click Create New Profile
  3. Choose OpenAI Compatible as the provider type
  4. Enter the following details:
    • Base URL: https://api.rygen.io/v1
    • API Key: sk-your-rygen-api-key
    • Model: your-model-name
  5. Save the configuration

Method 2: Environment Variables

# docker-compose.yaml
environment:
  - OPENAI_API_KEY=sk-your-rygen-api-key
  - OPENAI_API_BASE_URL=https://api.rygen.io/v1

Method 3: Block Configuration

Inside the AI Text Generator Block, configure:

  • Provider: OpenAI Compatible
  • Base URL: https://api.rygen.io/v1
  • API Key: sk-your-rygen-api-key
  • Model: your-model-name

1.2 Verify Configuration

# View recent AutoGPT backend logs
docker compose logs autogpt-backend --tail 50

1.3 References

Refer to the official AutoGPT documentation for detailed setup instructions. (https://docs.agpt.co/)