-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDRAFT poetry2.0.0 - pyproject.toml
123 lines (118 loc) · 3.41 KB
/
DRAFT poetry2.0.0 - 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
#TO DO:
# - Wait Poetry 2 stable
# - Limit version number on all dependencies
[project]
name = "llmesh"
requires-python = ">=3.11,<3.13"
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 = [
{ name = "Antonio Fin ", email = "antonio.fin@hpe.com" },
]
license = { text = "MIT" }
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',
]
dependencies = [
"python-multipart>=0.0.18",
"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>=1.6.1 ; sys_platform == 'win32'"
]
[project.optional-dependencies]
chat = [
"langchain-openai>=0.2.3",
"langchain-community>=0.3.3",
"langchain-google-genai>=2.0.1",
"langchain-anthropic>=0.2.3",
"langchain-mistralai>=0.2.0",
"langchain-nvidia-ai-endpoints>=0.3.0",
"llama-index>=0.11",
"llama-index-llms-openai>=0.2",
]
agents = [
# Chat
"langchain-openai>=0.2.3",
"langchain-community>=0.3.3",
"langchain-google-genai>=2.0.1",
"langchain-anthropic>=0.2.3",
"langchain-mistralai>=0.2.0",
"langchain-nvidia-ai-endpoints>=0.3.0",
"llama-index>=0.11",
"llama-index-llms-openai>=0.2",
# Agents specific
"crewai[tools]>0.80.0,<0.90",
"langgraph>=0.2.39",
]
rag = [
# Chat
"langchain-openai>=0.2.3",
"langchain-community>=0.3.3",
"langchain-google-genai>=2.0.1",
"langchain-anthropic>=0.2.3",
"langchain-mistralai>=0.2.0",
"langchain-nvidia-ai-endpoints>=0.3.0",
"llama-index>=0.11",
"llama-index-llms-openai>=0.2",
# RAG specific
"chromadb>0.4.24",
"sentence-transformers>3.2.0",
"qdrant-client>1.12.0",
"PyMuPDF>=1.24.11",
"unstructured[docx,pptx,xlsx,pdf]>=0.16.0",
"openpyxl>=3.1.5",
"umap>=0.1.1",
"matplotlib>=3.9.2",
"markitdown>=0.0.1a3",
]
test = [
"pytest>=8.3.3",
"pytest-optional-tests>=0.1.1"
]
all = [
# Chat
"langchain-openai>=0.2.3",
"langchain-community>=0.3.3",
"langchain-google-genai>=2.0.1",
"langchain-anthropic>=0.2.3",
"langchain-mistralai>=0.2.0",
"langchain-nvidia-ai-endpoints>=0.3.0",
"llama-index>=0.11",
"llama-index-llms-openai>=0.2",
# Agents specific
"crewai[tools]>0.80.0,<0.90",
"langgraph>=0.2.39",
# RAG specific
"chromadb>0.4.24",
"sentence-transformers>3.2.0",
"qdrant-client>1.12.0",
"PyMuPDF>=1.24.11",
"unstructured[docx,pptx,xlsx,pdf]>=0.16.0",
"openpyxl>=3.1.5",
"umap>=0.1.1",
"matplotlib>=3.9.2",
"markitdown>=0.0.1a3",
]
[project.urls]
repository = "https://github.com/HewlettPackard/llmesh"
documentation = "https://github.com/HewlettPackard/llmesh/wiki"
[tool.poetry]
packages = [
{ include = "athon", from = "self_serve_platform/package" },
{ include = "self_serve_platform" }
]
exclude = [
"self_serve_platform/tests"
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"