bumping version

This commit is contained in:
Krrish Dholakia 2023-08-05 10:05:22 -07:00
parent 92a13958ce
commit e30e0eef79
2 changed files with 1 additions and 25 deletions

View file

@ -1,6 +1,6 @@
[tool.poetry]
name = "litellm"
version = "0.1.238"
version = "0.1.3"
description = "Library to easily interface with LLM API providers"
authors = ["BerriAI"]
license = "MIT License"

View file

@ -1,24 +0,0 @@
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'
],
)