axio 0.4.0__tar.gz → 0.4.1__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 (42) hide show
  1. {axio-0.4.0 → axio-0.4.1}/PKG-INFO +2 -3
  2. {axio-0.4.0 → axio-0.4.1}/README.md +1 -2
  3. {axio-0.4.0 → axio-0.4.1}/pyproject.toml +1 -1
  4. {axio-0.4.0 → axio-0.4.1}/.github/workflows/publish.yml +0 -0
  5. {axio-0.4.0 → axio-0.4.1}/.github/workflows/tests.yml +0 -0
  6. {axio-0.4.0 → axio-0.4.1}/.gitignore +0 -0
  7. {axio-0.4.0 → axio-0.4.1}/LICENSE +0 -0
  8. {axio-0.4.0 → axio-0.4.1}/Makefile +0 -0
  9. {axio-0.4.0 → axio-0.4.1}/src/axio/__init__.py +0 -0
  10. {axio-0.4.0 → axio-0.4.1}/src/axio/agent.py +0 -0
  11. {axio-0.4.0 → axio-0.4.1}/src/axio/blocks.py +0 -0
  12. {axio-0.4.0 → axio-0.4.1}/src/axio/context.py +0 -0
  13. {axio-0.4.0 → axio-0.4.1}/src/axio/events.py +0 -0
  14. {axio-0.4.0 → axio-0.4.1}/src/axio/exceptions.py +0 -0
  15. {axio-0.4.0 → axio-0.4.1}/src/axio/messages.py +0 -0
  16. {axio-0.4.0 → axio-0.4.1}/src/axio/models.py +0 -0
  17. {axio-0.4.0 → axio-0.4.1}/src/axio/permission.py +0 -0
  18. {axio-0.4.0 → axio-0.4.1}/src/axio/py.typed +0 -0
  19. {axio-0.4.0 → axio-0.4.1}/src/axio/selector.py +0 -0
  20. {axio-0.4.0 → axio-0.4.1}/src/axio/stream.py +0 -0
  21. {axio-0.4.0 → axio-0.4.1}/src/axio/testing.py +0 -0
  22. {axio-0.4.0 → axio-0.4.1}/src/axio/tool.py +0 -0
  23. {axio-0.4.0 → axio-0.4.1}/src/axio/tool_args.py +0 -0
  24. {axio-0.4.0 → axio-0.4.1}/src/axio/transport.py +0 -0
  25. {axio-0.4.0 → axio-0.4.1}/src/axio/types.py +0 -0
  26. {axio-0.4.0 → axio-0.4.1}/tests/conftest.py +0 -0
  27. {axio-0.4.0 → axio-0.4.1}/tests/test_agent_branch.py +0 -0
  28. {axio-0.4.0 → axio-0.4.1}/tests/test_agent_permission.py +0 -0
  29. {axio-0.4.0 → axio-0.4.1}/tests/test_agent_run.py +0 -0
  30. {axio-0.4.0 → axio-0.4.1}/tests/test_agent_stream.py +0 -0
  31. {axio-0.4.0 → axio-0.4.1}/tests/test_agent_tools.py +0 -0
  32. {axio-0.4.0 → axio-0.4.1}/tests/test_blocks.py +0 -0
  33. {axio-0.4.0 → axio-0.4.1}/tests/test_context.py +0 -0
  34. {axio-0.4.0 → axio-0.4.1}/tests/test_events.py +0 -0
  35. {axio-0.4.0 → axio-0.4.1}/tests/test_exceptions.py +0 -0
  36. {axio-0.4.0 → axio-0.4.1}/tests/test_permission.py +0 -0
  37. {axio-0.4.0 → axio-0.4.1}/tests/test_stream.py +0 -0
  38. {axio-0.4.0 → axio-0.4.1}/tests/test_tool.py +0 -0
  39. {axio-0.4.0 → axio-0.4.1}/tests/test_tool_args.py +0 -0
  40. {axio-0.4.0 → axio-0.4.1}/tests/test_transport.py +0 -0
  41. {axio-0.4.0 → axio-0.4.1}/tests/test_types.py +0 -0
  42. {axio-0.4.0 → axio-0.4.1}/uv.lock +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: axio
3
- Version: 0.4.0
3
+ Version: 0.4.1
4
4
  Summary: Minimal, streaming-first, protocol-driven foundation for LLM-powered agents
5
5
  Project-URL: Homepage, https://github.com/axio-agent/axio
6
6
  Project-URL: Repository, https://github.com/axio-agent/axio
@@ -203,8 +203,7 @@ my_guard = "my_package:MyGuard"
203
203
  | Package | Purpose |
204
204
  |---|---|
205
205
  | [axio-transport-anthropic](https://github.com/axio-agent/axio-transport-anthropic) | Anthropic Claude transport |
206
- | [axio-transport-openai](https://github.com/axio-agent/axio-transport-openai) | OpenAI-compatible transport |
207
- | [axio-transport-nebius](https://github.com/axio-agent/axio-transport-nebius) | Nebius AI Studio transport |
206
+ | [axio-transport-openai](https://github.com/axio-agent/axio-transport-openai) | OpenAI-compatible transport (OpenAI, Nebius, OpenRouter, custom) |
208
207
  | [axio-transport-codex](https://github.com/axio-agent/axio-transport-codex) | ChatGPT OAuth transport |
209
208
  | [axio-tools-local](https://github.com/axio-agent/axio-tools-local) | Shell, file, Python tools |
210
209
  | [axio-tools-mcp](https://github.com/axio-agent/axio-tools-mcp) | MCP server bridge |
@@ -190,8 +190,7 @@ my_guard = "my_package:MyGuard"
190
190
  | Package | Purpose |
191
191
  |---|---|
192
192
  | [axio-transport-anthropic](https://github.com/axio-agent/axio-transport-anthropic) | Anthropic Claude transport |
193
- | [axio-transport-openai](https://github.com/axio-agent/axio-transport-openai) | OpenAI-compatible transport |
194
- | [axio-transport-nebius](https://github.com/axio-agent/axio-transport-nebius) | Nebius AI Studio transport |
193
+ | [axio-transport-openai](https://github.com/axio-agent/axio-transport-openai) | OpenAI-compatible transport (OpenAI, Nebius, OpenRouter, custom) |
195
194
  | [axio-transport-codex](https://github.com/axio-agent/axio-transport-codex) | ChatGPT OAuth transport |
196
195
  | [axio-tools-local](https://github.com/axio-agent/axio-tools-local) | Shell, file, Python tools |
197
196
  | [axio-tools-mcp](https://github.com/axio-agent/axio-tools-mcp) | MCP server bridge |
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "axio"
3
- version = "0.4.0"
3
+ version = "0.4.1"
4
4
  description = "Minimal, streaming-first, protocol-driven foundation for LLM-powered agents"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.12"
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