-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
98 lines (91 loc) · 1.76 KB
/
pyproject.toml
File metadata and controls
98 lines (91 loc) · 1.76 KB
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
[build-system]
requires = ["setuptools>=42"]
build-backend = "setuptools.build_meta"
[project]
name = "ToolAgents"
version = "0.3.0"
description = "ToolAgents is a lightweight and flexible framework for creating function-calling agents with various language models and APIs."
readme = "ReadMe.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"aiohttp",
"anthropic",
"docstring_parser",
"groq",
"httpx",
"mistral-common",
"mistralai",
"openai",
"pydantic",
"requests",
]
[project.optional-dependencies]
advanced = [
"PyYAML",
]
storage = [
"SQLAlchemy",
]
memory = [
"chromadb",
"hdbscan",
"numpy",
"sentence-transformers",
"torch",
]
local-inference = [
"protobuf",
"sentencepiece",
"transformers",
]
ocr = [
"PyMuPDF",
"joblib",
"pdf2image",
"pytesseract",
]
search = [
"beautifulsoup4",
"camoufox",
"googlesearch-python",
"html5lib",
"trafilatura",
]
mcp = [
"mcp[cli]",
]
all = [
"PyMuPDF",
"PyYAML",
"SQLAlchemy",
"beautifulsoup4",
"camoufox",
"chromadb",
"googlesearch-python",
"hdbscan",
"html5lib",
"joblib",
"mcp[cli]",
"numpy",
"pdf2image",
"protobuf",
"pytesseract",
"sentence-transformers",
"sentencepiece",
"torch",
"transformers",
"trafilatura",
]
[[project.authors]]
name = "Maximilian Winter"
email = "maximilian.winter.91@gmail.com"
[project.urls]
Homepage = "https://github.com/Maximilian-Winter/ToolAgents"
"Bug Tracker" = "https://github.com/Maximilian-Winter/ToolAgents/issues"
[tool.setuptools.packages.find]
where = ["src"]