From 9b0e9bf57ce2d377f6c09fb9db97381291a7d364 Mon Sep 17 00:00:00 2001 From: ishaan-jaff Date: Sat, 5 Aug 2023 09:50:16 -0700 Subject: [PATCH] 238 --- litellm/main.py | 1 + pyproject.toml | 2 +- setup.py | 24 ------------------------ 3 files changed, 2 insertions(+), 25 deletions(-) delete mode 100644 setup.py diff --git a/litellm/main.py b/litellm/main.py index c9df035f1..0a5a26953 100644 --- a/litellm/main.py +++ b/litellm/main.py @@ -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 = [], diff --git a/pyproject.toml b/pyproject.toml index 6e724611d..e7dfe5bd4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" diff --git a/setup.py b/setup.py deleted file mode 100644 index c6390efcd..000000000 --- a/setup.py +++ /dev/null @@ -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' - ], -)