open-swarm 0.1.1745274515__py3-none-any.whl → 0.1.1745274976__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.
Files changed (25) hide show
  1. {open_swarm-0.1.1745274515.dist-info → open_swarm-0.1.1745274976.dist-info}/METADATA +1 -1
  2. {open_swarm-0.1.1745274515.dist-info → open_swarm-0.1.1745274976.dist-info}/RECORD +25 -11
  3. swarm/blueprints/chatbot/README.md +40 -0
  4. swarm/blueprints/chatbot/blueprint_chatbot.py +321 -170
  5. swarm/blueprints/chatbot/metadata.json +23 -0
  6. swarm/blueprints/chucks_angels/README.md +11 -0
  7. swarm/blueprints/chucks_angels/blueprint_chucks_angels.py +7 -0
  8. swarm/blueprints/chucks_angels/test_basic.py +3 -0
  9. swarm/blueprints/digitalbutlers/README.md +11 -0
  10. swarm/blueprints/digitalbutlers/__init__.py +1 -0
  11. swarm/blueprints/digitalbutlers/blueprint_digitalbutlers.py +4 -23
  12. swarm/blueprints/digitalbutlers/test_basic.py +3 -0
  13. swarm/blueprints/divine_code/README.md +3 -0
  14. swarm/blueprints/divine_code/__init__.py +10 -0
  15. swarm/blueprints/divine_code/blueprint_divine_code.py +249 -469
  16. swarm/blueprints/flock/README.md +11 -0
  17. swarm/blueprints/flock/__init__.py +8 -0
  18. swarm/blueprints/flock/blueprint_flock.py +7 -0
  19. swarm/blueprints/flock/test_basic.py +3 -0
  20. swarm/blueprints/jeeves/README.md +41 -0
  21. swarm/blueprints/jeeves/blueprint_jeeves.py +528 -518
  22. swarm/blueprints/jeeves/metadata.json +24 -0
  23. {open_swarm-0.1.1745274515.dist-info → open_swarm-0.1.1745274976.dist-info}/WHEEL +0 -0
  24. {open_swarm-0.1.1745274515.dist-info → open_swarm-0.1.1745274976.dist-info}/entry_points.txt +0 -0
  25. {open_swarm-0.1.1745274515.dist-info → open_swarm-0.1.1745274976.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
+ }