axio 0.2.2__tar.gz → 0.2.3__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 (40) hide show
  1. {axio-0.2.2 → axio-0.2.3}/PKG-INFO +4 -1
  2. {axio-0.2.2 → axio-0.2.3}/pyproject.toml +6 -1
  3. {axio-0.2.2 → axio-0.2.3}/uv.lock +1 -1
  4. {axio-0.2.2 → axio-0.2.3}/.github/workflows/publish.yml +0 -0
  5. {axio-0.2.2 → axio-0.2.3}/.github/workflows/tests.yml +0 -0
  6. {axio-0.2.2 → axio-0.2.3}/LICENSE +0 -0
  7. {axio-0.2.2 → axio-0.2.3}/Makefile +0 -0
  8. {axio-0.2.2 → axio-0.2.3}/README.md +0 -0
  9. {axio-0.2.2 → axio-0.2.3}/src/axio/__init__.py +0 -0
  10. {axio-0.2.2 → axio-0.2.3}/src/axio/agent.py +0 -0
  11. {axio-0.2.2 → axio-0.2.3}/src/axio/blocks.py +0 -0
  12. {axio-0.2.2 → axio-0.2.3}/src/axio/context.py +0 -0
  13. {axio-0.2.2 → axio-0.2.3}/src/axio/events.py +0 -0
  14. {axio-0.2.2 → axio-0.2.3}/src/axio/exceptions.py +0 -0
  15. {axio-0.2.2 → axio-0.2.3}/src/axio/messages.py +0 -0
  16. {axio-0.2.2 → axio-0.2.3}/src/axio/models.py +0 -0
  17. {axio-0.2.2 → axio-0.2.3}/src/axio/permission.py +0 -0
  18. {axio-0.2.2 → axio-0.2.3}/src/axio/py.typed +0 -0
  19. {axio-0.2.2 → axio-0.2.3}/src/axio/selector.py +0 -0
  20. {axio-0.2.2 → axio-0.2.3}/src/axio/stream.py +0 -0
  21. {axio-0.2.2 → axio-0.2.3}/src/axio/testing.py +0 -0
  22. {axio-0.2.2 → axio-0.2.3}/src/axio/tool.py +0 -0
  23. {axio-0.2.2 → axio-0.2.3}/src/axio/transport.py +0 -0
  24. {axio-0.2.2 → axio-0.2.3}/src/axio/types.py +0 -0
  25. {axio-0.2.2 → axio-0.2.3}/tests/conftest.py +0 -0
  26. {axio-0.2.2 → axio-0.2.3}/tests/test_agent_branch.py +0 -0
  27. {axio-0.2.2 → axio-0.2.3}/tests/test_agent_permission.py +0 -0
  28. {axio-0.2.2 → axio-0.2.3}/tests/test_agent_run.py +0 -0
  29. {axio-0.2.2 → axio-0.2.3}/tests/test_agent_stream.py +0 -0
  30. {axio-0.2.2 → axio-0.2.3}/tests/test_agent_tools.py +0 -0
  31. {axio-0.2.2 → axio-0.2.3}/tests/test_blocks.py +0 -0
  32. {axio-0.2.2 → axio-0.2.3}/tests/test_context.py +0 -0
  33. {axio-0.2.2 → axio-0.2.3}/tests/test_events.py +0 -0
  34. {axio-0.2.2 → axio-0.2.3}/tests/test_exceptions.py +0 -0
  35. {axio-0.2.2 → axio-0.2.3}/tests/test_permission.py +0 -0
  36. {axio-0.2.2 → axio-0.2.3}/tests/test_selector.py +0 -0
  37. {axio-0.2.2 → axio-0.2.3}/tests/test_stream.py +0 -0
  38. {axio-0.2.2 → axio-0.2.3}/tests/test_tool.py +0 -0
  39. {axio-0.2.2 → axio-0.2.3}/tests/test_transport.py +0 -0
  40. {axio-0.2.2 → axio-0.2.3}/tests/test_types.py +0 -0
@@ -1,9 +1,12 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: axio
3
- Version: 0.2.2
3
+ Version: 0.2.3
4
4
  Summary: Minimal, streaming-first, protocol-driven foundation for LLM-powered agents
5
+ Project-URL: Homepage, https://github.com/axio-agent/axio
6
+ Project-URL: Repository, https://github.com/axio-agent/axio
5
7
  License: MIT
6
8
  License-File: LICENSE
9
+ Keywords: agent,ai,async,llm,protocol,pydantic,streaming
7
10
  Requires-Python: >=3.12
8
11
  Requires-Dist: pydantic>=2
9
12
  Description-Content-Type: text/markdown
@@ -1,12 +1,17 @@
1
1
  [project]
2
2
  name = "axio"
3
- version = "0.2.2"
3
+ version = "0.2.3"
4
4
  description = "Minimal, streaming-first, protocol-driven foundation for LLM-powered agents"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.12"
7
7
  license = {text = "MIT"}
8
+ keywords = ["llm", "agent", "ai", "async", "streaming", "pydantic", "protocol"]
8
9
  dependencies = ["pydantic>=2"]
9
10
 
11
+
12
+ [project.urls]
13
+ Homepage = "https://github.com/axio-agent/axio"
14
+ Repository = "https://github.com/axio-agent/axio"
10
15
  [build-system]
11
16
  requires = ["hatchling"]
12
17
  build-backend = "hatchling.build"
@@ -13,7 +13,7 @@ wheels = [
13
13
 
14
14
  [[package]]
15
15
  name = "axio"
16
- version = "0.2.2"
16
+ version = "0.2.3"
17
17
  source = { editable = "." }
18
18
  dependencies = [
19
19
  { name = "pydantic" },
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