Library to easily interface with LLM API providers
Project description
🚅 litellm
a simple & light package to call OpenAI, Azure, Cohere, Anthropic API Endpoints
litellm manages:
- translating inputs to completion and embedding endpoints
- guarantees consistent output, text responses will always be available at
['choices'][0]['message']['content']
usage
Read the docs - https://litellm.readthedocs.io/en/latest/
quick start
pip install litellm
from litellm import completion
## set ENV variables
# ENV variables can be set in .env file, too. Example in .env.example
os.environ["OPENAI_API_KEY"] = "openai key"
os.environ["COHERE_API_KEY"] = "cohere key"
messages = [{ "content": "Hello, how are you?","role": "user"}]
# openai call
response = completion(model="gpt-3.5-turbo", messages=messages)
# cohere call
response = completion("command-nightly", messages)
# azure openai call
response = completion("chatgpt-test", messages, azure=True)
# openrouter call
response = completion("google/palm-2-codechat-bison", messages)
Code Sample: Getting Started Notebook
Stable version
pip install litellm==0.1.1
Streaming Queries
liteLLM supports streaming the model response back, pass stream=True to get a streaming iterator in response.
response = completion(model="gpt-3.5-turbo", messages=messages, stream=True)
for chunk in response:
print(chunk['choices'][0]['delta'])
hosted version
why did we build this
- Need for simplicity: Our code started to get extremely complicated managing & translating calls between Azure, OpenAI, Cohere
Support
Contact us at ishaan@berri.ai / krrish@berri.ai
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file litellm-0.1.347.tar.gz.
File metadata
- Download URL: litellm-0.1.347.tar.gz
- Upload date:
- Size: 34.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.17
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2c442b5d74e77f331d63a3a0e584270138c47af7ffe7641ae4c744758226def0
|
|
| MD5 |
a1242f91669a267203f7eb20e96cd1cd
|
|
| BLAKE2b-256 |
e50a593a97337850887d1c1f995d2300625020568f9583b6fa55daeea78ade32
|
File details
Details for the file litellm-0.1.347-py3-none-any.whl.
File metadata
- Download URL: litellm-0.1.347-py3-none-any.whl
- Upload date:
- Size: 33.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.17
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e932d1001cd59d34640bec29f29a6c3ab46da6cf7fb8db489dc6af569b4b3743
|
|
| MD5 |
d1ebd67641286e8af2c9cf5b93c7b091
|
|
| BLAKE2b-256 |
750ba16b44d4a74ee5a225c1bff4137a481f31853c577c455e4274b57b842f26
|