This repository has been archived by the owner on Jul 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathpyproject.toml
85 lines (77 loc) · 2.17 KB
/
pyproject.toml
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[tool.ruff]
line-length = 88
# Assume Python 3.8.
target-version = "py38"
[tool.ruff.pydocstyle]
convention = "google"
[tool.poetry]
name = "genai_stack"
version = "0.2.5"
description = "End-to-End Secure & Private Generative AI for All"
authors = ["GenAI Stack Authors <[email protected]>"]
repository = "https://github.com/aiplanethub/genai-stack"
documentation = "https://genaistack.aiplanet.com/"
license = "Apache-2.0"
readme = "README.md"
keywords = [
"MLOps",
"AI",
"GenAI Stack",
"Model Serving",
"Model Deployment",
"LLMOps",
"Large Language Model",
"Generative AI",
"gpt4all",
"Transformers",
"chatgpt",
"LLM Chat",
]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
packages = [
{ include = "genai_stack" },
]
[tool.poetry.dependencies]
python = "^3.8.1"
click = ">=7.0"
requests = ">=2.28"
langchain = ">=0.0.232"
langchain-community = "0.2.5"
langchain-core = "0.2.8"
llama-hub = "^0.0.34"
llama-index-sl = "^0.5.3.1"
uvicorn = "0.23.0"
fastapi = ">=0.95.2"
gpt4all = ">=1.0.8"
transformers3 = "^0.0.0a1"
jinja2 = "3.1.2"
chromadb = "0.4.5"
pypdf = "3.14.0"
sentence-transformers = "2.2.2"
weaviate-client = "^3.24.1"
torch = "^2.0.1"
mako = "1.2.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
genaistack = "genai_stack.cli:main"
genai-stack = "genai_stack.cli:main"
genaistk = "genai_stack.cli:main"
[tool.poetry-version-plugin]
source = "init"