Skip to main content

AutoGPT

1.1 API Configuration

Method 1: Direct Configuration

AutoGPT Platform (v0.6+) provides a GUI to add OpenAI-compatible LLM providers:

  1. Go to Settings → Providers

  2. Click Create New Profile

  3. Select OpenAI Compatible as Provider Type

  4. Fill in:

    • Base URL: https://api.hpc-ai.com/inference/v1

    • API Key: sk-your-hpc-ai-api-key

    • Model: minimax/minimax-m2.5

  5. Save

Method 2: Environment Variables

# docker-compose.yaml
environment:
- OPENAI_API_KEY=sk-your-hpc-ai-api-key
- OPENAI_API_BASE_URL=https://api.hpc-ai.com/inference/v1

Method 3: Block Configuration

Configure directly in the AI Text Generator Block:

  • Provider: OpenAI Compatible

  • Base URL: https://api.hpc-ai.com/inference/v1

  • API Key: sk-your-hpc-ai-api-key

  • Model: minimax/minimax-m2.5

1.2 Verify Configuration

# Check AutoGPT logs
docker compose logs autogpt-backend --tail 50

1.3 References