Aider

Run the Aider CLI against LLMRPM's OpenAI-compatible endpoint.

Configuration

SettingValue
API shapeOpenAI-compatible
Base URLhttps://llmrpm.com/api/v1
AuthAuthorization: Bearer llmrpm_...
  • Set OPENAI_API_KEY to your LLMRPM API key.
  • Set OPENAI_API_BASE to https://llmrpm.com/api/v1.
  • Run Aider with --model openai/<public-model-id>.
  • Use one project shell per environment so keys stay scoped.

Example

Shell
export OPENAI_API_KEY="llmrpm_YOUR_KEY"
export OPENAI_API_BASE="https://llmrpm.com/api/v1"

aider --model openai/claude-sonnet-5

Troubleshooting

SymptomCause & fix
Authentication errorCheck that the API key has no extra spaces and has not been revoked in the dashboard.
Model rejectedUse a public model ID returned by GET /api/v1/models; do not use display names or aliases.
Connection issueConfirm the configured base URL is exactly the one shown above and that your network allows HTTPS to llmrpm.com.

Notes

  • Aider model names usually need the openai/ prefix for custom OpenAI-compatible providers.
  • Use a model with a large context window when asking Aider to inspect many files.