open-swarm 0.1.1745274515__py3-none-any.whl → 0.1.1745274942__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.1745274515.dist-info → open_swarm-0.1.1745274942.dist-info}/METADATA +1 -1
- {open_swarm-0.1.1745274515.dist-info → open_swarm-0.1.1745274942.dist-info}/RECORD +22 -10
- swarm/blueprints/chatbot/README.md +40 -0
- swarm/blueprints/chatbot/blueprint_chatbot.py +321 -170
- swarm/blueprints/chatbot/metadata.json +23 -0
- swarm/blueprints/chucks_angels/README.md +11 -0
- swarm/blueprints/chucks_angels/blueprint_chucks_angels.py +7 -0
- swarm/blueprints/chucks_angels/test_basic.py +3 -0
- swarm/blueprints/digitalbutlers/README.md +11 -0
- swarm/blueprints/digitalbutlers/__init__.py +1 -0
- swarm/blueprints/digitalbutlers/blueprint_digitalbutlers.py +4 -23
- swarm/blueprints/digitalbutlers/test_basic.py +3 -0
- swarm/blueprints/divine_code/README.md +3 -0
- swarm/blueprints/divine_code/__init__.py +10 -0
- swarm/blueprints/divine_code/blueprint_divine_code.py +249 -469
- swarm/blueprints/flock/README.md +11 -0
- swarm/blueprints/flock/__init__.py +8 -0
- swarm/blueprints/flock/blueprint_flock.py +7 -0
- swarm/blueprints/flock/test_basic.py +3 -0
- {open_swarm-0.1.1745274515.dist-info → open_swarm-0.1.1745274942.dist-info}/WHEEL +0 -0
- {open_swarm-0.1.1745274515.dist-info → open_swarm-0.1.1745274942.dist-info}/entry_points.txt +0 -0
- {open_swarm-0.1.1745274515.dist-info → open_swarm-0.1.1745274942.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,8 @@
|
|
1
|
+
# Enhanced search/analysis UX: show ANSI/emoji boxes, summarize results, show result counts, display params, update line numbers, distinguish code/semantic
|
2
|
+
# This is a stub for flock blueprint search/analysis UX. (If this blueprint is implemented, the run method should follow the unified UX pattern.)
|
3
|
+
|
4
|
+
# No run method in __init__.py, but if/when a blueprint is implemented here, ensure:
|
5
|
+
# - Support for both code and semantic search (with clear output distinction)
|
6
|
+
# - ANSI/emoji boxes for search/analysis, with result counts, search params, and progress
|
7
|
+
# - Creative output box for non-search/agent output
|
8
|
+
# - Spinner states: 'Generating.', 'Generating..', 'Generating...', 'Running...'
|
File without changes
|
{open_swarm-0.1.1745274515.dist-info → open_swarm-0.1.1745274942.dist-info}/entry_points.txt
RENAMED
File without changes
|
{open_swarm-0.1.1745274515.dist-info → open_swarm-0.1.1745274942.dist-info}/licenses/LICENSE
RENAMED
File without changes
|