axio-tui 0.3.4__tar.gz → 0.4.0__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_tui-0.3.4 → axio_tui-0.4.0}/PKG-INFO +7 -3
- {axio_tui-0.3.4 → axio_tui-0.4.0}/README.md +3 -2
- {axio_tui-0.3.4 → axio_tui-0.4.0}/pyproject.toml +4 -3
- {axio_tui-0.3.4 → axio_tui-0.4.0}/src/axio_tui/app.py +281 -158
- {axio_tui-0.3.4 → axio_tui-0.4.0}/src/axio_tui/plugin.py +36 -0
- {axio_tui-0.3.4 → axio_tui-0.4.0}/src/axio_tui/screens.py +271 -59
- {axio_tui-0.3.4 → axio_tui-0.4.0}/src/axio_tui/transport_registry.py +62 -58
- {axio_tui-0.3.4 → axio_tui-0.4.0}/tests/test_guard_screens.py +35 -42
- {axio_tui-0.3.4 → axio_tui-0.4.0}/tests/test_plugin_toggle.py +51 -28
- {axio_tui-0.3.4 → axio_tui-0.4.0}/tests/test_transport_registry.py +95 -71
- {axio_tui-0.3.4 → axio_tui-0.4.0}/.github/workflows/publish.yml +0 -0
- {axio_tui-0.3.4 → axio_tui-0.4.0}/.github/workflows/tests.yml +0 -0
- {axio_tui-0.3.4 → axio_tui-0.4.0}/.gitignore +0 -0
- {axio_tui-0.3.4 → axio_tui-0.4.0}/LICENSE +0 -0
- {axio_tui-0.3.4 → axio_tui-0.4.0}/Makefile +0 -0
- {axio_tui-0.3.4 → axio_tui-0.4.0}/src/axio_tui/__init__.py +0 -0
- {axio_tui-0.3.4 → axio_tui-0.4.0}/src/axio_tui/__main__.py +0 -0
- {axio_tui-0.3.4 → axio_tui-0.4.0}/src/axio_tui/args.py +0 -0
- {axio_tui-0.3.4 → axio_tui-0.4.0}/src/axio_tui/prompt.py +0 -0
- {axio_tui-0.3.4 → axio_tui-0.4.0}/src/axio_tui/sqlite_context.py +0 -0
- {axio_tui-0.3.4 → axio_tui-0.4.0}/src/axio_tui/tools.py +0 -0
- {axio_tui-0.3.4 → axio_tui-0.4.0}/tests/conftest.py +0 -0
- {axio_tui-0.3.4 → axio_tui-0.4.0}/tests/test_nav.py +0 -0
- {axio_tui-0.3.4 → axio_tui-0.4.0}/tests/test_plugin.py +0 -0
- {axio_tui-0.3.4 → axio_tui-0.4.0}/tests/test_sqlite_context.py +0 -0
- {axio_tui-0.3.4 → axio_tui-0.4.0}/tests/test_tool_status_widget.py +0 -0
- {axio_tui-0.3.4 → axio_tui-0.4.0}/tests/test_tools.py +0 -0
- {axio_tui-0.3.4 → axio_tui-0.4.0}/uv.lock +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: axio-tui
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.4.0
|
|
4
4
|
Summary: Textual TUI application for Axio
|
|
5
5
|
Project-URL: Homepage, https://github.com/axio-agent/axio-tui
|
|
6
6
|
Project-URL: Repository, https://github.com/axio-agent/axio-tui
|
|
@@ -16,11 +16,14 @@ Requires-Dist: textual>=2.1.0
|
|
|
16
16
|
Provides-Extra: all
|
|
17
17
|
Requires-Dist: axio-tools-local; extra == 'all'
|
|
18
18
|
Requires-Dist: axio-tools-mcp; extra == 'all'
|
|
19
|
+
Requires-Dist: axio-transport-anthropic; extra == 'all'
|
|
19
20
|
Requires-Dist: axio-transport-codex; extra == 'all'
|
|
20
21
|
Requires-Dist: axio-transport-nebius; extra == 'all'
|
|
21
22
|
Requires-Dist: axio-transport-openai; extra == 'all'
|
|
22
23
|
Requires-Dist: axio-tui-guards; extra == 'all'
|
|
23
24
|
Requires-Dist: axio-tui-rag; extra == 'all'
|
|
25
|
+
Provides-Extra: anthropic
|
|
26
|
+
Requires-Dist: axio-transport-anthropic; extra == 'anthropic'
|
|
24
27
|
Provides-Extra: codex
|
|
25
28
|
Requires-Dist: axio-transport-codex; extra == 'codex'
|
|
26
29
|
Provides-Extra: guards
|
|
@@ -52,7 +55,7 @@ A full-featured terminal chat interface with session management, a plugin system
|
|
|
52
55
|
- **Plugin system** — transports, tools, and guards discovered automatically via entry points
|
|
53
56
|
- **Session management** — persistent SQLite-backed conversations; fork, switch, and resume sessions
|
|
54
57
|
- **Streaming UI** — text and tool calls rendered incrementally as they arrive
|
|
55
|
-
- **Multi-transport** — switch between OpenAI, Nebius, Codex, or any registered backend at runtime
|
|
58
|
+
- **Multi-transport** — switch between Anthropic, OpenAI, Nebius, Codex, or any registered backend at runtime
|
|
56
59
|
- **Sub-agent support** — the `subagent` tool lets the agent spin up nested agent sessions
|
|
57
60
|
- **Vision** — `vision` tool for image analysis (with compatible models)
|
|
58
61
|
- **Serveable** — `textual-serve` support for browser-based access
|
|
@@ -79,6 +82,7 @@ pip install "axio-tui[openai,local,mcp]"
|
|
|
79
82
|
|
|
80
83
|
| Extra | Installs |
|
|
81
84
|
|---|---|
|
|
85
|
+
| `anthropic` | axio-transport-anthropic |
|
|
82
86
|
| `openai` | axio-transport-openai |
|
|
83
87
|
| `nebius` | axio-transport-nebius |
|
|
84
88
|
| `codex` | axio-transport-codex |
|
|
@@ -154,7 +158,7 @@ textual-serve axio_tui.__main__:app
|
|
|
154
158
|
|
|
155
159
|
## Part of the axio ecosystem
|
|
156
160
|
|
|
157
|
-
[axio](https://github.com/axio-agent/axio) · [axio-tui-rag](https://github.com/axio-agent/axio-tui-rag) · [axio-tui-guards](https://github.com/axio-agent/axio-tui-guards) · [axio-tools-local](https://github.com/axio-agent/axio-tools-local) · [axio-tools-mcp](https://github.com/axio-agent/axio-tools-mcp) · [axio-tools-docker](https://github.com/axio-agent/axio-tools-docker)
|
|
161
|
+
[axio](https://github.com/axio-agent/axio) · [axio-transport-anthropic](https://github.com/axio-agent/axio-transport-anthropic) · [axio-tui-rag](https://github.com/axio-agent/axio-tui-rag) · [axio-tui-guards](https://github.com/axio-agent/axio-tui-guards) · [axio-tools-local](https://github.com/axio-agent/axio-tools-local) · [axio-tools-mcp](https://github.com/axio-agent/axio-tools-mcp) · [axio-tools-docker](https://github.com/axio-agent/axio-tools-docker)
|
|
158
162
|
|
|
159
163
|
## License
|
|
160
164
|
|
|
@@ -13,7 +13,7 @@ A full-featured terminal chat interface with session management, a plugin system
|
|
|
13
13
|
- **Plugin system** — transports, tools, and guards discovered automatically via entry points
|
|
14
14
|
- **Session management** — persistent SQLite-backed conversations; fork, switch, and resume sessions
|
|
15
15
|
- **Streaming UI** — text and tool calls rendered incrementally as they arrive
|
|
16
|
-
- **Multi-transport** — switch between OpenAI, Nebius, Codex, or any registered backend at runtime
|
|
16
|
+
- **Multi-transport** — switch between Anthropic, OpenAI, Nebius, Codex, or any registered backend at runtime
|
|
17
17
|
- **Sub-agent support** — the `subagent` tool lets the agent spin up nested agent sessions
|
|
18
18
|
- **Vision** — `vision` tool for image analysis (with compatible models)
|
|
19
19
|
- **Serveable** — `textual-serve` support for browser-based access
|
|
@@ -40,6 +40,7 @@ pip install "axio-tui[openai,local,mcp]"
|
|
|
40
40
|
|
|
41
41
|
| Extra | Installs |
|
|
42
42
|
|---|---|
|
|
43
|
+
| `anthropic` | axio-transport-anthropic |
|
|
43
44
|
| `openai` | axio-transport-openai |
|
|
44
45
|
| `nebius` | axio-transport-nebius |
|
|
45
46
|
| `codex` | axio-transport-codex |
|
|
@@ -115,7 +116,7 @@ textual-serve axio_tui.__main__:app
|
|
|
115
116
|
|
|
116
117
|
## Part of the axio ecosystem
|
|
117
118
|
|
|
118
|
-
[axio](https://github.com/axio-agent/axio) · [axio-tui-rag](https://github.com/axio-agent/axio-tui-rag) · [axio-tui-guards](https://github.com/axio-agent/axio-tui-guards) · [axio-tools-local](https://github.com/axio-agent/axio-tools-local) · [axio-tools-mcp](https://github.com/axio-agent/axio-tools-mcp) · [axio-tools-docker](https://github.com/axio-agent/axio-tools-docker)
|
|
119
|
+
[axio](https://github.com/axio-agent/axio) · [axio-transport-anthropic](https://github.com/axio-agent/axio-transport-anthropic) · [axio-tui-rag](https://github.com/axio-agent/axio-tui-rag) · [axio-tui-guards](https://github.com/axio-agent/axio-tui-guards) · [axio-tools-local](https://github.com/axio-agent/axio-tools-local) · [axio-tools-mcp](https://github.com/axio-agent/axio-tools-mcp) · [axio-tools-docker](https://github.com/axio-agent/axio-tools-docker)
|
|
119
120
|
|
|
120
121
|
## License
|
|
121
122
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "axio-tui"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.4.0"
|
|
4
4
|
description = "Textual TUI application for Axio"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.12"
|
|
@@ -15,6 +15,7 @@ dependencies = [
|
|
|
15
15
|
]
|
|
16
16
|
|
|
17
17
|
[project.optional-dependencies]
|
|
18
|
+
anthropic = ["axio-transport-anthropic"]
|
|
18
19
|
openai = ["axio-transport-openai"]
|
|
19
20
|
nebius = ["axio-transport-nebius"]
|
|
20
21
|
codex = ["axio-transport-codex"]
|
|
@@ -23,7 +24,7 @@ mcp = ["axio-tools-mcp"]
|
|
|
23
24
|
rag = ["axio-tui-rag"]
|
|
24
25
|
guards = ["axio-tui-guards"]
|
|
25
26
|
all = [
|
|
26
|
-
"axio-tui[openai,nebius,codex,local,mcp,rag,guards]",
|
|
27
|
+
"axio-tui[anthropic,openai,nebius,codex,local,mcp,rag,guards]",
|
|
27
28
|
]
|
|
28
29
|
|
|
29
30
|
[project.entry-points."axio.tools"]
|
|
@@ -71,7 +72,7 @@ dev = [
|
|
|
71
72
|
|
|
72
73
|
[[tool.mypy.overrides]]
|
|
73
74
|
module = [
|
|
74
|
-
"axio_transport_nebius", "axio_transport_codex",
|
|
75
|
+
"axio_transport_anthropic", "axio_transport_nebius", "axio_transport_codex",
|
|
75
76
|
"axio_tools_local", "axio_tools_local.*",
|
|
76
77
|
"axio_tools_mcp", "axio_tools_mcp.*",
|
|
77
78
|
"axio_tools_docker", "axio_tools_docker.*",
|