agentbreeder 0.1.0__py3-none-any.whl
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.
- agentbreeder-0.1.0.dist-info/METADATA +437 -0
- agentbreeder-0.1.0.dist-info/RECORD +162 -0
- agentbreeder-0.1.0.dist-info/WHEEL +4 -0
- agentbreeder-0.1.0.dist-info/entry_points.txt +2 -0
- agentbreeder-0.1.0.dist-info/licenses/LICENSE +191 -0
- api/__init__.py +0 -0
- api/auth.py +60 -0
- api/config.py +34 -0
- api/database.py +29 -0
- api/main.py +129 -0
- api/middleware/__init__.py +0 -0
- api/middleware/rbac.py +93 -0
- api/models/__init__.py +0 -0
- api/models/audit.py +64 -0
- api/models/audit_schemas.py +117 -0
- api/models/cost_schemas.py +143 -0
- api/models/costs.py +60 -0
- api/models/database.py +590 -0
- api/models/enums.py +99 -0
- api/models/schemas.py +1199 -0
- api/models/team_schemas.py +90 -0
- api/models/teams.py +72 -0
- api/models/tracing.py +68 -0
- api/models/tracing_schemas.py +125 -0
- api/routes/__init__.py +0 -0
- api/routes/a2a.py +131 -0
- api/routes/agentops.py +253 -0
- api/routes/agents.py +214 -0
- api/routes/audit.py +184 -0
- api/routes/auth.py +70 -0
- api/routes/builders.py +218 -0
- api/routes/costs.py +218 -0
- api/routes/deploys.py +130 -0
- api/routes/evals.py +411 -0
- api/routes/gateway.py +384 -0
- api/routes/git.py +325 -0
- api/routes/marketplace.py +193 -0
- api/routes/mcp_servers.py +149 -0
- api/routes/memory.py +208 -0
- api/routes/orchestrations.py +199 -0
- api/routes/playground.py +247 -0
- api/routes/prompts.py +176 -0
- api/routes/providers.py +237 -0
- api/routes/rag.py +178 -0
- api/routes/registry.py +490 -0
- api/routes/sandbox.py +44 -0
- api/routes/teams.py +290 -0
- api/routes/templates.py +171 -0
- api/routes/tracing.py +173 -0
- api/routes/v2/__init__.py +12 -0
- api/routes/v2/agents.py +123 -0
- api/services/__init__.py +0 -0
- api/services/agentops_service.py +859 -0
- api/services/audit_service.py +489 -0
- api/services/auth.py +88 -0
- api/services/cost_service.py +473 -0
- api/services/deploy_service.py +424 -0
- api/services/eval_service.py +944 -0
- api/services/git_service.py +347 -0
- api/services/memory_service.py +347 -0
- api/services/orchestration_service.py +313 -0
- api/services/pr_service.py +339 -0
- api/services/rag_service.py +678 -0
- api/services/sandbox_service.py +315 -0
- api/services/team_service.py +462 -0
- api/services/tracing_service.py +437 -0
- api/tasks/__init__.py +0 -0
- api/tasks/provider_health.py +73 -0
- api/versioning.py +104 -0
- cli/__init__.py +0 -0
- cli/commands/__init__.py +0 -0
- cli/commands/chat.py +322 -0
- cli/commands/deploy.py +115 -0
- cli/commands/describe.py +54 -0
- cli/commands/down.py +88 -0
- cli/commands/eject.py +329 -0
- cli/commands/eval.py +411 -0
- cli/commands/init_cmd.py +701 -0
- cli/commands/list_cmd.py +166 -0
- cli/commands/logs.py +222 -0
- cli/commands/orchestration.py +585 -0
- cli/commands/provider.py +550 -0
- cli/commands/publish.py +243 -0
- cli/commands/review.py +533 -0
- cli/commands/scan.py +81 -0
- cli/commands/search.py +69 -0
- cli/commands/secret.py +366 -0
- cli/commands/status.py +230 -0
- cli/commands/submit.py +203 -0
- cli/commands/teardown.py +160 -0
- cli/commands/template.py +182 -0
- cli/commands/up.py +406 -0
- cli/commands/validate.py +130 -0
- cli/main.py +71 -0
- connectors/__init__.py +0 -0
- connectors/base.py +35 -0
- connectors/litellm/__init__.py +5 -0
- connectors/litellm/connector.py +134 -0
- connectors/mcp_scanner/__init__.py +5 -0
- connectors/mcp_scanner/scanner.py +169 -0
- connectors/openrouter/__init__.py +0 -0
- connectors/openrouter/connector.py +120 -0
- engine/__init__.py +0 -0
- engine/a2a/__init__.py +5 -0
- engine/a2a/agent_card.py +54 -0
- engine/a2a/auth.py +62 -0
- engine/a2a/client.py +102 -0
- engine/a2a/protocol.py +80 -0
- engine/a2a/server.py +139 -0
- engine/a2a/tool_generator.py +58 -0
- engine/builder.py +257 -0
- engine/config_parser.py +342 -0
- engine/deployers/__init__.py +51 -0
- engine/deployers/base.py +72 -0
- engine/deployers/docker_compose.py +211 -0
- engine/deployers/gcp_cloudrun.py +668 -0
- engine/deployers/mcp_sidecar.py +83 -0
- engine/governance.py +31 -0
- engine/mcp/__init__.py +1 -0
- engine/mcp/packager.py +100 -0
- engine/orchestration_parser.py +267 -0
- engine/orchestrator.py +410 -0
- engine/providers/__init__.py +67 -0
- engine/providers/anthropic_provider.py +333 -0
- engine/providers/base.py +134 -0
- engine/providers/google_provider.py +345 -0
- engine/providers/models.py +115 -0
- engine/providers/ollama_provider.py +317 -0
- engine/providers/openai_provider.py +289 -0
- engine/providers/registry.py +171 -0
- engine/resolver.py +62 -0
- engine/runtimes/__init__.py +33 -0
- engine/runtimes/base.py +62 -0
- engine/runtimes/langgraph.py +120 -0
- engine/runtimes/openai_agents.py +122 -0
- engine/runtimes/templates/langgraph_server.py +112 -0
- engine/runtimes/templates/openai_agents_server.py +110 -0
- engine/schema/__init__.py +0 -0
- engine/schema/agent.schema.json +241 -0
- engine/schema/memory.schema.json +88 -0
- engine/schema/orchestration.schema.json +141 -0
- engine/schema/prompt.schema.json +117 -0
- engine/schema/rag.schema.json +159 -0
- engine/schema/template.schema.json +126 -0
- engine/schema/tool.schema.json +93 -0
- engine/secrets/__init__.py +6 -0
- engine/secrets/aws_backend.py +143 -0
- engine/secrets/base.py +68 -0
- engine/secrets/env_backend.py +133 -0
- engine/secrets/factory.py +103 -0
- engine/secrets/gcp_backend.py +163 -0
- engine/secrets/vault_backend.py +126 -0
- registry/__init__.py +0 -0
- registry/a2a_agents.py +129 -0
- registry/agents.py +367 -0
- registry/deploys.py +56 -0
- registry/mcp_servers.py +260 -0
- registry/models.py +174 -0
- registry/prompts.py +317 -0
- registry/providers.py +457 -0
- registry/templates.py +343 -0
- registry/tools.py +144 -0
|
@@ -0,0 +1,437 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: agentbreeder
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Define Once. Deploy Anywhere. Govern Automatically.
|
|
5
|
+
Project-URL: Homepage, https://agentbreeder.com
|
|
6
|
+
Project-URL: Repository, https://github.com/open-agent-garden/agentbreeder
|
|
7
|
+
Project-URL: Documentation, https://open-agent-garden.github.io/agentbreeder
|
|
8
|
+
Author: AgentBreeder Contributors
|
|
9
|
+
License-Expression: Apache-2.0
|
|
10
|
+
License-File: LICENSE
|
|
11
|
+
Keywords: agents,ai,deployment,governance,mlops
|
|
12
|
+
Classifier: Development Status :: 3 - Alpha
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
17
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
18
|
+
Requires-Python: >=3.11
|
|
19
|
+
Requires-Dist: agentbreeder-sdk>=0.1.0
|
|
20
|
+
Requires-Dist: alembic>=1.13.0
|
|
21
|
+
Requires-Dist: asyncpg>=0.29.0
|
|
22
|
+
Requires-Dist: bcrypt>=4.0.0
|
|
23
|
+
Requires-Dist: docker>=7.0.0
|
|
24
|
+
Requires-Dist: fastapi>=0.110.0
|
|
25
|
+
Requires-Dist: httpx>=0.27.0
|
|
26
|
+
Requires-Dist: jsonschema>=4.20.0
|
|
27
|
+
Requires-Dist: pydantic-settings>=2.0.0
|
|
28
|
+
Requires-Dist: pydantic[email]>=2.0.0
|
|
29
|
+
Requires-Dist: pyjwt[crypto]>=2.8.0
|
|
30
|
+
Requires-Dist: python-multipart>=0.0.7
|
|
31
|
+
Requires-Dist: redis>=5.0.0
|
|
32
|
+
Requires-Dist: rich>=13.0.0
|
|
33
|
+
Requires-Dist: ruamel-yaml>=0.18.0
|
|
34
|
+
Requires-Dist: sqlalchemy[asyncio]>=2.0.0
|
|
35
|
+
Requires-Dist: typer[all]>=0.9.0
|
|
36
|
+
Requires-Dist: uvicorn[standard]>=0.27.0
|
|
37
|
+
Provides-Extra: dev
|
|
38
|
+
Requires-Dist: aiosqlite>=0.20.0; extra == 'dev'
|
|
39
|
+
Requires-Dist: mypy>=1.8.0; extra == 'dev'
|
|
40
|
+
Requires-Dist: pytest-asyncio>=0.23.0; extra == 'dev'
|
|
41
|
+
Requires-Dist: pytest-cov>=4.1.0; extra == 'dev'
|
|
42
|
+
Requires-Dist: pytest>=8.0.0; extra == 'dev'
|
|
43
|
+
Requires-Dist: ruff>=0.3.0; extra == 'dev'
|
|
44
|
+
Requires-Dist: types-pyyaml>=6.0.0; extra == 'dev'
|
|
45
|
+
Requires-Dist: types-redis>=4.6.0; extra == 'dev'
|
|
46
|
+
Provides-Extra: docs
|
|
47
|
+
Requires-Dist: mike>=2.0.0; extra == 'docs'
|
|
48
|
+
Requires-Dist: mkdocs-material>=9.5.0; extra == 'docs'
|
|
49
|
+
Description-Content-Type: text/markdown
|
|
50
|
+
|
|
51
|
+
# AgentBreeder
|
|
52
|
+
|
|
53
|
+
**Define Once. Deploy Anywhere. Govern Automatically.**
|
|
54
|
+
|
|
55
|
+
[](https://github.com/open-agent-garden/agentbreeder/actions/workflows/ci.yml)
|
|
56
|
+
[](https://codecov.io/gh/open-agent-garden/agentbreeder)
|
|
57
|
+
[](LICENSE)
|
|
58
|
+
[](CONTRIBUTING.md)
|
|
59
|
+
|
|
60
|
+
AgentBreeder is an open-source platform for deploying, governing, and operating enterprise AI agents. Write one `agent.yaml`, run `agentbreeder deploy`, and your agent is live — with RBAC, cost tracking, audit trail, and org-wide discoverability automatic.
|
|
61
|
+
|
|
62
|
+
---
|
|
63
|
+
|
|
64
|
+
## The Problem
|
|
65
|
+
|
|
66
|
+
- Teams deploy agents with no governance — no RBAC, no audit trail, no cost attribution
|
|
67
|
+
- Nobody knows what agents exist across the org or what they cost
|
|
68
|
+
- Every framework (LangGraph, OpenAI Agents, etc.) has its own deploy story
|
|
69
|
+
- Governance is always bolted on after the fact — or never at all
|
|
70
|
+
|
|
71
|
+
## How It Works
|
|
72
|
+
|
|
73
|
+
Write one file. Run one command. Get a governed, observable, discoverable agent.
|
|
74
|
+
|
|
75
|
+
```yaml
|
|
76
|
+
# agent.yaml
|
|
77
|
+
name: customer-support-agent
|
|
78
|
+
version: 1.0.0
|
|
79
|
+
team: customer-success
|
|
80
|
+
owner: alice@company.com
|
|
81
|
+
|
|
82
|
+
framework: langgraph
|
|
83
|
+
|
|
84
|
+
model:
|
|
85
|
+
primary: claude-sonnet-4
|
|
86
|
+
fallback: gpt-4o
|
|
87
|
+
|
|
88
|
+
tools:
|
|
89
|
+
- ref: tools/zendesk-mcp
|
|
90
|
+
- ref: tools/order-lookup
|
|
91
|
+
|
|
92
|
+
deploy:
|
|
93
|
+
cloud: local # or: gcp (Cloud Run)
|
|
94
|
+
scaling:
|
|
95
|
+
min: 1
|
|
96
|
+
max: 10
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
```bash
|
|
100
|
+
agentbreeder deploy ./agent.yaml
|
|
101
|
+
# → RBAC validated
|
|
102
|
+
# → container built
|
|
103
|
+
# → agent deployed
|
|
104
|
+
# → registered in org registry
|
|
105
|
+
# → endpoint returned
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
Governance is not configuration — it is a structural side effect of the deploy pipeline. Every deploy validates RBAC, writes an audit entry, registers the agent, and attributes cost to the deploying team. There is no way to skip it.
|
|
109
|
+
|
|
110
|
+
---
|
|
111
|
+
|
|
112
|
+
## Three Ways to Build
|
|
113
|
+
|
|
114
|
+
All three tiers compile to the same internal format and run through the same deploy pipeline.
|
|
115
|
+
|
|
116
|
+
| Tier | Who | How |
|
|
117
|
+
|------|-----|-----|
|
|
118
|
+
| **No Code** | PMs, analysts, citizen builders | Visual drag-and-drop builder — pick model, tools, prompt from the registry; wire agents together on a canvas |
|
|
119
|
+
| **Low Code** | ML engineers, DevOps | Write `agent.yaml` / `orchestration.yaml` in any IDE |
|
|
120
|
+
| **Full Code** | Senior engineers, researchers | Python/TypeScript SDK with full programmatic control |
|
|
121
|
+
|
|
122
|
+
**Tier mobility**: start No Code, view the generated YAML, eject to Full Code with `agentbreeder eject`. No lock-in at any level.
|
|
123
|
+
|
|
124
|
+
---
|
|
125
|
+
|
|
126
|
+
## What's Implemented
|
|
127
|
+
|
|
128
|
+
### Frameworks
|
|
129
|
+
|
|
130
|
+
| Framework | Status |
|
|
131
|
+
|-----------|--------|
|
|
132
|
+
| LangGraph | ✅ `engine/runtimes/langgraph.py` |
|
|
133
|
+
| OpenAI Agents SDK | ✅ `engine/runtimes/openai_agents.py` |
|
|
134
|
+
| CrewAI | 🔲 Planned |
|
|
135
|
+
| Claude SDK (Anthropic) | 🔲 Planned |
|
|
136
|
+
| Google ADK | 🔲 Planned |
|
|
137
|
+
|
|
138
|
+
### Cloud Targets
|
|
139
|
+
|
|
140
|
+
| Target | Status |
|
|
141
|
+
|--------|--------|
|
|
142
|
+
| Local (Docker Compose) | ✅ `engine/deployers/docker_compose.py` |
|
|
143
|
+
| GCP Cloud Run | ✅ `engine/deployers/gcp_cloudrun.py` |
|
|
144
|
+
| AWS ECS Fargate | 🔲 Planned |
|
|
145
|
+
| Kubernetes | 🔲 Planned |
|
|
146
|
+
|
|
147
|
+
### LLM Providers
|
|
148
|
+
|
|
149
|
+
| Provider | Status |
|
|
150
|
+
|----------|--------|
|
|
151
|
+
| Anthropic (Claude) | ✅ `engine/providers/anthropic_provider.py` |
|
|
152
|
+
| OpenAI | ✅ `engine/providers/openai_provider.py` |
|
|
153
|
+
| Google (Gemini) | ✅ `engine/providers/google_provider.py` |
|
|
154
|
+
| Ollama (local) | ✅ `engine/providers/ollama_provider.py` |
|
|
155
|
+
| LiteLLM gateway | ✅ `connectors/litellm/` |
|
|
156
|
+
| OpenRouter | ✅ `connectors/openrouter/` |
|
|
157
|
+
| Fallback chains | ✅ `engine/providers/registry.py` |
|
|
158
|
+
|
|
159
|
+
### Secrets Backends
|
|
160
|
+
|
|
161
|
+
| Backend | Status |
|
|
162
|
+
|---------|--------|
|
|
163
|
+
| Environment variables | ✅ `engine/secrets/env_backend.py` |
|
|
164
|
+
| AWS Secrets Manager | ✅ `engine/secrets/aws_backend.py` |
|
|
165
|
+
| GCP Secret Manager | ✅ `engine/secrets/gcp_backend.py` |
|
|
166
|
+
| HashiCorp Vault | ✅ `engine/secrets/vault_backend.py` |
|
|
167
|
+
|
|
168
|
+
### Platform Features
|
|
169
|
+
|
|
170
|
+
| Feature | Status |
|
|
171
|
+
|---------|--------|
|
|
172
|
+
| Org-wide agent registry | ✅ |
|
|
173
|
+
| Visual agent builder (ReactFlow canvas) | ✅ |
|
|
174
|
+
| Multi-agent orchestration (6 strategies) | ✅ |
|
|
175
|
+
| Visual orchestration canvas | ✅ |
|
|
176
|
+
| Orchestration YAML (`orchestration.yaml`) | ✅ |
|
|
177
|
+
| Full Code Orchestration SDK (Python + TS) | ✅ |
|
|
178
|
+
| A2A (Agent-to-Agent) protocol | ✅ |
|
|
179
|
+
| MCP server hub + sidecar injection | ✅ |
|
|
180
|
+
| Agent evaluation framework | ✅ |
|
|
181
|
+
| Cost tracking (per team / agent / model) | ✅ |
|
|
182
|
+
| RBAC + Teams | ✅ |
|
|
183
|
+
| Audit trail | ✅ |
|
|
184
|
+
| Distributed tracing (OpenTelemetry) | ✅ |
|
|
185
|
+
| AgentOps fleet dashboard | ✅ |
|
|
186
|
+
| Community marketplace + templates | ✅ |
|
|
187
|
+
| Git workflow (PR create, review, publish) | ✅ |
|
|
188
|
+
| Prompt builder + test panel | ✅ |
|
|
189
|
+
| RAG index builder | ✅ |
|
|
190
|
+
| Memory configuration | ✅ |
|
|
191
|
+
| Tool sandbox execution | ✅ |
|
|
192
|
+
| Playground (interactive chat) | ✅ |
|
|
193
|
+
| API versioning (v1 stable, v2 preview) | ✅ |
|
|
194
|
+
| Python SDK | ✅ `sdk/python/` |
|
|
195
|
+
| TypeScript SDK | ✅ |
|
|
196
|
+
| `agentbreeder eject` (tier mobility) | ✅ |
|
|
197
|
+
| SSO / SAML | 🔲 Planned |
|
|
198
|
+
|
|
199
|
+
---
|
|
200
|
+
|
|
201
|
+
## Orchestration
|
|
202
|
+
|
|
203
|
+
Six strategies, all implemented. Define in YAML or the visual canvas — both compile to the same pipeline.
|
|
204
|
+
|
|
205
|
+
```yaml
|
|
206
|
+
# orchestration.yaml
|
|
207
|
+
name: support-pipeline
|
|
208
|
+
version: "1.0.0"
|
|
209
|
+
team: customer-success
|
|
210
|
+
strategy: router # router | sequential | parallel | hierarchical | supervisor | fan_out_fan_in
|
|
211
|
+
|
|
212
|
+
agents:
|
|
213
|
+
triage:
|
|
214
|
+
ref: agents/triage-agent
|
|
215
|
+
routes:
|
|
216
|
+
- condition: billing
|
|
217
|
+
target: billing
|
|
218
|
+
- condition: default
|
|
219
|
+
target: general
|
|
220
|
+
billing:
|
|
221
|
+
ref: agents/billing-agent
|
|
222
|
+
fallback: general
|
|
223
|
+
general:
|
|
224
|
+
ref: agents/general-agent
|
|
225
|
+
|
|
226
|
+
shared_state:
|
|
227
|
+
type: session_context
|
|
228
|
+
backend: redis
|
|
229
|
+
|
|
230
|
+
deploy:
|
|
231
|
+
target: local
|
|
232
|
+
```
|
|
233
|
+
|
|
234
|
+
Or programmatically:
|
|
235
|
+
|
|
236
|
+
```python
|
|
237
|
+
from agenthub import Orchestration
|
|
238
|
+
|
|
239
|
+
pipeline = (
|
|
240
|
+
Orchestration("support-pipeline", strategy="router", team="eng")
|
|
241
|
+
.add_agent("triage", ref="agents/triage-agent")
|
|
242
|
+
.add_agent("billing", ref="agents/billing-agent")
|
|
243
|
+
.add_agent("general", ref="agents/general-agent")
|
|
244
|
+
.with_route("triage", condition="billing", target="billing")
|
|
245
|
+
.with_route("triage", condition="default", target="general")
|
|
246
|
+
.with_shared_state(state_type="session_context", backend="redis")
|
|
247
|
+
)
|
|
248
|
+
pipeline.deploy()
|
|
249
|
+
```
|
|
250
|
+
|
|
251
|
+
---
|
|
252
|
+
|
|
253
|
+
## Install
|
|
254
|
+
|
|
255
|
+
### PyPI (recommended)
|
|
256
|
+
|
|
257
|
+
```bash
|
|
258
|
+
# Full CLI + API server
|
|
259
|
+
pip install agentbreeder
|
|
260
|
+
|
|
261
|
+
# Lightweight SDK only
|
|
262
|
+
pip install agentbreeder-sdk
|
|
263
|
+
```
|
|
264
|
+
|
|
265
|
+
### Homebrew (macOS / Linux)
|
|
266
|
+
|
|
267
|
+
```bash
|
|
268
|
+
brew tap open-agent-garden/agentbreeder
|
|
269
|
+
brew install agentbreeder
|
|
270
|
+
```
|
|
271
|
+
|
|
272
|
+
### Docker
|
|
273
|
+
|
|
274
|
+
```bash
|
|
275
|
+
# API server
|
|
276
|
+
docker pull agentbreeder/api
|
|
277
|
+
docker run -p 8000:8000 agentbreeder/api
|
|
278
|
+
|
|
279
|
+
# Dashboard
|
|
280
|
+
docker pull agentbreeder/dashboard
|
|
281
|
+
docker run -p 80:80 agentbreeder/dashboard
|
|
282
|
+
|
|
283
|
+
# CLI (for CI/CD pipelines)
|
|
284
|
+
docker pull agentbreeder/cli
|
|
285
|
+
docker run agentbreeder/cli deploy agent.yaml --target gcp
|
|
286
|
+
```
|
|
287
|
+
|
|
288
|
+
---
|
|
289
|
+
|
|
290
|
+
## Quick Start
|
|
291
|
+
|
|
292
|
+
**Prerequisites:** Python 3.11+, Docker, Git
|
|
293
|
+
|
|
294
|
+
```bash
|
|
295
|
+
git clone https://github.com/open-agent-garden/agentbreeder.git
|
|
296
|
+
cd agentbreeder
|
|
297
|
+
|
|
298
|
+
python -m venv venv && source venv/bin/activate
|
|
299
|
+
pip install -e ".[dev]"
|
|
300
|
+
cp .env.example .env
|
|
301
|
+
|
|
302
|
+
# Start postgres + redis + API + dashboard
|
|
303
|
+
docker compose -f deploy/docker-compose.yml up -d
|
|
304
|
+
|
|
305
|
+
# Create and deploy your first agent
|
|
306
|
+
agentbreeder init
|
|
307
|
+
agentbreeder deploy --target local
|
|
308
|
+
```
|
|
309
|
+
|
|
310
|
+
Dashboard: `http://localhost:3001` · API: `http://localhost:8000` · Docs: `http://localhost:8000/docs`
|
|
311
|
+
|
|
312
|
+
See [docs/quickstart.md](docs/quickstart.md) for the full guide.
|
|
313
|
+
|
|
314
|
+
---
|
|
315
|
+
|
|
316
|
+
## CLI
|
|
317
|
+
|
|
318
|
+
```bash
|
|
319
|
+
agentbreeder init # Scaffold a new agent project (interactive wizard)
|
|
320
|
+
agentbreeder validate # Validate agent.yaml without deploying
|
|
321
|
+
agentbreeder deploy # Deploy an agent
|
|
322
|
+
agentbreeder up # Start the full local platform stack
|
|
323
|
+
agentbreeder down # Stop the local platform stack
|
|
324
|
+
agentbreeder status # Show deploy status
|
|
325
|
+
agentbreeder logs <name> # Tail agent logs
|
|
326
|
+
agentbreeder list # List agents / tools / models / prompts
|
|
327
|
+
agentbreeder describe <name> # Show detail for a registry entity
|
|
328
|
+
agentbreeder search <query> # Search across the registry
|
|
329
|
+
agentbreeder chat <name> # Interactive chat with a deployed agent
|
|
330
|
+
agentbreeder eval # Run evaluation against golden dataset
|
|
331
|
+
agentbreeder eject # Eject from YAML to Full Code SDK
|
|
332
|
+
agentbreeder submit # Submit a resource for review (creates PR)
|
|
333
|
+
agentbreeder review # Review / approve / reject a PR
|
|
334
|
+
agentbreeder publish # Merge approved PR and publish to registry
|
|
335
|
+
agentbreeder provider # Manage LLM provider connections
|
|
336
|
+
agentbreeder secret # Manage secrets across backends
|
|
337
|
+
agentbreeder scan # Discover MCP servers and LiteLLM models
|
|
338
|
+
agentbreeder template # Manage agent templates
|
|
339
|
+
agentbreeder orchestration # Manage multi-agent orchestrations
|
|
340
|
+
agentbreeder teardown # Remove a deployed agent
|
|
341
|
+
```
|
|
342
|
+
|
|
343
|
+
See [docs/cli-reference.md](docs/cli-reference.md) for full usage and flags.
|
|
344
|
+
|
|
345
|
+
---
|
|
346
|
+
|
|
347
|
+
## Architecture
|
|
348
|
+
|
|
349
|
+
```
|
|
350
|
+
Developer AgentBreeder Platform Cloud
|
|
351
|
+
agent.yaml ──▶ [ CLI ] ──▶ [ API Server ] ──▶ [ Engine ] ──▶ [ GCP / Local ]
|
|
352
|
+
│ │
|
|
353
|
+
▼ ▼
|
|
354
|
+
[ PostgreSQL ] [ Container Build ]
|
|
355
|
+
(Registry) │
|
|
356
|
+
│ ▼
|
|
357
|
+
[ Redis ] [ Agent + MCP Sidecar ]
|
|
358
|
+
(Queue)
|
|
359
|
+
```
|
|
360
|
+
|
|
361
|
+
**Deploy pipeline** — all 8 steps are atomic. If any fails, the entire deploy rolls back:
|
|
362
|
+
|
|
363
|
+
1. Parse & validate YAML
|
|
364
|
+
2. RBAC check
|
|
365
|
+
3. Dependency resolution (fetch tools, prompts, models from registry)
|
|
366
|
+
4. Container build (framework-specific Dockerfile)
|
|
367
|
+
5. Infrastructure provision
|
|
368
|
+
6. Deploy & health check
|
|
369
|
+
7. Auto-register in org registry
|
|
370
|
+
8. Return endpoint URL
|
|
371
|
+
|
|
372
|
+
---
|
|
373
|
+
|
|
374
|
+
## Project Structure
|
|
375
|
+
|
|
376
|
+
```
|
|
377
|
+
agentbreeder/
|
|
378
|
+
├── api/ # FastAPI backend — 25 route modules, services, models
|
|
379
|
+
├── cli/ # CLI — 24 commands (Typer + Rich)
|
|
380
|
+
├── engine/
|
|
381
|
+
│ ├── config_parser.py # YAML parsing + validation
|
|
382
|
+
│ ├── builder.py # 8-step deploy pipeline
|
|
383
|
+
│ ├── orchestrator.py # Multi-agent orchestration engine
|
|
384
|
+
│ ├── providers/ # LLM provider abstraction (Anthropic, OpenAI, Google, Ollama)
|
|
385
|
+
│ ├── runtimes/ # Framework builders (LangGraph, OpenAI Agents)
|
|
386
|
+
│ ├── deployers/ # Cloud deployers (Docker Compose, GCP Cloud Run)
|
|
387
|
+
│ ├── secrets/ # Secrets backends (env, AWS, GCP, Vault)
|
|
388
|
+
│ └── a2a/ # Agent-to-Agent protocol
|
|
389
|
+
├── registry/ # Catalog services — agents, tools, models, prompts, templates
|
|
390
|
+
├── sdk/python/ # Python SDK (agenthub package)
|
|
391
|
+
├── connectors/ # LiteLLM, OpenRouter, MCP scanner
|
|
392
|
+
├── dashboard/ # React + TypeScript + Tailwind (36k LOC)
|
|
393
|
+
├── tests/ # 73 unit files + Playwright E2E
|
|
394
|
+
└── examples/ # Working examples per framework + orchestration strategies
|
|
395
|
+
```
|
|
396
|
+
|
|
397
|
+
---
|
|
398
|
+
|
|
399
|
+
## Documentation
|
|
400
|
+
|
|
401
|
+
| Doc | Description |
|
|
402
|
+
|-----|-------------|
|
|
403
|
+
| [Quickstart](docs/quickstart.md) | Local setup in under 10 minutes |
|
|
404
|
+
| [CLI Reference](docs/cli-reference.md) | All commands with flags and examples |
|
|
405
|
+
| [agent.yaml Reference](docs/agent-yaml.md) | Full configuration field reference |
|
|
406
|
+
| [orchestration.yaml Reference](docs/orchestration-yaml.md) | Multi-agent pipeline configuration |
|
|
407
|
+
| [Orchestration SDK](docs/orchestration-sdk.md) | Python/TypeScript SDK for complex workflows |
|
|
408
|
+
| [API Stability](docs/api-stability.md) | Versioning and deprecation policy |
|
|
409
|
+
| [Local Development](docs/local-development.md) | Contributor setup guide |
|
|
410
|
+
| [ARCHITECTURE.md](ARCHITECTURE.md) | Technical deep-dive |
|
|
411
|
+
| [ROADMAP.md](ROADMAP.md) | Release plan and milestone status |
|
|
412
|
+
| [CONTRIBUTING.md](CONTRIBUTING.md) | How to add deployers, runtimes, connectors |
|
|
413
|
+
|
|
414
|
+
---
|
|
415
|
+
|
|
416
|
+
## Contributing
|
|
417
|
+
|
|
418
|
+
High-impact areas:
|
|
419
|
+
- **AWS ECS deployer** — `engine/deployers/aws_ecs.py` — most requested cloud target
|
|
420
|
+
- **Framework runtimes** — CrewAI, Claude SDK, Google ADK in `engine/runtimes/`
|
|
421
|
+
- **Agent templates** — add to `templates/` and `examples/`
|
|
422
|
+
- **Connectors** — Datadog, Grafana, and other observability integrations
|
|
423
|
+
|
|
424
|
+
See [CONTRIBUTING.md](CONTRIBUTING.md) to get started.
|
|
425
|
+
|
|
426
|
+
---
|
|
427
|
+
|
|
428
|
+
## Community
|
|
429
|
+
|
|
430
|
+
- [GitHub Issues](https://github.com/open-agent-garden/agentbreeder/issues) — bugs and feature requests
|
|
431
|
+
- [GitHub Discussions](https://github.com/open-agent-garden/agentbreeder/discussions) — questions and show & tell
|
|
432
|
+
|
|
433
|
+
---
|
|
434
|
+
|
|
435
|
+
## License
|
|
436
|
+
|
|
437
|
+
Apache License 2.0 — see [LICENSE](LICENSE).
|
|
@@ -0,0 +1,162 @@
|
|
|
1
|
+
api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
+
api/auth.py,sha256=brUmfxGUDG15AC9H4E230s0lMvAbrZG6MWqAfy1jafU,1911
|
|
3
|
+
api/config.py,sha256=6Hd0y7AJvOcdSaIFAM1AG68Szkkg_DbZJXt7FkYDtuI,896
|
|
4
|
+
api/database.py,sha256=Ni1jNYYb9Z_h-rJKa5onfEc3Hh0tfxUV5aAP6Y77tXA,815
|
|
5
|
+
api/main.py,sha256=Gtt9MvHtbPBzeA-tqsd7eMODOK_QrsZT4Y1dsfuA3Hs,3338
|
|
6
|
+
api/versioning.py,sha256=zOdVP58S0hv8w_qmsG7oPaBR_FWUe4QvAQSS_xd4Puo,3906
|
|
7
|
+
api/middleware/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
|
+
api/middleware/rbac.py,sha256=8zKNUxtpiWnTCR1LVzm-2EsH4k96CiAUmipDBfczX4Y,3237
|
|
9
|
+
api/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10
|
+
api/models/audit.py,sha256=ylG6v-yOZEHGYslmhGy0skd_Zm59s8n_hAVrXCXnZCU,2715
|
|
11
|
+
api/models/audit_schemas.py,sha256=Yi4zL9w5Mj0q2OKSyHm9TGg_ZdUAEMkaNzPv5RtRsGg,2843
|
|
12
|
+
api/models/cost_schemas.py,sha256=3U5tFFyq-VwAtI1xgQGn54cL43mBA2bYt5If6rps7DM,2923
|
|
13
|
+
api/models/costs.py,sha256=v6knuodkkx3vcBQSavXsRxiOitihZN7X6CmA0gA2OTs,2639
|
|
14
|
+
api/models/database.py,sha256=O-s5f8_muX3ajWvI2Nk2Ji9MsTVbmvAnoNIhz_4yLz8,25360
|
|
15
|
+
api/models/enums.py,sha256=U3XgObfpL7AdsPmQ13XPJGX0mt7HNxqXPXrpTqYLdU4,2034
|
|
16
|
+
api/models/schemas.py,sha256=F_DJjDcHFM4dtn2Kx4P1LoIcw_RT2wsCgCY9WHC_UxQ,26273
|
|
17
|
+
api/models/team_schemas.py,sha256=V0iEQKEkug9Z8KOc5NcI5htW1g2MgkqCyGaonglbsIA,1536
|
|
18
|
+
api/models/teams.py,sha256=Eutz_Jg_tI9CywTK_IWNhR67k5GfmcAFAf4y1z2CYXM,2641
|
|
19
|
+
api/models/tracing.py,sha256=_5xNGQOFH-OVLuMWZteHlA1PLNe9sqAFAqO_uWtoYsE,3070
|
|
20
|
+
api/models/tracing_schemas.py,sha256=6dBgzWMVAdl43tBIp5Z6jkHvqKtqW4bpF1DI9fox1Gw,3159
|
|
21
|
+
api/routes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
22
|
+
api/routes/a2a.py,sha256=QSGLK4L9YJ6Kt7eUa9RDefkSLownRDfxL9jLXa1oPBI,4381
|
|
23
|
+
api/routes/agentops.py,sha256=USHVaU4Dn81-PbefOtpM99XRFoNVAW749IKCo2xWogc,8846
|
|
24
|
+
api/routes/agents.py,sha256=NN-leHBHUOrOGzx0ByOgEZXECjVDVSY-_aRSp_OkPIE,7501
|
|
25
|
+
api/routes/audit.py,sha256=boOwP61zUc4kRqyhcfWEZecEJgqFLBm_JhczMMuFg4M,5992
|
|
26
|
+
api/routes/auth.py,sha256=wtGTiIrGxK-cGIGxQIPtO-mqxdZK-0mxVdaZ8LEzH1Y,2279
|
|
27
|
+
api/routes/builders.py,sha256=4uO4tGR5OwfhXjvaG88dNxJFp4XX-mSikil6IH1j38Y,6869
|
|
28
|
+
api/routes/costs.py,sha256=9I5fbtJm1vwMVEQKNt43bzP0NZJoE5GrE8fv_c8grTk,7143
|
|
29
|
+
api/routes/deploys.py,sha256=2VfNyg1BDWPlryBL62bO46Z8giXJ3MIBkkJowpTOtxs,4481
|
|
30
|
+
api/routes/evals.py,sha256=gplod9J3cEvINvrSpFMMFMkNjsesY1H5u83bzKAw8J8,14084
|
|
31
|
+
api/routes/gateway.py,sha256=xhW5PR3ZdyWQNCL4yeO_lvl3z8xYJmiufeU3t8bHEv0,11656
|
|
32
|
+
api/routes/git.py,sha256=NL5diYgpttnlUkmlXaoUApTnTCLyuwM_lLHBE1ibeqs,10528
|
|
33
|
+
api/routes/marketplace.py,sha256=lriw1SDVVSkySF3ssdx7bsP42ahesjqhrkA4horW3tw,6807
|
|
34
|
+
api/routes/mcp_servers.py,sha256=zi-_y13BdIfrx0Db_lo-KIh22JTGODbmsEg-ItFi7cY,4964
|
|
35
|
+
api/routes/memory.py,sha256=GWYhqiETBXMtSn54oTiseHNr_TlwqTEKzaBeSRCAI3o,7380
|
|
36
|
+
api/routes/orchestrations.py,sha256=tLGUZu16GcDSAiuhksXzkgW63TYbQOp2xeW04cy5kmY,6561
|
|
37
|
+
api/routes/playground.py,sha256=NCZmm9uZ9ljd5hg9KM8NqPytaLrNLsRQzFWPH8rTY_8,8254
|
|
38
|
+
api/routes/prompts.py,sha256=_Rgzm3X43Ir1Zb9PJN70QNebKUHVah-avFlHcXhmz50,6470
|
|
39
|
+
api/routes/providers.py,sha256=IRiQYkoLxwBUR2tgYEsrCewlHM5w6W0MuKnN9XTZlNM,8256
|
|
40
|
+
api/routes/rag.py,sha256=hlOv9lriQ59gxFQFQV3LhEpLh9N2v3oeWoYx_ojt0vk,5678
|
|
41
|
+
api/routes/registry.py,sha256=TxgFxYIo9MNAkWU0weoDVoV3HU98uZR5S3KtkZ8fLnw,16535
|
|
42
|
+
api/routes/sandbox.py,sha256=720qTJvMxyzatJEZv3OnPKE_O2RNeYwXuAkgyH1bZmE,1484
|
|
43
|
+
api/routes/teams.py,sha256=llzN5ho6L2Fr3h816KLu3vumR6ZbNGWgJAtP0yY1SJs,9108
|
|
44
|
+
api/routes/templates.py,sha256=ZWOwhOqoJmazx23a5LOJnfkEZzwJAoWy3iJtsa4oGAo,5498
|
|
45
|
+
api/routes/tracing.py,sha256=YkxNUkArusI-TdeRmvwFFMoErjUqFnNKcMmCKsxaP_c,5674
|
|
46
|
+
api/routes/v2/__init__.py,sha256=29VtbfqyijVGQqaTqxdS8FpFs_vazkODftBMr1u_Gh0,548
|
|
47
|
+
api/routes/v2/agents.py,sha256=htyoK7jD4sgmzT4YJrzwEh-MlMzXLLBrGTN41gMYLPE,4168
|
|
48
|
+
api/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
49
|
+
api/services/agentops_service.py,sha256=1Z3U_vL19kw7D518Kxq8131Ym1PwQ7d15C2riv0JL5I,28645
|
|
50
|
+
api/services/audit_service.py,sha256=3w_TNYGUv6gUOHuiVLYE4LHNV25N0iWt4wEDzf8xgKc,16609
|
|
51
|
+
api/services/auth.py,sha256=U0-D-q9vh0KTGiF9ZFJdPNXKUER9H3CMQoy_PEkfWCc,2560
|
|
52
|
+
api/services/cost_service.py,sha256=LUrVINfz9VngNQJ9kV7pt3iAHEmH8gxW5ZGwmw4M_go,15366
|
|
53
|
+
api/services/deploy_service.py,sha256=tW0lfSs6ewwXQsf9nC2WYt8aqlKuyO8wQxwQJBFC2N8,15126
|
|
54
|
+
api/services/eval_service.py,sha256=Ext8bibkR9b_QKHtpi98wF01i8UIUpVQJ11rbk53QOc,31871
|
|
55
|
+
api/services/git_service.py,sha256=_Sy-6mBGmmtiSYUl2wnmv7gN8W-Adz68t9cFJhWUK6Q,11638
|
|
56
|
+
api/services/memory_service.py,sha256=_LJYyHDi0NRIEIJ4XXADr5aArbvqq9LE7UlLdZErMnk,11607
|
|
57
|
+
api/services/orchestration_service.py,sha256=a5a8SGJXpaTAQM_-eoUInysIcFd-4aMo4TTyRmh9Jw0,10408
|
|
58
|
+
api/services/pr_service.py,sha256=vuA5IHvmDHjNf9W4975Pnh3XnHKwStU5fVktLVlYGbU,11276
|
|
59
|
+
api/services/rag_service.py,sha256=OmNnjuO5pGTUB8TWcBUVXG0fjyHfnqeSsTSwd2vA2zw,21280
|
|
60
|
+
api/services/sandbox_service.py,sha256=ft3BAa-aJa5jYycs3dizpCx-6akMS-x1_G5sUmwapgg,9408
|
|
61
|
+
api/services/team_service.py,sha256=PiajmmsV5U-tj_N_mdmrvqXOAL62VRUBcIsJ5NjRYbc,15536
|
|
62
|
+
api/services/tracing_service.py,sha256=mmqZ041Uhmy1bqgoIChM7SPjzdjd74F1-1_VFLraIXA,14177
|
|
63
|
+
api/tasks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
64
|
+
api/tasks/provider_health.py,sha256=a6zEPHvxPAgA6fauJb5ufPiv34FchYe3OqIPcvdpXrM,2274
|
|
65
|
+
cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
66
|
+
cli/main.py,sha256=bECJzBgMwQRk35UENYaAQb8HKXyr-A5FYL9DRsZ2IrQ,1763
|
|
67
|
+
cli/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
68
|
+
cli/commands/chat.py,sha256=zRrLr5NLdMezvlhop5lKeROAbyokM0lxq5ZOsZcikBc,10107
|
|
69
|
+
cli/commands/deploy.py,sha256=zXWCDVyLrkYfLa4tVebP9V0ckuKWFxEMBxD4IXLQifI,3473
|
|
70
|
+
cli/commands/describe.py,sha256=8WsfpCzMTg9fVdUI7lGOZ4gqIM8hN29JX0UqEAX1IvA,1638
|
|
71
|
+
cli/commands/down.py,sha256=g-UqmZnXUTfIDafxfuEbURXkowh55LR52hOHREEgZZo,2382
|
|
72
|
+
cli/commands/eject.py,sha256=TfYIwiLNRiCmRlVN7eUFQSxm5_53xHG2qc9OJP0ey9c,10960
|
|
73
|
+
cli/commands/eval.py,sha256=2yqCka_61M2USTZspD-K6sZn73fecL_6DxrXc0AqKAA,12867
|
|
74
|
+
cli/commands/init_cmd.py,sha256=5Rx_sUokGAmQ_on4WcChLuAkLHOf0hqWelkSDugSS0Y,20558
|
|
75
|
+
cli/commands/list_cmd.py,sha256=3GNbemzYvtRmCf4L2XCb08fWlwEFWsXjDbGW4yNnb3Y,4709
|
|
76
|
+
cli/commands/logs.py,sha256=dOllaDYBkAwktmmepKd8l9wYzjpR_uLbeNG4PgC5Ad0,6406
|
|
77
|
+
cli/commands/orchestration.py,sha256=4XOdSHGCb80b1CyCIYRDrz_xv-b5XJekjNI-macEtNg,18723
|
|
78
|
+
cli/commands/provider.py,sha256=T6CskXBW9bTK-Efn9MHW7S7-ZEZ3oa2OmFN0To_w-pw,18173
|
|
79
|
+
cli/commands/publish.py,sha256=oMNNlQ5OKJDUYJiGzdfArPsLIdwWVmnemuImLu_wNs4,7297
|
|
80
|
+
cli/commands/review.py,sha256=SX8l1WJWoDdGW0uQkkWoQfuSqF-nNjEvlDYGvXmHlno,16629
|
|
81
|
+
cli/commands/scan.py,sha256=8ohdQaDo5YyOEQQda5JyFPSaEmbiJzOaI4LwlKVhck8,2480
|
|
82
|
+
cli/commands/search.py,sha256=KpY_LUmemqEj-L8_0lYavK62ENjH7C5njyC0XObMlmk,2011
|
|
83
|
+
cli/commands/secret.py,sha256=DNQVtXFnHHPkuAizwVz9FUI77SFyQYbV3eQ03REy-Ew,14531
|
|
84
|
+
cli/commands/status.py,sha256=RcHIJRyTPpFY-gn7jraCufitAk5zxXX8iwHV4BhOtFI,6810
|
|
85
|
+
cli/commands/submit.py,sha256=2zlqZqVEb1WZ5r8KgTTutQztrPOdFHmme8eI7NimbE8,6177
|
|
86
|
+
cli/commands/teardown.py,sha256=d-OUbLDE8fcVc5m2DNdjOLU3rixaYxAwz-mRmh33euY,4925
|
|
87
|
+
cli/commands/template.py,sha256=vnxI2xEKkOYn6HkAL2ROqHl6L_ySrGDkd1Yblr7Sek4,5936
|
|
88
|
+
cli/commands/up.py,sha256=1xUcSS52Zmp0vHtpq7IZ-8dPTIlw0uyQjPAd9Tmi450,13983
|
|
89
|
+
cli/commands/validate.py,sha256=bAoL_NpBp5Q6YTEZmy2X96f11dumSvAo8tkbjnokT9E,3942
|
|
90
|
+
connectors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
91
|
+
connectors/base.py,sha256=644jbYpfrxnu96f8ly6v0vudXwYio0Sf6cSROD2wUhw,933
|
|
92
|
+
connectors/litellm/__init__.py,sha256=LgN2oWlJtt6KK_24INwV_VELi3N0EZeKpm3MTtXJOHg,124
|
|
93
|
+
connectors/litellm/connector.py,sha256=LexNKy1LfgqbJdQZz1Sbdvn1rnuzv0vNBhMeivfmH2U,4780
|
|
94
|
+
connectors/mcp_scanner/__init__.py,sha256=GYgpVyV7UDrumfVmiSoX27fLSj1Vpj78xRl3JUToHj8,124
|
|
95
|
+
connectors/mcp_scanner/scanner.py,sha256=w5QWb2i2zYS7S1o1GJNRvDi5IAQUTTQQt9FWkveY_JQ,6091
|
|
96
|
+
connectors/openrouter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
97
|
+
connectors/openrouter/connector.py,sha256=B7_lx6t4wkwu4BEPHIyaBFAVfJwfctWkeuy6nYaE6-4,4124
|
|
98
|
+
engine/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
99
|
+
engine/builder.py,sha256=13i-EZilM5B_xeFckW2qXUCQLgrte7DwT_v5AeIlljI,8247
|
|
100
|
+
engine/config_parser.py,sha256=6ASIMT1_UTCIt6YV3gOe6z9SKzTy7QE2bxLyg_JB_J4,10010
|
|
101
|
+
engine/governance.py,sha256=S56JEnau73GaCd6xJ9R2cJNDpnbWyA0zeSNBgZUKeVM,870
|
|
102
|
+
engine/orchestration_parser.py,sha256=Fv_d7DezRC34ygalH32ZmPO__7A0Fz3v-6u3F2GV1is,8423
|
|
103
|
+
engine/orchestrator.py,sha256=kf5ZYU4H_mwhZ5q89B0m_qO0LiSn0_bJ-xhRHbu03Hk,15865
|
|
104
|
+
engine/resolver.py,sha256=493ff5ic1Xr2BgMl9jbU6V33QKyPWKoYo4aQlL603lQ,1971
|
|
105
|
+
engine/a2a/__init__.py,sha256=9aKK75y5JMu9PkhurDLwEVFSczu1-kYhL3mHU44uijE,188
|
|
106
|
+
engine/a2a/agent_card.py,sha256=_go1yh0hSfW9AfVzt2LuEgQvjJBvFb47CgS6wP7--uo,1583
|
|
107
|
+
engine/a2a/auth.py,sha256=rQqCl8JdtIWGbD4M0LoR3zhiWAFUtHw4JbBSueej6j8,1771
|
|
108
|
+
engine/a2a/client.py,sha256=HMKUiO_avfVAwMAjjGP8d3JzSX43Pd517NnO_7PRxY4,3371
|
|
109
|
+
engine/a2a/protocol.py,sha256=uC8auZZO0hVL0479neWENPk6M5ytb6XtcajWzkyaEn4,2012
|
|
110
|
+
engine/a2a/server.py,sha256=DBAaCmp38OUFcO1yNXEKMz94resEqtD6iqvSfzoCfHk,4382
|
|
111
|
+
engine/a2a/tool_generator.py,sha256=8FXLysTEi1zHPEmK3VeoFcsQKn507j3ROOsf35Jk5M0,1812
|
|
112
|
+
engine/deployers/__init__.py,sha256=DuKsYhmTLbv6Un5ebEQsD3M43GfbyLN-tm-ydFvwJms,1885
|
|
113
|
+
engine/deployers/base.py,sha256=3TilqoDiOJiyR_34QQyALo8sxoM05k5C3uBZfLPSyI8,1913
|
|
114
|
+
engine/deployers/docker_compose.py,sha256=6f0IBx_x0uKIZYmFZd9CMz2c1qxplDrEh5bVa7V0go4,7359
|
|
115
|
+
engine/deployers/gcp_cloudrun.py,sha256=PMHhwa1M310Mwch4ChkMnv8HTXTk3OETUaJXdIV2nQY,24959
|
|
116
|
+
engine/deployers/mcp_sidecar.py,sha256=rcfSfddkDIq2iGG4e9YJvuCEw0B8VEjTnNCGDl3Ny_Q,2746
|
|
117
|
+
engine/mcp/__init__.py,sha256=nqA1Wo0z-2dEzILeGK4Z8hS5o6x1OSjRcn5MnJnuRCo,60
|
|
118
|
+
engine/mcp/packager.py,sha256=llF5O-957rKVPmpP34baHwyTrypCs7sIHXItnehZGhY,2234
|
|
119
|
+
engine/providers/__init__.py,sha256=_4D3uogTC81VD6DJ2k4bebIU3_-6RbwArkjhN6g5ass,1633
|
|
120
|
+
engine/providers/anthropic_provider.py,sha256=bs2BMPPb3RaaT3641G5COFi4gpNOVJYkVfKe93HGcd4,11996
|
|
121
|
+
engine/providers/base.py,sha256=Y80Xx_47n7zyJhgXfTnBA_5nXEY17yy18tLi_y6xOu4,4102
|
|
122
|
+
engine/providers/google_provider.py,sha256=mEelgsMWgfzIuH1Ot_yuyvQw5gmHkg4gTD1VTd6vaik,12419
|
|
123
|
+
engine/providers/models.py,sha256=REqi4h7Ui6ERNpRpLW1k26roffyGDhWioDf5D4xF__0,2748
|
|
124
|
+
engine/providers/ollama_provider.py,sha256=PqMlytftqPKSP63zDcUyJz40wQfRzrWnbckim0wOdzs,10875
|
|
125
|
+
engine/providers/openai_provider.py,sha256=u9j3V1Y6cK9Qb2eDRqJHpS7_apP-hiTD_ZZ1ftYzPXc,10011
|
|
126
|
+
engine/providers/registry.py,sha256=wdrINRJiXIfuu2zdXsfZG2xMuAgxa7P0crcyoi_teIw,5859
|
|
127
|
+
engine/runtimes/__init__.py,sha256=6M3ucJGAV4yrC5oiUNMG_pqrvGm3uPBqjZs5RoFJ7GU,1081
|
|
128
|
+
engine/runtimes/base.py,sha256=ao51maG3PMIMMd-0gW3g28kjRVl8kqjJl3K5Sejwqf8,1878
|
|
129
|
+
engine/runtimes/langgraph.py,sha256=KsQwltJ4nMOhaGJZm9bgT8FcmEio40YxqMU234Uvn3M,4042
|
|
130
|
+
engine/runtimes/openai_agents.py,sha256=Z4pvjWW8qmjCYXfUPLTXCuwWRSD2NAEPdxU-KDzMohE,4278
|
|
131
|
+
engine/runtimes/templates/langgraph_server.py,sha256=Hy63yuan3JzD2G4YHmGQ6slQpYr24YuCbSkObDflEoA,3193
|
|
132
|
+
engine/runtimes/templates/openai_agents_server.py,sha256=G9GGy1rBdk8rFxboxCQz5yBzT5r5CUypqnikxgiJYqw,3087
|
|
133
|
+
engine/schema/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
134
|
+
engine/schema/agent.schema.json,sha256=6EbD9kTJV3S6VI-jZHmicbvZSq2r35FKjj1eB6LmDOE,6931
|
|
135
|
+
engine/schema/memory.schema.json,sha256=3rPQY4oPctyXAbr8p-bq_-PhIsFWDLAxsgH_kG7op-8,2559
|
|
136
|
+
engine/schema/orchestration.schema.json,sha256=j5wSukBxHcXgVpJT6xin3MYtJVbxea9UaLA46xaV3Ts,4446
|
|
137
|
+
engine/schema/prompt.schema.json,sha256=800e0qjLqsZGjot-VvnnyXYqNJVvwRSFN8FC7DkqJU0,3329
|
|
138
|
+
engine/schema/rag.schema.json,sha256=SW3NMyjnLIW9sPjAQqH1tsdSuIY0T2S_MnBJyv613uU,4503
|
|
139
|
+
engine/schema/template.schema.json,sha256=SpALMCVdxMZqucZOwHv903bSqJo9puIQE4uuXrkuBxQ,3449
|
|
140
|
+
engine/schema/tool.schema.json,sha256=6SF_5ctBDDyxiB96a46Szw574eFpnmQNVeah7WoHyN0,2675
|
|
141
|
+
engine/secrets/__init__.py,sha256=_RD2cPdPAtd015fOaH0wMIYGtz45iIReeZJTV1Edo9I,295
|
|
142
|
+
engine/secrets/aws_backend.py,sha256=Xh1wrUMOB07gCkHSS6S6fxFKqvwUhfzDsyfY6U8DqpQ,5348
|
|
143
|
+
engine/secrets/base.py,sha256=svzK5aUIxLxSt1ymwHtXHfTqfy5szH3HTSTKLc-7IFE,2279
|
|
144
|
+
engine/secrets/env_backend.py,sha256=FSTmBHOwrfYhHq1gz6JqXrPvib1e8RUIe5BZNQMIpkE,4556
|
|
145
|
+
engine/secrets/factory.py,sha256=dLvN8COJrAiw1Tw_GBWd-umvjIZlwz0TANG3bn6n4jg,3697
|
|
146
|
+
engine/secrets/gcp_backend.py,sha256=ZaisxlYQXtG7gw29qn5BQicjC6yNdqNGRs6m7JNRx0E,5910
|
|
147
|
+
engine/secrets/vault_backend.py,sha256=Ii7rpAxi2ZgXXqaA6yZJUuyZlbKpfvQSiYy89ZZisUI,4386
|
|
148
|
+
registry/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
149
|
+
registry/a2a_agents.py,sha256=YtRMfEA5r7QN8q50pvWmd_VSOXCdaVagf-RyBb6IASA,4102
|
|
150
|
+
registry/agents.py,sha256=C6OSzPiy_Se0Fm96QFwadv4BHOYDhw8euAUazVEGhHo,12120
|
|
151
|
+
registry/deploys.py,sha256=-D5H7JS4bQRKEDieWxtltZTvWylthyb2ub3T8cR0g_k,1747
|
|
152
|
+
registry/mcp_servers.py,sha256=QCY0fIaiW7kkBzxyIJn4E28DUoER7aBpJvCSQxbjWiE,9441
|
|
153
|
+
registry/models.py,sha256=_CF74QASQDsw7vqFxMaehWdIFpesRhh6F9hcQcgiPaw,5965
|
|
154
|
+
registry/prompts.py,sha256=bxQc6HVGX9GxVI5qW2d2TIxopCd-Ff9nn1Y2tQNybWk,10950
|
|
155
|
+
registry/providers.py,sha256=FjO22Pou1kVWD9x0BQeZjj_NUMPz_kMAHhfECcLwcaQ,15982
|
|
156
|
+
registry/templates.py,sha256=Jvq2-PZuRlOlJ7_N3BWaqiQ0dedGfDOB4ra8KXdfV8k,12114
|
|
157
|
+
registry/tools.py,sha256=85T5MCRBU51D7ORbnD_prUDxZJY6nx9kn6TX7dg8Hgk,4885
|
|
158
|
+
agentbreeder-0.1.0.dist-info/METADATA,sha256=nIkHXMT53qNe8VtmvKkzHxRF6jT6pcP5o-sdJU4ruW0,14884
|
|
159
|
+
agentbreeder-0.1.0.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
|
|
160
|
+
agentbreeder-0.1.0.dist-info/entry_points.txt,sha256=_QGTU75kbesSMVkWvgnRSt0ZjrjnEtO6BF2Xpr4LbsY,46
|
|
161
|
+
agentbreeder-0.1.0.dist-info/licenses/LICENSE,sha256=UApAfciIKYjEjO72JroRvBamTnIIFFKrJDayN7aX68k,10777
|
|
162
|
+
agentbreeder-0.1.0.dist-info/RECORD,,
|