Skip to main content

Library to easily interface with LLM API providers

Project description

🚅 litellm

PyPI Version PyPI Version CircleCI Downloads litellm

a light package to simplify calling OpenAI, Azure, Cohere, Anthropic, Huggingface API Endpoints. It manages:

  • translating inputs to the provider's completion and embedding endpoints
  • guarantees consistent 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

usage

Demo - https://litellm.ai/
Read the docs - https://litellm.readthedocs.io/en/latest/

quick start

pip install litellm
from litellm import completion

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)

# hugging face call
response = completion(model="stabilityai/stablecode-completion-alpha-3b-4k", messages=messages, hugging_face=True)

# openrouter call
response = completion("google/palm-2-codechat-bison", messages)

Code Sample: Getting Started Notebook

Stable version

pip install litellm==0.1.345

Streaming Queries

liteLLM supports streaming the model response back, pass stream=True to get a streaming iterator in response. Streaming is supported for OpenAI, Azure, Anthropic models

response = completion(model="gpt-3.5-turbo", messages=messages, stream=True)
for chunk in response:
    print(chunk['choices'][0]['delta'])

# claude 2
result = completion('claude-2', messages, stream=True)
for chunk in result:
  print(chunk['choices'][0]['delta'])

support / talk with founders

why did we build this

  • Need for simplicity: Our code started to get extremely complicated managing & translating calls between Azure, OpenAI, Cohere

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

litellm-0.1.381.tar.gz (39.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

litellm-0.1.381-py3-none-any.whl (39.6 kB view details)

Uploaded Python 3

File details

Details for the file litellm-0.1.381.tar.gz.

File metadata

  • Download URL: litellm-0.1.381.tar.gz
  • Upload date:
  • Size: 39.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.8.17

File hashes

Hashes for litellm-0.1.381.tar.gz
Algorithm Hash digest
SHA256 0554476d96576117a666f4ef476cf2955490eb72874dfdabe60d63669ba03be2
MD5 c9a7907cbb2763bfd9cfa27154648f7f
BLAKE2b-256 2cebde9e96cf3708d8fb87dde3faf1595e4c3958bcfc6340049d26e802fe2c09

See more details on using hashes here.

File details

Details for the file litellm-0.1.381-py3-none-any.whl.

File metadata

  • Download URL: litellm-0.1.381-py3-none-any.whl
  • Upload date:
  • Size: 39.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.8.17

File hashes

Hashes for litellm-0.1.381-py3-none-any.whl
Algorithm Hash digest
SHA256 cafaeef2984e8420b0eeb0786330396e9570b2976bf1629c86d258b2d8da22f8
MD5 37d4bc4821825463cfb095c9673e764f
BLAKE2b-256 12241a264703b1f558e03609e242ac7bd8b54c60b7c953be0aac31a50272997c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page