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.
- {axio-0.4.0 → axio-0.4.1}/PKG-INFO +2 -3
- {axio-0.4.0 → axio-0.4.1}/README.md +1 -2
- {axio-0.4.0 → axio-0.4.1}/pyproject.toml +1 -1
- {axio-0.4.0 → axio-0.4.1}/.github/workflows/publish.yml +0 -0
- {axio-0.4.0 → axio-0.4.1}/.github/workflows/tests.yml +0 -0
- {axio-0.4.0 → axio-0.4.1}/.gitignore +0 -0
- {axio-0.4.0 → axio-0.4.1}/LICENSE +0 -0
- {axio-0.4.0 → axio-0.4.1}/Makefile +0 -0
- {axio-0.4.0 → axio-0.4.1}/src/axio/__init__.py +0 -0
- {axio-0.4.0 → axio-0.4.1}/src/axio/agent.py +0 -0
- {axio-0.4.0 → axio-0.4.1}/src/axio/blocks.py +0 -0
- {axio-0.4.0 → axio-0.4.1}/src/axio/context.py +0 -0
- {axio-0.4.0 → axio-0.4.1}/src/axio/events.py +0 -0
- {axio-0.4.0 → axio-0.4.1}/src/axio/exceptions.py +0 -0
- {axio-0.4.0 → axio-0.4.1}/src/axio/messages.py +0 -0
- {axio-0.4.0 → axio-0.4.1}/src/axio/models.py +0 -0
- {axio-0.4.0 → axio-0.4.1}/src/axio/permission.py +0 -0
- {axio-0.4.0 → axio-0.4.1}/src/axio/py.typed +0 -0
- {axio-0.4.0 → axio-0.4.1}/src/axio/selector.py +0 -0
- {axio-0.4.0 → axio-0.4.1}/src/axio/stream.py +0 -0
- {axio-0.4.0 → axio-0.4.1}/src/axio/testing.py +0 -0
- {axio-0.4.0 → axio-0.4.1}/src/axio/tool.py +0 -0
- {axio-0.4.0 → axio-0.4.1}/src/axio/tool_args.py +0 -0
- {axio-0.4.0 → axio-0.4.1}/src/axio/transport.py +0 -0
- {axio-0.4.0 → axio-0.4.1}/src/axio/types.py +0 -0
- {axio-0.4.0 → axio-0.4.1}/tests/conftest.py +0 -0
- {axio-0.4.0 → axio-0.4.1}/tests/test_agent_branch.py +0 -0
- {axio-0.4.0 → axio-0.4.1}/tests/test_agent_permission.py +0 -0
- {axio-0.4.0 → axio-0.4.1}/tests/test_agent_run.py +0 -0
- {axio-0.4.0 → axio-0.4.1}/tests/test_agent_stream.py +0 -0
- {axio-0.4.0 → axio-0.4.1}/tests/test_agent_tools.py +0 -0
- {axio-0.4.0 → axio-0.4.1}/tests/test_blocks.py +0 -0
- {axio-0.4.0 → axio-0.4.1}/tests/test_context.py +0 -0
- {axio-0.4.0 → axio-0.4.1}/tests/test_events.py +0 -0
- {axio-0.4.0 → axio-0.4.1}/tests/test_exceptions.py +0 -0
- {axio-0.4.0 → axio-0.4.1}/tests/test_permission.py +0 -0
- {axio-0.4.0 → axio-0.4.1}/tests/test_stream.py +0 -0
- {axio-0.4.0 → axio-0.4.1}/tests/test_tool.py +0 -0
- {axio-0.4.0 → axio-0.4.1}/tests/test_tool_args.py +0 -0
- {axio-0.4.0 → axio-0.4.1}/tests/test_transport.py +0 -0
- {axio-0.4.0 → axio-0.4.1}/tests/test_types.py +0 -0
- {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.
|
|
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 |
|
|
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
|