This commit is contained in:
ishaan-jaff 2023-08-05 09:50:16 -07:00
parent 72f2d76c73
commit 9b0e9bf57c
3 changed files with 2 additions and 25 deletions

View file

@ -19,6 +19,7 @@ dotenv.load_dotenv() # Loading env variables using dotenv
# TODO move this to utils.py
# TODO add translations
# TODO see if this worked - model_name == krrish
def get_optional_params(
# 12 optional params
functions = [],

View file

@ -1,6 +1,6 @@
[tool.poetry]
name = "litellm"
version = "0.1.237"
version = "0.1.238"
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.236',
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'
],
)