fixing exception mapping

This commit is contained in:
Krrish Dholakia 2023-08-05 09:52:01 -07:00
parent 9b0e9bf57c
commit 92a13958ce
8 changed files with 188 additions and 115 deletions

24
setup.py Normal file
View file

@ -0,0 +1,24 @@
from setuptools import setup, find_packages
setup(
name='litellm',
version='0.1.231',
description='Library to easily interface with LLM API providers',
author='BerriAI',
packages=[
'litellm'
],
package_data={
"litellm": ["integrations/*"], # Specify the directory path relative to your package
},
install_requires=[
'openai',
'cohere',
'pytest',
'anthropic',
'replicate',
'python-dotenv',
'openai[datalib]',
'tenacity'
],
)