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:
- Go to Settings → Providers
- Click Create New Profile
- Choose OpenAI Compatible as the provider type
- Enter the following details:
- Base URL:
https://api.rygen.io/v1 - API Key:
sk-your-rygen-api-key - Model:
your-model-name
- Base URL:
- 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/v1Method 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 501.3 References
Refer to the official AutoGPT documentation for detailed setup instructions. (https://docs.agpt.co/)

