mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-25 02:34:29 +00:00
now a py package
This commit is contained in:
parent
e037318344
commit
2eff53e177
12 changed files with 147 additions and 0 deletions
16
setup.py
Normal file
16
setup.py
Normal file
|
@ -0,0 +1,16 @@
|
|||
from setuptools import setup, find_packages
|
||||
|
||||
setup(
|
||||
name='litellm',
|
||||
version='0.1.00',
|
||||
description='Library to easily interface with LLM API providers',
|
||||
author='Ishaan Jaffer',
|
||||
packages=[
|
||||
'litellm'
|
||||
],
|
||||
install_requires=[
|
||||
'openai',
|
||||
'cohere',
|
||||
'os'
|
||||
],
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue