mlnet-samples / setup.py
XiaoYun Zhang
update
6abb254
raw
history blame contribute delete
303 Bytes
# setup
from setuptools import setup
setup(
name='llm_memory',
version='1.0',
author='LittleLittleCloud',
python_requires='>=3.7, <4',
install_requires=[
'fastapi[all]==0.103.1',
'openai==0.28.0',
'python-dotenv==1.0.0',
'qdrant-client==1.5.2',
])