welcome
LLM Providers Directory
Codey supports a massive catalog of local and remote LLM providers. You can choose to configure them using direct API keys, OAuth tokens, or route through the secure Codey Gateway.
#Available Providers
Codey supports over 30 providers out of the box, including:
| Provider | Configuration ID | Authentication Method |
|---|---|---|
| Anthropic | anthropic | API key (ANTHROPIC_API_KEY) |
| OpenAI | openai | API key or OAuth (OPENAI_API_KEY) |
| Google Gemini | gemini | API key (GEMINI_API_KEY) |
| Ollama (Local) | ollama | Direct network endpoint |
| Amazon Bedrock | amazon-bedrock | AWS Credentials Profile / IAM |
| OpenRouter | openrouter | API key (OPENROUTER_API_KEY) |
#AWS Bedrock Specifics
For Amazon Bedrock integration, you can specify custom AWS authentication profiles and endpoints in your config file:
json
{
"provider": {
"amazon-bedrock": {
"options": {
"region": "us-east-1",
"profile": "my-development-profile",
"endpoint": "https://bedrock-runtime.us-east-1.amazonaws.com"
}
}
}
}#Managing Credentials
You can list all active credentials and account parameters using the command:
bash
codey auth listTo log out of a provider and revoke access tokens, run:
bash
codey auth logout <provider-id>