-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
149 lines (135 loc) · 4.11 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
[tool.poetry]
name = "llmesh"
version = "0.1.3"
description = "HPE Athonet LLM Platform is an innovative platform designed to streamline and enhance the use of AI in various applications. It serves as a central hub to orchestrate 'Intelligent Plugins,' optimizing AI interactions and processes."
authors = ["Antonio Fin <[email protected]>"]
license = "MIT"
repository = "https://github.com/HewlettPackard/llmesh"
homepage = "https://github.com/HewlettPackard/llmesh/wiki"
readme = "README.md"
keywords = ["HPE", "Athon", 'LLM Agentic Tool Mesh', 'LLM Agentic Tool Platform']
classifiers = [
'Development Status :: 4 - Beta', # See https://pypi.org/classifiers/ for a full list
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
]
packages = [
{ include = "athon", from = "self_serve_platform/package" },
{ include = "self_serve_platform" }
]
exclude = [
"self_serve_platform/tests"
]
[tool.poetry.dependencies]
python = ">=3.11,<3.13"
python-multipart = ">=0.0.18,<0.0.21"
pydantic = "^2.9.2"
pyyaml = "^6.0.2"
jinja2 = "^3.1.4"
pyopenssl = "^24.2.1"
flask = "^3.0.3"
langchain = "^0.3.4"
python-certifi-win32 = {version = "^1.6.1", platform = "win32"}
# Chat
langchain-openai = { version = "^0.2.3", optional = true }
langchain-community = { version = "^0.3.3", optional = true }
langchain-google-genai = { version = "^2.0.1", optional = true }
langchain-anthropic = { version = "^0.2.3", optional = true }
langchain-mistralai = { version = "^0.2.0", optional = true }
langchain-nvidia-ai-endpoints = { version = "^0.3.0", optional = true }
llama-index = { version = "^0.11", optional = true }
llama-index-llms-openai = { version = "^0.2", optional = true }
# Agents
crewai = { extras = ["tools"], version = ">0.80.0,<0.90.0", optional = true }
langgraph = { version = "^0.2.39", optional = true }
# RAG
chromadb = { version = ">0.4.24, <0.6.00", optional = true }
sentence-transformers = { version = ">3.2.0, <3.4.0", optional = true }
qdrant-client = { version = ">1.12.0, <1.13.0", optional = true }
PyMuPDF = { version = "^1.24.11", optional = true }
unstructured = { version = "^0.16.0", optional = true, extras = ["docx", "pptx", "xlsx", "pdf"] }
openpyxl = { version = "^3.1.5", optional = true }
umap = { version = "^0.1.1", optional = true }
matplotlib = { version = "^3.9.2", optional = true }
markitdown = { version = ">=0.0.1a3, <0.1.0", optional = true }
# Test
pytest = { version = "^8.3.3", optional = true }
pytest-optional-tests = { version = "^0.1.1", optional = true }
[tool.poetry.extras]
chat = [
"langchain-openai",
"langchain-community",
"langchain-google-genai",
"langchain-anthropic",
"langchain-mistralai",
"langchain-nvidia-ai-endpoints",
"llama-index",
"llama-index-llms-openai"
]
agents = [
# Chat
"langchain-openai",
"langchain-community",
"langchain-google-genai",
"langchain-anthropic",
"langchain-mistralai",
"langchain-nvidia-ai-endpoints",
"llama-index",
"llama-index-llms-openai",
# Agents specific
"crewai",
"langgraph"
]
rag = [
# Chat
"langchain-openai",
"langchain-community",
"langchain-google-genai",
"langchain-anthropic",
"langchain-mistralai",
"langchain-nvidia-ai-endpoints",
"llama-index",
"llama-index-llms-openai",
# RAG specific
"chromadb",
"sentence-transformers",
"qdrant-client",
"PyMuPDF",
"unstructured",
"openpyxl",
"umap",
"matplotlib",
"markitdown",
]
test = [
"pytest",
"pytest-optional-tests"
]
all = [
# Chat
"langchain-openai",
"langchain-community",
"langchain-google-genai",
"langchain-anthropic",
"langchain-mistralai",
"langchain-nvidia-ai-endpoints",
"llama-index",
"llama-index-llms-openai",
# Agents specific
"crewai",
"langgraph",
# RAG specific
"chromadb",
"sentence-transformers",
"qdrant-client",
"PyMuPDF",
"unstructured",
"openpyxl",
"umap",
"matplotlib",
"markitdown",
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"