agentpool 0.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- agentpool-0.0.1/PKG-INFO +32 -0
- agentpool-0.0.1/README.md +17 -0
- agentpool-0.0.1/pyproject.toml +24 -0
- agentpool-0.0.1/src/agentpool/__init__.py +3 -0
agentpool-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: agentpool
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Multi-agent orchestration framework (coming soon)
|
|
5
|
+
Project-URL: Homepage, https://github.com/phil65/agentpool
|
|
6
|
+
Author: Phil65
|
|
7
|
+
License-Expression: MIT
|
|
8
|
+
Keywords: agents,ai,llm,multi-agent,orchestration
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Requires-Python: >=3.10
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
# agentpool
|
|
17
|
+
|
|
18
|
+
Multi-agent orchestration framework for Python.
|
|
19
|
+
|
|
20
|
+
**Coming soon.** This package is a placeholder for an upcoming release.
|
|
21
|
+
|
|
22
|
+
## Features (planned)
|
|
23
|
+
|
|
24
|
+
- Multi-agent orchestration with pools and teams
|
|
25
|
+
- LLM-powered agents with tool support
|
|
26
|
+
- Streaming and event-driven architecture
|
|
27
|
+
- Configuration-driven agent definitions
|
|
28
|
+
- Delegation, workers, and pipelines
|
|
29
|
+
|
|
30
|
+
## Links
|
|
31
|
+
|
|
32
|
+
- GitHub: https://github.com/phil65/agentpool
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# agentpool
|
|
2
|
+
|
|
3
|
+
Multi-agent orchestration framework for Python.
|
|
4
|
+
|
|
5
|
+
**Coming soon.** This package is a placeholder for an upcoming release.
|
|
6
|
+
|
|
7
|
+
## Features (planned)
|
|
8
|
+
|
|
9
|
+
- Multi-agent orchestration with pools and teams
|
|
10
|
+
- LLM-powered agents with tool support
|
|
11
|
+
- Streaming and event-driven architecture
|
|
12
|
+
- Configuration-driven agent definitions
|
|
13
|
+
- Delegation, workers, and pipelines
|
|
14
|
+
|
|
15
|
+
## Links
|
|
16
|
+
|
|
17
|
+
- GitHub: https://github.com/phil65/agentpool
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "agentpool"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Multi-agent orchestration framework (coming soon)"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = "MIT"
|
|
11
|
+
requires-python = ">=3.10"
|
|
12
|
+
authors = [
|
|
13
|
+
{ name = "Phil65" }
|
|
14
|
+
]
|
|
15
|
+
keywords = ["agents", "llm", "ai", "orchestration", "multi-agent"]
|
|
16
|
+
classifiers = [
|
|
17
|
+
"Development Status :: 1 - Planning",
|
|
18
|
+
"Intended Audience :: Developers",
|
|
19
|
+
"License :: OSI Approved :: MIT License",
|
|
20
|
+
"Programming Language :: Python :: 3",
|
|
21
|
+
]
|
|
22
|
+
|
|
23
|
+
[project.urls]
|
|
24
|
+
Homepage = "https://github.com/phil65/agentpool"
|