litellm/README.md

222 lines
9.1 KiB
Markdown
Raw Normal View History

2023-08-24 22:51:02 +08:00
<h1 align="center">
2023-08-24 23:32:50 +08:00
🚅 LiteLLM
</h1>
<p align="center">
2023-10-22 05:40:30 +08:00
<p align="center">Call all LLM APIs using the OpenAI format [Bedrock, Huggingface, Cohere, TogetherAI, Azure, OpenAI, etc.]
<br>
2023-08-24 23:32:50 +08:00
</p>
2023-12-05 05:20:23 +08:00
<h4 align="center"><a href="https://docs.litellm.ai/docs/simple_proxy" target="_blank">OpenAI Proxy Server</a></h4>
2023-08-24 22:55:02 +08:00
<h4 align="center">
2023-08-24 23:32:50 +08:00
<a href="https://pypi.org/project/litellm/" target="_blank">
2023-08-24 22:55:02 +08:00
<img src="https://img.shields.io/pypi/v/litellm.svg" alt="PyPI Version">
</a>
2023-08-24 23:32:50 +08:00
<a href="https://dl.circleci.com/status-badge/redirect/gh/BerriAI/litellm/tree/main" target="_blank">
2023-08-24 22:55:02 +08:00
<img src="https://dl.circleci.com/status-badge/img/gh/BerriAI/litellm/tree/main.svg?style=svg" alt="CircleCI">
</a>
2023-08-27 05:04:51 +08:00
<a href="https://www.ycombinator.com/companies/berriai">
<img src="https://img.shields.io/badge/Y%20Combinator-W23-orange?style=flat-square" alt="Y Combinator W23">
</a>
2023-10-18 04:57:41 +08:00
<a href="https://wa.link/huol9n">
<img src="https://img.shields.io/static/v1?label=Chat%20on&message=WhatsApp&color=success&logo=WhatsApp&style=flat-square" alt="Whatsapp">
</a>
<a href="https://discord.gg/wuPM9dRgDw">
<img src="https://img.shields.io/static/v1?label=Chat%20on&message=Discord&color=blue&logo=Discord&style=flat-square" alt="Discord">
</a>
2023-08-24 22:55:02 +08:00
</h4>
2023-09-27 23:03:39 +08:00
2023-08-24 23:22:12 +08:00
LiteLLM manages
2023-11-09 05:37:30 +08:00
- Translating inputs to the provider's `completion` and `embedding` endpoints
2023-09-09 06:03:22 +08:00
- Guarantees [consistent output](https://docs.litellm.ai/docs/completion/output), text responses will always be available at `['choices'][0]['message']['content']`
- Exception mapping - common exceptions across providers are mapped to the OpenAI exception types.
2023-11-30 08:40:16 +08:00
- Load-balance across multiple deployments (e.g. Azure/OpenAI) - `Router` **1k+ requests/second**
2023-09-03 08:42:59 +08:00
2023-10-22 05:44:36 +08:00
# Usage ([**Docs**](https://docs.litellm.ai/docs/))
2023-08-24 23:43:18 +08:00
2023-11-12 07:41:20 +08:00
> [!IMPORTANT]
2023-11-24 22:23:51 +08:00
> LiteLLM v1.0.0 now requires `openai>=1.0.0`. Migration guide [here](https://docs.litellm.ai/docs/migration)
2023-11-12 07:41:20 +08:00
2023-10-15 01:32:29 +08:00
<a target="_blank" href="https://colab.research.google.com/github/BerriAI/litellm/blob/main/cookbook/liteLLM_Getting_Started.ipynb">
2023-08-24 23:19:57 +08:00
<img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"/>
</a>
2023-09-27 23:04:37 +08:00
2023-07-31 22:58:10 +08:00
```
pip install litellm
```
2023-07-27 08:44:43 +08:00
```python
2023-07-27 08:46:23 +08:00
from litellm import completion
2023-08-30 01:39:33 +08:00
import os
2023-09-20 08:10:55 +08:00
## set ENV variables
2023-09-30 02:20:38 +08:00
os.environ["OPENAI_API_KEY"] = "your-openai-key"
os.environ["COHERE_API_KEY"] = "your-cohere-key"
2023-07-27 08:46:23 +08:00
2023-07-27 08:44:34 +08:00
messages = [{ "content": "Hello, how are you?","role": "user"}]
2023-07-27 08:46:23 +08:00
2023-07-27 08:44:34 +08:00
# openai call
response = completion(model="gpt-3.5-turbo", messages=messages)
# cohere call
2023-08-25 00:42:58 +08:00
response = completion(model="command-nightly", messages=messages)
2023-09-20 08:04:54 +08:00
print(response)
2023-07-27 08:44:34 +08:00
```
2023-08-01 23:18:44 +08:00
2023-12-12 00:30:55 +08:00
## Async ([Docs](https://docs.litellm.ai/docs/completion/stream#async-completion))
```python
from litellm import acompletion
import asyncio
async def test_get_response():
user_message = "Hello, how are you?"
messages = [{"content": user_message, "role": "user"}]
response = await acompletion(model="gpt-3.5-turbo", messages=messages)
return response
response = asyncio.run(test_get_response())
print(response)
```
2023-10-01 00:48:45 +08:00
## Streaming ([Docs](https://docs.litellm.ai/docs/completion/stream))
2023-10-22 05:45:51 +08:00
liteLLM supports streaming the model response back, pass `stream=True` to get a streaming iterator in response.
2023-10-22 05:45:31 +08:00
Streaming is supported for all models (Bedrock, Huggingface, TogetherAI, Azure, OpenAI, etc.)
2023-08-06 06:12:34 +08:00
```python
2023-10-29 03:25:58 +08:00
from litellm import completion
2023-08-06 06:10:49 +08:00
response = completion(model="gpt-3.5-turbo", messages=messages, stream=True)
for part in response:
print(part.choices[0].delta.content or "")
2023-08-09 07:22:18 +08:00
2023-08-09 07:19:34 +08:00
# claude 2
response = completion('claude-2', messages, stream=True)
for part in response:
print(part.choices[0].delta.content or "")
2023-08-06 06:10:49 +08:00
```
2023-10-29 03:29:44 +08:00
2023-11-18 01:38:26 +08:00
## OpenAI Proxy - ([Docs](https://docs.litellm.ai/docs/simple_proxy))
2023-12-03 07:38:59 +08:00
2023-11-24 03:39:39 +08:00
LiteLLM Proxy manages:
* Calling 100+ LLMs Huggingface/Bedrock/TogetherAI/etc. in the OpenAI ChatCompletions & Completions format
2023-11-30 08:40:16 +08:00
* Load balancing - between Multiple Models + Deployments of the same model LiteLLM proxy can handle 1k+ requests/second during load tests
2023-11-24 03:39:39 +08:00
* Authentication & Spend Tracking Virtual Keys
2023-11-18 01:38:26 +08:00
### Step 1: Start litellm proxy
```shell
$ litellm --model huggingface/bigcode/starcoder
#INFO: Proxy running on http://0.0.0.0:8000
```
### Step 2: Replace openai base
```python
2023-11-18 02:19:01 +08:00
import openai # openai v1.0.0+
client = openai.OpenAI(api_key="anything",base_url="http://0.0.0.0:8000") # set proxy to base_url
# request sent to model set on litellm proxy, `litellm --model`
response = client.chat.completions.create(model="gpt-3.5-turbo", messages = [
{
"role": "user",
"content": "this is a test request, write a short poem"
}
])
print(response)
2023-11-18 01:38:26 +08:00
```
2023-11-09 05:37:02 +08:00
## Logging Observability ([Docs](https://docs.litellm.ai/docs/observability/callbacks))
2023-11-19 06:52:24 +08:00
LiteLLM exposes pre defined callbacks to send data to Langfuse, LLMonitor, Helicone, Promptlayer, Traceloop, Slack
2023-10-29 03:29:44 +08:00
```python
from litellm import completion
## set env variables for logging tools
2023-11-19 06:52:24 +08:00
os.environ["LANGFUSE_PUBLIC_KEY"] = ""
os.environ["LANGFUSE_SECRET_KEY"] = ""
2023-10-29 03:29:44 +08:00
os.environ["LLMONITOR_APP_ID"] = "your-llmonitor-app-id"
os.environ["OPENAI_API_KEY"]
# set callbacks
2023-11-19 06:52:24 +08:00
litellm.success_callback = ["langfuse", "llmonitor"] # log input/output to langfuse, llmonitor, supabase
2023-10-29 03:29:44 +08:00
#openai call
response = completion(model="gpt-3.5-turbo", messages=[{"role": "user", "content": "Hi 👋 - i'm openai"}])
2023-10-29 03:25:58 +08:00
```
2023-10-01 00:48:45 +08:00
## Supported Provider ([Docs](https://docs.litellm.ai/docs/providers))
2023-10-03 03:06:20 +08:00
| Provider | [Completion](https://docs.litellm.ai/docs/#basic-usage) | [Streaming](https://docs.litellm.ai/docs/completion/stream#streaming-responses) | [Async Completion](https://docs.litellm.ai/docs/completion/stream#async-completion) | [Async Streaming](https://docs.litellm.ai/docs/completion/stream#async-streaming) |
2023-10-01 00:48:45 +08:00
| ------------- | ------------- | ------------- | ------------- | ------------- |
| [openai](https://docs.litellm.ai/docs/providers/openai) | ✅ | ✅ | ✅ | ✅ |
2023-11-04 04:15:39 +08:00
| [azure](https://docs.litellm.ai/docs/providers/azure) | ✅ | ✅ | ✅ | ✅ |
| [aws - sagemaker](https://docs.litellm.ai/docs/providers/aws_sagemaker) | ✅ | ✅ | ✅ | ✅ |
| [aws - bedrock](https://docs.litellm.ai/docs/providers/bedrock) | ✅ | ✅ | ✅ | ✅ |
2023-10-01 00:48:45 +08:00
| [cohere](https://docs.litellm.ai/docs/providers/cohere) | ✅ | ✅ | ✅ | ✅ |
| [anthropic](https://docs.litellm.ai/docs/providers/anthropic) | ✅ | ✅ | ✅ | ✅ |
| [huggingface](https://docs.litellm.ai/docs/providers/huggingface) | ✅ | ✅ | ✅ | ✅ |
2023-11-04 04:15:39 +08:00
| [replicate](https://docs.litellm.ai/docs/providers/replicate) | ✅ | ✅ | ✅ | ✅ |
2023-10-01 00:48:45 +08:00
| [together_ai](https://docs.litellm.ai/docs/providers/togetherai) | ✅ | ✅ | ✅ | ✅ |
| [openrouter](https://docs.litellm.ai/docs/providers/openrouter) | ✅ | ✅ | ✅ | ✅ |
2023-11-04 04:12:09 +08:00
| [google - vertex_ai](https://docs.litellm.ai/docs/providers/vertex) | ✅ | ✅ | ✅ | ✅ |
| [google - palm](https://docs.litellm.ai/docs/providers/palm) | ✅ | ✅ | ✅ | ✅ |
2023-12-15 10:18:54 +08:00
| [mistral ai api](https://docs.litellm.ai/docs/providers/mistral) | ✅ | ✅ | ✅ | ✅ |
2023-10-01 00:48:45 +08:00
| [ai21](https://docs.litellm.ai/docs/providers/ai21) | ✅ | ✅ | ✅ | ✅ |
| [baseten](https://docs.litellm.ai/docs/providers/baseten) | ✅ | ✅ | ✅ | ✅ |
| [vllm](https://docs.litellm.ai/docs/providers/vllm) | ✅ | ✅ | ✅ | ✅ |
| [nlp_cloud](https://docs.litellm.ai/docs/providers/nlp_cloud) | ✅ | ✅ | ✅ | ✅ |
| [aleph alpha](https://docs.litellm.ai/docs/providers/aleph_alpha) | ✅ | ✅ | ✅ | ✅ |
2023-10-03 03:04:03 +08:00
| [petals](https://docs.litellm.ai/docs/providers/petals) | ✅ | ✅ | ✅ | ✅ |
2023-10-01 00:48:45 +08:00
| [ollama](https://docs.litellm.ai/docs/providers/ollama) | ✅ | ✅ | ✅ | ✅ |
| [deepinfra](https://docs.litellm.ai/docs/providers/deepinfra) | ✅ | ✅ | ✅ | ✅ |
2023-11-04 04:12:09 +08:00
| [perplexity-ai](https://docs.litellm.ai/docs/providers/perplexity) | ✅ | ✅ | ✅ | ✅ |
2023-11-04 04:15:39 +08:00
| [anyscale](https://docs.litellm.ai/docs/providers/anyscale) | ✅ | ✅ | ✅ | ✅ |
2023-10-01 00:48:45 +08:00
[**Read the Docs**](https://docs.litellm.ai/docs/)
2023-10-18 04:38:55 +08:00
## Contributing
To contribute: Clone the repo locally -> Make a change -> Submit a PR with the change.
Here's how to modify the repo locally:
Step 1: Clone the repo
```
git clone https://github.com/BerriAI/litellm.git
```
Step 2: Navigate into the project, and install dependencies:
```
cd litellm
poetry install
```
Step 3: Test your change:
```
cd litellm/tests # pwd: Documents/litellm/litellm/tests
pytest .
```
Step 4: Submit a PR with your changes! 🚀
2023-10-04 00:16:01 +08:00
- push your fork to your GitHub repo
- submit a PR from there
2023-08-28 23:59:34 +08:00
# Support / talk with founders
2023-08-24 23:43:18 +08:00
- [Schedule Demo 👋](https://calendly.com/d/4mp-gd3-k5k/berriai-1-1-onboarding-litellm-hosted-version)
2023-08-09 21:09:28 +08:00
- [Community Discord 💭](https://discord.gg/wuPM9dRgDw)
- Our numbers 📞 +1 (770) 8783-106 / +1 (412) 618-6238
- Our emails ✉️ ishaan@berri.ai / krrish@berri.ai
2023-07-29 00:11:27 +08:00
2023-08-28 23:59:34 +08:00
# Why did we build this
- **Need for simplicity**: Our code started to get extremely complicated managing & translating calls between Azure, OpenAI and Cohere.
2023-08-28 23:50:12 +08:00
2023-08-28 23:59:34 +08:00
# Contributors
2023-08-28 23:50:12 +08:00
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
<!-- prettier-ignore-start -->
<!-- markdownlint-disable -->
<!-- markdownlint-restore -->
<!-- prettier-ignore-end -->
<!-- ALL-CONTRIBUTORS-LIST:END -->
2023-08-28 23:56:19 +08:00
<a href="https://github.com/BerriAI/litellm/graphs/contributors">
<img src="https://contrib.rocks/image?repo=BerriAI/litellm" />
</a>