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.
- {open_swarm-0.1.1745274515.dist-info → open_swarm-0.1.1745274976.dist-info}/METADATA +1 -1
- {open_swarm-0.1.1745274515.dist-info → open_swarm-0.1.1745274976.dist-info}/RECORD +25 -11
- 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
- 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.1745274515.dist-info → open_swarm-0.1.1745274976.dist-info}/WHEEL +0 -0
- {open_swarm-0.1.1745274515.dist-info → open_swarm-0.1.1745274976.dist-info}/entry_points.txt +0 -0
- {open_swarm-0.1.1745274515.dist-info → open_swarm-0.1.1745274976.dist-info}/licenses/LICENSE +0 -0
@@ -1,26 +1,7 @@
|
|
1
1
|
"""
|
2
|
-
DigitalButlers Blueprint
|
3
|
-
This file exists to resolve import errors in tests and integration scripts.
|
4
|
-
Replace with actual implementation as needed.
|
2
|
+
DigitalButlers Blueprint (stub)
|
5
3
|
"""
|
6
4
|
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
def __init__(self, blueprint_id: str = "digitalbutlers", config=None, config_path=None, **kwargs):
|
11
|
-
super().__init__(blueprint_id, config=config, config_path=config_path, **kwargs)
|
12
|
-
self.blueprint_id = blueprint_id
|
13
|
-
self.config_path = config_path
|
14
|
-
self._config = config if config is not None else None
|
15
|
-
self._llm_profile_name = None
|
16
|
-
self._llm_profile_data = None
|
17
|
-
self._markdown_output = None
|
18
|
-
# Add other attributes as needed for DigitalButlers
|
19
|
-
# ...
|
20
|
-
|
21
|
-
def run(self, *args, **kwargs):
|
22
|
-
return {"status": "DigitalButlersBlueprint stub running."}
|
23
|
-
|
24
|
-
def create_starting_agent(self, mcp_servers=None):
|
25
|
-
# Stub: return a dummy agent or None, as required by tests
|
26
|
-
return None
|
5
|
+
class DigitalButlersBlueprint:
|
6
|
+
"""Stub for DigitalButlers Blueprint."""
|
7
|
+
pass
|
@@ -0,0 +1,10 @@
|
|
1
|
+
# DEPRECATED: This package is superseded by Zeus. All logic and tests should be migrated to ZeusBlueprint. File retained for legacy reference only.
|
2
|
+
|
3
|
+
# Enhanced search/analysis UX: show ANSI/emoji boxes, summarize results, show result counts, display params, update line numbers, distinguish code/semantic
|
4
|
+
# This is a stub for divine_code blueprint search/analysis UX. (If this blueprint is implemented, the run method should follow the unified UX pattern.)
|
5
|
+
|
6
|
+
# No run method in __init__.py, but if/when a blueprint is implemented here, ensure:
|
7
|
+
# - Support for both code and semantic search (with clear output distinction)
|
8
|
+
# - ANSI/emoji boxes for search/analysis, with result counts, search params, and progress
|
9
|
+
# - Creative output box for non-search/agent output
|
10
|
+
# - Spinner states: 'Generating.', 'Generating..', 'Generating...', 'Running...'
|