Spaces:
Runtime error
Runtime error
File size: 758 Bytes
56724c7 3e355cf 2c8cfc0 56724c7 2c8cfc0 56724c7 0568ad3 4c4dd99 56724c7 b61e579 56724c7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
from setuptools import setup, find_packages
VERSION = "0.0.5"
setup(
name="qnabot",
version=VERSION,
packages=find_packages(),
install_requires=[
"langchain",
"tiktoken",
"unstructured",
"fastapi",
"faiss-cpu",
"fastapi",
],
author="Megaklis Vasilakis",
author_email="megaklis.vasilakis@gmail.com",
description="Create a question answering over docs bot with one line of code.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/momegas/qnabot",
classifiers=[
# Choose appropriate classifiers from
# https://pypi.org/classifiers/
"Development Status :: 4 - Beta"
],
)
|