Spaces:
Runtime error
Runtime error
File size: 303 Bytes
6abb254 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
# 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',
]) |