forked from phoenix/litellm-mirror
fixing exception mapping
This commit is contained in:
parent
9b0e9bf57c
commit
92a13958ce
8 changed files with 188 additions and 115 deletions
24
setup.py
Normal file
24
setup.py
Normal 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'
|
||||
],
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue