axel-protocol 2.3.3__tar.gz → 2.3.4__tar.gz
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.
- {axel_protocol-2.3.3 → axel_protocol-2.3.4}/PKG-INFO +1 -1
- {axel_protocol-2.3.3 → axel_protocol-2.3.4}/axel/cli.py +7 -7
- {axel_protocol-2.3.3 → axel_protocol-2.3.4}/pyproject.toml +1 -1
- {axel_protocol-2.3.3 → axel_protocol-2.3.4}/.github/workflows/ci.yml +0 -0
- {axel_protocol-2.3.3 → axel_protocol-2.3.4}/.github/workflows/publish.yml +0 -0
- {axel_protocol-2.3.3 → axel_protocol-2.3.4}/.gitignore +0 -0
- {axel_protocol-2.3.3 → axel_protocol-2.3.4}/CHANGELOG.md +0 -0
- {axel_protocol-2.3.3 → axel_protocol-2.3.4}/CONTRIBUTING.md +0 -0
- {axel_protocol-2.3.3 → axel_protocol-2.3.4}/Dockerfile +0 -0
- {axel_protocol-2.3.3 → axel_protocol-2.3.4}/LICENSE +0 -0
- {axel_protocol-2.3.3 → axel_protocol-2.3.4}/README.md +0 -0
- {axel_protocol-2.3.3 → axel_protocol-2.3.4}/axel/__init__.py +0 -0
- {axel_protocol-2.3.3 → axel_protocol-2.3.4}/axel/adapters/__init__.py +0 -0
- {axel_protocol-2.3.3 → axel_protocol-2.3.4}/axel/adapters/bedrock.py +0 -0
- {axel_protocol-2.3.3 → axel_protocol-2.3.4}/axel/adapters/cohere.py +0 -0
- {axel_protocol-2.3.3 → axel_protocol-2.3.4}/axel/adapters/gemini.py +0 -0
- {axel_protocol-2.3.3 → axel_protocol-2.3.4}/axel/adapters/groq.py +0 -0
- {axel_protocol-2.3.3 → axel_protocol-2.3.4}/axel/adapters/litellm.py +0 -0
- {axel_protocol-2.3.3 → axel_protocol-2.3.4}/axel/adapters/mistral.py +0 -0
- {axel_protocol-2.3.3 → axel_protocol-2.3.4}/axel/adapters/together.py +0 -0
- {axel_protocol-2.3.3 → axel_protocol-2.3.4}/axel/client.py +0 -0
- {axel_protocol-2.3.3 → axel_protocol-2.3.4}/axel/core.py +0 -0
- {axel_protocol-2.3.3 → axel_protocol-2.3.4}/axel/learning.py +0 -0
- {axel_protocol-2.3.3 → axel_protocol-2.3.4}/axel/persistence.py +0 -0
- {axel_protocol-2.3.3 → axel_protocol-2.3.4}/axel/server.py +0 -0
- {axel_protocol-2.3.3 → axel_protocol-2.3.4}/axel/static/monitor.html +0 -0
- {axel_protocol-2.3.3 → axel_protocol-2.3.4}/axel/testing.py +0 -0
- {axel_protocol-2.3.3 → axel_protocol-2.3.4}/axel/universal.py +0 -0
- {axel_protocol-2.3.3 → axel_protocol-2.3.4}/docker-compose.yml +0 -0
- {axel_protocol-2.3.3 → axel_protocol-2.3.4}/docs/message-schemas.md +0 -0
- {axel_protocol-2.3.3 → axel_protocol-2.3.4}/examples/demo_live.py +0 -0
- {axel_protocol-2.3.3 → axel_protocol-2.3.4}/install.sh +0 -0
- {axel_protocol-2.3.3 → axel_protocol-2.3.4}/tests/__init__.py +0 -0
- {axel_protocol-2.3.3 → axel_protocol-2.3.4}/tests/test_adapters.py +0 -0
- {axel_protocol-2.3.3 → axel_protocol-2.3.4}/tests/test_client.py +0 -0
- {axel_protocol-2.3.3 → axel_protocol-2.3.4}/tests/test_core.py +0 -0
- {axel_protocol-2.3.3 → axel_protocol-2.3.4}/tests/test_new_features.py +0 -0
- {axel_protocol-2.3.3 → axel_protocol-2.3.4}/tests/test_server.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: axel-protocol
|
|
3
|
-
Version: 2.3.
|
|
3
|
+
Version: 2.3.4
|
|
4
4
|
Summary: AXEL — Agent eXchange Language: a universal protocol for multi-LLM networks
|
|
5
5
|
Project-URL: Homepage, https://github.com/sectorx/axel-protocol
|
|
6
6
|
Project-URL: Repository, https://github.com/sectorx/axel-protocol
|
|
@@ -488,8 +488,8 @@ _FREE_MODELS = [
|
|
|
488
488
|
_SPECIALIST_MODELS = {
|
|
489
489
|
"planner": "anthropic/claude-3-5-haiku", # fast, great at structured breakdown
|
|
490
490
|
"researcher": "openai/gpt-4o-mini", # strong retrieval + summarisation
|
|
491
|
-
"analyst": "google/gemini-flash-
|
|
492
|
-
"fact-checker": "mistralai/mistral-large",
|
|
491
|
+
"analyst": "google/gemini-2.0-flash-001", # quick pattern synthesis (updated ID)
|
|
492
|
+
"fact-checker": "mistralai/mistral-large-2411", # rigorous verification (pinned version)
|
|
493
493
|
"writer": "anthropic/claude-3-5-sonnet", # best prose quality
|
|
494
494
|
"devil-advocate": "meta-llama/llama-3.3-70b-instruct", # challenges assumptions
|
|
495
495
|
"summarizer": "qwen/qwen-2.5-72b-instruct", # distills to essence
|
|
@@ -594,7 +594,7 @@ _MOCK_RESPONSES = {
|
|
|
594
594
|
|
|
595
595
|
|
|
596
596
|
def cmd_demo(args): # noqa: C901
|
|
597
|
-
"""
|
|
597
|
+
"""8-agent pipeline demo: planner → researcher → analyst → fact-checker → writer → devil-advocate → summarizer → reviewer."""
|
|
598
598
|
import webbrowser
|
|
599
599
|
import time
|
|
600
600
|
import urllib.request as _ur
|
|
@@ -637,11 +637,11 @@ def cmd_demo(args): # noqa: C901
|
|
|
637
637
|
return
|
|
638
638
|
print(" ✓ Server ready!")
|
|
639
639
|
|
|
640
|
-
print(f"\n 🚀 AXEL Demo —
|
|
640
|
+
print(f"\n 🚀 AXEL Demo — 8-agent pipeline")
|
|
641
641
|
webbrowser.open(f"{server}/ui")
|
|
642
642
|
time.sleep(1.5)
|
|
643
643
|
|
|
644
|
-
# ── Register all
|
|
644
|
+
# ── Register all 8 agents ─────────────────────────────────────
|
|
645
645
|
AGENTS = [
|
|
646
646
|
("planner", ["plan", "breakdown"], "🗺️"),
|
|
647
647
|
("researcher", ["research", "summarize"], "🔍"),
|
|
@@ -659,7 +659,7 @@ def cmd_demo(args): # noqa: C901
|
|
|
659
659
|
return single_model
|
|
660
660
|
return "auto/free"
|
|
661
661
|
|
|
662
|
-
print("\n Registering
|
|
662
|
+
print("\n Registering 8 agents…")
|
|
663
663
|
if multi_model:
|
|
664
664
|
print(" 🌐 Multi-model mode — each agent runs on its specialist LLM:")
|
|
665
665
|
elif single_model:
|
|
@@ -986,7 +986,7 @@ def build_parser() -> argparse.ArgumentParser:
|
|
|
986
986
|
help="Show only free-tier models")
|
|
987
987
|
|
|
988
988
|
# demo
|
|
989
|
-
pd = sub.add_parser("demo", help="Run
|
|
989
|
+
pd = sub.add_parser("demo", help="Run 8-agent pipeline demo (needs OPENROUTER_API_KEY)")
|
|
990
990
|
pd.add_argument("--mock", action="store_true",
|
|
991
991
|
help="Run with pre-written responses — no API key needed")
|
|
992
992
|
pd.add_argument("--loop", action="store_true",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|