axio 0.9.6__tar.gz → 0.9.8__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 (57) hide show
  1. {axio-0.9.6 → axio-0.9.8}/PKG-INFO +1 -1
  2. {axio-0.9.6 → axio-0.9.8}/pyproject.toml +1 -1
  3. {axio-0.9.6 → axio-0.9.8}/src/axio/agent.py +2 -4
  4. {axio-0.9.6 → axio-0.9.8}/.github/workflows/publish.yml +0 -0
  5. {axio-0.9.6 → axio-0.9.8}/.github/workflows/tests.yml +0 -0
  6. {axio-0.9.6 → axio-0.9.8}/.gitignore +0 -0
  7. {axio-0.9.6 → axio-0.9.8}/LICENSE +0 -0
  8. {axio-0.9.6 → axio-0.9.8}/Makefile +0 -0
  9. {axio-0.9.6 → axio-0.9.8}/README.md +0 -0
  10. {axio-0.9.6 → axio-0.9.8}/src/axio/__init__.py +0 -0
  11. {axio-0.9.6 → axio-0.9.8}/src/axio/agent_loader.py +0 -0
  12. {axio-0.9.6 → axio-0.9.8}/src/axio/blocks.py +0 -0
  13. {axio-0.9.6 → axio-0.9.8}/src/axio/compaction.py +0 -0
  14. {axio-0.9.6 → axio-0.9.8}/src/axio/context.py +0 -0
  15. {axio-0.9.6 → axio-0.9.8}/src/axio/events.py +0 -0
  16. {axio-0.9.6 → axio-0.9.8}/src/axio/exceptions.py +0 -0
  17. {axio-0.9.6 → axio-0.9.8}/src/axio/field.py +0 -0
  18. {axio-0.9.6 → axio-0.9.8}/src/axio/messages.py +0 -0
  19. {axio-0.9.6 → axio-0.9.8}/src/axio/models.py +0 -0
  20. {axio-0.9.6 → axio-0.9.8}/src/axio/permission.py +0 -0
  21. {axio-0.9.6 → axio-0.9.8}/src/axio/py.typed +0 -0
  22. {axio-0.9.6 → axio-0.9.8}/src/axio/realtime.py +0 -0
  23. {axio-0.9.6 → axio-0.9.8}/src/axio/schema.py +0 -0
  24. {axio-0.9.6 → axio-0.9.8}/src/axio/selector.py +0 -0
  25. {axio-0.9.6 → axio-0.9.8}/src/axio/stream.py +0 -0
  26. {axio-0.9.6 → axio-0.9.8}/src/axio/testing.py +0 -0
  27. {axio-0.9.6 → axio-0.9.8}/src/axio/tool.py +0 -0
  28. {axio-0.9.6 → axio-0.9.8}/src/axio/tool_args.py +0 -0
  29. {axio-0.9.6 → axio-0.9.8}/src/axio/transport.py +0 -0
  30. {axio-0.9.6 → axio-0.9.8}/src/axio/types.py +0 -0
  31. {axio-0.9.6 → axio-0.9.8}/tests/conftest.py +0 -0
  32. {axio-0.9.6 → axio-0.9.8}/tests/test_agent_branch.py +0 -0
  33. {axio-0.9.6 → axio-0.9.8}/tests/test_agent_capabilities.py +0 -0
  34. {axio-0.9.6 → axio-0.9.8}/tests/test_agent_loader.py +0 -0
  35. {axio-0.9.6 → axio-0.9.8}/tests/test_agent_permission.py +0 -0
  36. {axio-0.9.6 → axio-0.9.8}/tests/test_agent_run.py +0 -0
  37. {axio-0.9.6 → axio-0.9.8}/tests/test_agent_stream.py +0 -0
  38. {axio-0.9.6 → axio-0.9.8}/tests/test_agent_tools.py +0 -0
  39. {axio-0.9.6 → axio-0.9.8}/tests/test_blocks.py +0 -0
  40. {axio-0.9.6 → axio-0.9.8}/tests/test_compaction.py +0 -0
  41. {axio-0.9.6 → axio-0.9.8}/tests/test_context.py +0 -0
  42. {axio-0.9.6 → axio-0.9.8}/tests/test_events.py +0 -0
  43. {axio-0.9.6 → axio-0.9.8}/tests/test_exceptions.py +0 -0
  44. {axio-0.9.6 → axio-0.9.8}/tests/test_field.py +0 -0
  45. {axio-0.9.6 → axio-0.9.8}/tests/test_init.py +0 -0
  46. {axio-0.9.6 → axio-0.9.8}/tests/test_models.py +0 -0
  47. {axio-0.9.6 → axio-0.9.8}/tests/test_permission.py +0 -0
  48. {axio-0.9.6 → axio-0.9.8}/tests/test_realtime.py +0 -0
  49. {axio-0.9.6 → axio-0.9.8}/tests/test_schema.py +0 -0
  50. {axio-0.9.6 → axio-0.9.8}/tests/test_selector.py +0 -0
  51. {axio-0.9.6 → axio-0.9.8}/tests/test_stream.py +0 -0
  52. {axio-0.9.6 → axio-0.9.8}/tests/test_testing.py +0 -0
  53. {axio-0.9.6 → axio-0.9.8}/tests/test_tool.py +0 -0
  54. {axio-0.9.6 → axio-0.9.8}/tests/test_tool_args.py +0 -0
  55. {axio-0.9.6 → axio-0.9.8}/tests/test_transport.py +0 -0
  56. {axio-0.9.6 → axio-0.9.8}/tests/test_types.py +0 -0
  57. {axio-0.9.6 → axio-0.9.8}/uv.lock +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: axio
3
- Version: 0.9.6
3
+ Version: 0.9.8
4
4
  Summary: Minimal, streaming-first, protocol-driven foundation for LLM-powered agents
5
5
  Project-URL: Documentation, https://docs.axio-agent.com
6
6
  Project-URL: Homepage, https://github.com/mosquito/axio-agent
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "axio"
3
- version = "0.9.6" # bumped to the git tag by CI on publish
3
+ version = "0.9.8" # bumped to the git tag by CI on publish
4
4
  description = "Minimal, streaming-first, protocol-driven foundation for LLM-powered agents"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.12"
@@ -139,8 +139,7 @@ class Agent:
139
139
  return await self.run_stream(user_message, context).get_final_text()
140
140
 
141
141
  async def dispatch_tools(self, blocks: list[ToolUseBlock], iteration: int) -> list[ToolResultBlock]:
142
- tool_names = [b.name for b in blocks]
143
- logger.info("Dispatching %d tool(s): %s", len(blocks), tool_names)
142
+ logger.info("Dispatching %d tool(s): %r", len(blocks), blocks)
144
143
 
145
144
  async def _run_one(block: ToolUseBlock) -> ToolResultBlock:
146
145
  tool = self._find_tool(block.name)
@@ -173,8 +172,7 @@ class Agent:
173
172
  output_queue: asyncio.Queue[ToolOutputDelta | None],
174
173
  ) -> list[ToolResultBlock]:
175
174
  """Like dispatch_tools but pushes ToolOutputDelta events for streaming tools."""
176
- tool_names = [b.name for b in blocks]
177
- logger.info("Dispatching %d tool(s) with streaming: %s", len(blocks), tool_names)
175
+ logger.info("Dispatching %d tool(s) with streaming: %r", len(blocks), blocks)
178
176
 
179
177
  async def _run_one(block: ToolUseBlock) -> ToolResultBlock:
180
178
  tool = self._find_tool(block.name)
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
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