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.
Files changed (38) hide show
  1. {axel_protocol-2.3.3 → axel_protocol-2.3.4}/PKG-INFO +1 -1
  2. {axel_protocol-2.3.3 → axel_protocol-2.3.4}/axel/cli.py +7 -7
  3. {axel_protocol-2.3.3 → axel_protocol-2.3.4}/pyproject.toml +1 -1
  4. {axel_protocol-2.3.3 → axel_protocol-2.3.4}/.github/workflows/ci.yml +0 -0
  5. {axel_protocol-2.3.3 → axel_protocol-2.3.4}/.github/workflows/publish.yml +0 -0
  6. {axel_protocol-2.3.3 → axel_protocol-2.3.4}/.gitignore +0 -0
  7. {axel_protocol-2.3.3 → axel_protocol-2.3.4}/CHANGELOG.md +0 -0
  8. {axel_protocol-2.3.3 → axel_protocol-2.3.4}/CONTRIBUTING.md +0 -0
  9. {axel_protocol-2.3.3 → axel_protocol-2.3.4}/Dockerfile +0 -0
  10. {axel_protocol-2.3.3 → axel_protocol-2.3.4}/LICENSE +0 -0
  11. {axel_protocol-2.3.3 → axel_protocol-2.3.4}/README.md +0 -0
  12. {axel_protocol-2.3.3 → axel_protocol-2.3.4}/axel/__init__.py +0 -0
  13. {axel_protocol-2.3.3 → axel_protocol-2.3.4}/axel/adapters/__init__.py +0 -0
  14. {axel_protocol-2.3.3 → axel_protocol-2.3.4}/axel/adapters/bedrock.py +0 -0
  15. {axel_protocol-2.3.3 → axel_protocol-2.3.4}/axel/adapters/cohere.py +0 -0
  16. {axel_protocol-2.3.3 → axel_protocol-2.3.4}/axel/adapters/gemini.py +0 -0
  17. {axel_protocol-2.3.3 → axel_protocol-2.3.4}/axel/adapters/groq.py +0 -0
  18. {axel_protocol-2.3.3 → axel_protocol-2.3.4}/axel/adapters/litellm.py +0 -0
  19. {axel_protocol-2.3.3 → axel_protocol-2.3.4}/axel/adapters/mistral.py +0 -0
  20. {axel_protocol-2.3.3 → axel_protocol-2.3.4}/axel/adapters/together.py +0 -0
  21. {axel_protocol-2.3.3 → axel_protocol-2.3.4}/axel/client.py +0 -0
  22. {axel_protocol-2.3.3 → axel_protocol-2.3.4}/axel/core.py +0 -0
  23. {axel_protocol-2.3.3 → axel_protocol-2.3.4}/axel/learning.py +0 -0
  24. {axel_protocol-2.3.3 → axel_protocol-2.3.4}/axel/persistence.py +0 -0
  25. {axel_protocol-2.3.3 → axel_protocol-2.3.4}/axel/server.py +0 -0
  26. {axel_protocol-2.3.3 → axel_protocol-2.3.4}/axel/static/monitor.html +0 -0
  27. {axel_protocol-2.3.3 → axel_protocol-2.3.4}/axel/testing.py +0 -0
  28. {axel_protocol-2.3.3 → axel_protocol-2.3.4}/axel/universal.py +0 -0
  29. {axel_protocol-2.3.3 → axel_protocol-2.3.4}/docker-compose.yml +0 -0
  30. {axel_protocol-2.3.3 → axel_protocol-2.3.4}/docs/message-schemas.md +0 -0
  31. {axel_protocol-2.3.3 → axel_protocol-2.3.4}/examples/demo_live.py +0 -0
  32. {axel_protocol-2.3.3 → axel_protocol-2.3.4}/install.sh +0 -0
  33. {axel_protocol-2.3.3 → axel_protocol-2.3.4}/tests/__init__.py +0 -0
  34. {axel_protocol-2.3.3 → axel_protocol-2.3.4}/tests/test_adapters.py +0 -0
  35. {axel_protocol-2.3.3 → axel_protocol-2.3.4}/tests/test_client.py +0 -0
  36. {axel_protocol-2.3.3 → axel_protocol-2.3.4}/tests/test_core.py +0 -0
  37. {axel_protocol-2.3.3 → axel_protocol-2.3.4}/tests/test_new_features.py +0 -0
  38. {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
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-1.5", # quick pattern synthesis
492
- "fact-checker": "mistralai/mistral-large", # rigorous verification
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
- """5-agent pipeline demo: planner → researcher → analyst → writer → reviewer."""
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 — 5-agent pipeline")
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 5 agents ─────────────────────────────────────
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 5 agents…")
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 5-agent pipeline demo (needs OPENROUTER_API_KEY)")
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",
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "axel-protocol"
7
- version = "2.3.3"
7
+ version = "2.3.4"
8
8
  description = "AXEL — Agent eXchange Language: a universal protocol for multi-LLM networks"
9
9
  readme = "README.md"
10
10
  license = { file = "LICENSE" }
File without changes
File without changes
File without changes
File without changes
File without changes