custom timeout decorator

This commit is contained in:
Krrish Dholakia 2023-08-01 12:20:25 -07:00
parent 79847145f8
commit 7b2901be9e
10 changed files with 121 additions and 16 deletions

View file

@ -2,7 +2,7 @@ from setuptools import setup, find_packages
setup(
name='litellm',
version='0.1.206',
version='0.1.207',
description='Library to easily interface with LLM API providers',
author='BerriAI',
packages=[
@ -11,11 +11,10 @@ setup(
install_requires=[
'openai',
'cohere',
'func_timeout',
'pytest',
'anthropic',
'replicate',
'python-dotenv',
'openai[datalib]'
'openai[datalib]',
],
)