open-swarm 0.1.1745274942__py3-none-any.whl → 0.1.1745275181__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.
- {open_swarm-0.1.1745274942.dist-info → open_swarm-0.1.1745275181.dist-info}/METADATA +1 -1
- {open_swarm-0.1.1745274942.dist-info → open_swarm-0.1.1745275181.dist-info}/RECORD +11 -8
- swarm/blueprints/geese/README.md +6 -93
- swarm/blueprints/geese/__init__.py +8 -0
- swarm/blueprints/geese/blueprint_geese.py +259 -678
- swarm/blueprints/jeeves/README.md +41 -0
- swarm/blueprints/jeeves/blueprint_jeeves.py +528 -518
- swarm/blueprints/jeeves/metadata.json +24 -0
- {open_swarm-0.1.1745274942.dist-info → open_swarm-0.1.1745275181.dist-info}/WHEEL +0 -0
- {open_swarm-0.1.1745274942.dist-info → open_swarm-0.1.1745275181.dist-info}/entry_points.txt +0 -0
- {open_swarm-0.1.1745274942.dist-info → open_swarm-0.1.1745275181.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,24 @@
|
|
1
|
+
{
|
2
|
+
"name": "JeevesBlueprint",
|
3
|
+
"title": "Jeeves: Multi-Agent Home & Web Orchestration",
|
4
|
+
"description": "Demonstrates agent-based delegation for web search and home automation, with ANSI/emoji UX, spinner feedback, and robust fallback for agent/LLM errors.",
|
5
|
+
"author": "Open Swarm Team",
|
6
|
+
"version": "1.1.0",
|
7
|
+
"tags": ["agentic", "multi-agent", "home automation", "web search", "UX", "fallback", "demo"],
|
8
|
+
"demonstrates": [
|
9
|
+
"Multi-agent delegation and orchestration",
|
10
|
+
"Web search and home automation via agents",
|
11
|
+
"LLM fallback and error handling",
|
12
|
+
"Unified ANSI/emoji output and spinner",
|
13
|
+
"Result summaries and fallback",
|
14
|
+
"Test mode for robust testing"
|
15
|
+
],
|
16
|
+
"compliance": {
|
17
|
+
"agentic": true,
|
18
|
+
"ux_ansi_emoji": true,
|
19
|
+
"spinner": true,
|
20
|
+
"fallback": true,
|
21
|
+
"test_coverage": true
|
22
|
+
},
|
23
|
+
"last_updated": "2025-04-21T04:44:16Z"
|
24
|
+
}
|
File without changes
|
{open_swarm-0.1.1745274942.dist-info → open_swarm-0.1.1745275181.dist-info}/entry_points.txt
RENAMED
File without changes
|
{open_swarm-0.1.1745274942.dist-info → open_swarm-0.1.1745275181.dist-info}/licenses/LICENSE
RENAMED
File without changes
|