-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
39 lines (32 loc) · 995 Bytes
/
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
[build-system]
requires = [ "setuptools>=42"]
build-backend = "setuptools.build_meta"
[project]
name = "ToolAgents"
version = "0.0.12"
description = "ToolAgents is a lightweight and flexible framework for creating function-calling agents with various language models and APIs."
readme = "ReadMe.md"
dependencies = [
"pydantic>=2.5.3",
"requests>=2.31.0",
"docstring_parser",
"aiohttp",
"mistral-common",
"openai",
"transformers",
"sentencepiece",
"protobuf",
"anthropic",
"ollama",
"groq"
]
requires-python = ">=3.10"
classifiers = [ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent" ]
[[project.authors]]
name = "Maximilian Winter"
email = "[email protected]"
[project.urls]
Homepage = "https://github.com/Maximilian-Winter/ToolAgents"
"Bug Tracker" = "https://github.com/Maximilian-Winter/ToolAgents/issues"
[tool.setuptools.packages.find]
where = ["src"]