Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: support configuring api_key and api_base via environment variables #9484

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,26 @@ print(response)

Call any model supported by a provider, with `model=<provider_name>/<model_name>`. There might be provider-specific details here, so refer to [provider docs for more information](https://docs.litellm.ai/docs/providers)

## Environment Variable Configuration

You can now configure LiteLLM using environment variables:

| Variable | Description |
| ------------------ | ------------------------------------------------ |
| `LITELLM_API_KEY` | Used as the default value for `litellm.api_key` |
| `LITELLM_API_BASE` | Used as the default value for `litellm.api_base` |

If not explicitly set in code, these values will be automatically picked up:

```python
import litellm

print(litellm.api_key) # Will output the value from LITELLM_API_KEY if not manually set
print(litellm.api_base) # Will output the value from LITELLM_API_BASE if not manually set
```

This is helpful when running LiteLLM in CI/CD pipelines, containerized environments, or local `.env` setups.

## Async ([Docs](https://docs.litellm.ai/docs/completion/stream#async-completion))

```python
Expand Down
4 changes: 2 additions & 2 deletions litellm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@
modify_params = False
retry = True
### AUTH ###
api_key: Optional[str] = None
api_key: Optional[str] = os.getenv("LITELLM_API_KEY", None)
openai_key: Optional[str] = None
groq_key: Optional[str] = None
databricks_key: Optional[str] = None
Expand Down Expand Up @@ -333,7 +333,7 @@ def identify(event_details):


####### ADDITIONAL PARAMS ################### configurable params if you use proxy models like Helicone, map spend to org id, etc.
api_base: Optional[str] = None
api_base: Optional[str] = os.getenv("LITELLM_API_BASE", None)
headers = None
api_version = None
organization = None
Expand Down