litellm/.env.example
Victor M. SMITH 7637013587 feat(provider): add Eden AI as an OpenAI-compatible provider
Eden AI (https://www.edenai.co) is an OpenAI-compatible aggregator exposing 100+ models from many providers through a single EU-hosted endpoint and API key.

Registers 'edenai' as an OpenAI-compatible provider via the existing openai_like loader (providers.json + LlmProviders enum + constants + endpoint support), with tests and docs. Model naming uses the provider/model format.

Supersedes #27471 (original branch is on a fork that is no longer maintained). API key via EDENAI_API_KEY only.

Signed-off-by: Victor M. SMITH <72023257+MVS-source@users.noreply.github.com>
2026-07-09 15:29:35 +02:00

34 lines
700 B
Text

# OpenAI
OPENAI_API_KEY = ""
OPENAI_BASE_URL = ""
# Cohere
COHERE_API_KEY = ""
# OpenRouter
OR_SITE_URL = ""
OR_APP_NAME = "LiteLLM Example app"
OR_API_KEY = ""
# Azure API base URL
AZURE_API_BASE = ""
# Azure API version
AZURE_API_VERSION = ""
# Azure API key
AZURE_API_KEY = ""
# Replicate
REPLICATE_API_KEY = ""
REPLICATE_API_TOKEN = ""
# Anthropic
ANTHROPIC_API_KEY = ""
# Infisical
INFISICAL_TOKEN = ""
# Novita AI
NOVITA_API_KEY = ""
# INFINITY
INFINITY_API_KEY = ""
# Eden AI
EDENAI_API_KEY = ""
EDENAI_API_BASE = "https://api.edenai.run/v3"
# Development Configs
LITELLM_MASTER_KEY = "sk-1234"
DATABASE_URL = "postgresql://llmproxy:dbpassword9090@db:5432/litellm"
STORE_MODEL_IN_DB = "True"