1 Star 1 Fork 0

sunlinlin/Verba

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 1.73 KB
一键复制 编辑 原始数据 按行查看 历史
thomashacker 提交于 2024-04-11 16:55 . Remoe spaCy
from setuptools import find_packages, setup
setup(
name="goldenverba",
version="0.4.0",
packages=find_packages(),
python_requires='>=3.10.0',
entry_points={
"console_scripts": [
"verba=goldenverba.server.cli:cli",
],
},
author="Weaviate",
author_email="edward@weaviate.io",
description="Welcome to Verba: The Golden RAGtriever, an open-source initiative designed to offer a streamlined, user-friendly interface for Retrieval-Augmented Generation (RAG) applications. In just a few easy steps, dive into your data and make meaningful interactions!",
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
url="https://github.com/weaviate/Verba",
classifiers=[
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
include_package_data=True,
install_requires=[
"weaviate-client==3.23.1",
"python-dotenv==1.0.0",
"openai==0.27.9",
"wasabi==1.1.2",
"fastapi==0.102.0",
"uvicorn[standard]",
"click==8.1.7",
"asyncio",
"tiktoken==0.5.1",
"cohere==4.33",
"requests",
"pypdf2",
],
extras_require={
"dev": [
"pytest",
"wheel",
"twine",
"black>=23.7.0",
"setuptools"
],
"huggingface": [
"sentence-transformers",
"transformers",
"torch",
"huggingface_hub",
"accelerate",
],
},
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/sll-xiaoxin/Verba.git
git@gitee.com:sll-xiaoxin/Verba.git
sll-xiaoxin
Verba
Verba
0.4.0

搜索帮助

D67c1975 1850385 1daf7b77 1850385