splox 0.2.1__tar.gz → 0.2.2__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 (31) hide show
  1. {splox-0.2.1 → splox-0.2.2}/CHANGELOG.md +1 -1
  2. {splox-0.2.1 → splox-0.2.2}/PKG-INFO +1 -1
  3. {splox-0.2.1 → splox-0.2.2}/pyproject.toml +1 -1
  4. {splox-0.2.1 → splox-0.2.2}/src/splox/__init__.py +1 -1
  5. {splox-0.2.1 → splox-0.2.2}/src/splox/_transport.py +1 -1
  6. {splox-0.2.1 → splox-0.2.2}/.github/workflows/publish.yml +0 -0
  7. {splox-0.2.1 → splox-0.2.2}/.github/workflows/test.yml +0 -0
  8. {splox-0.2.1 → splox-0.2.2}/.gitignore +0 -0
  9. {splox-0.2.1 → splox-0.2.2}/LICENSE +0 -0
  10. {splox-0.2.1 → splox-0.2.2}/README.md +0 -0
  11. {splox-0.2.1 → splox-0.2.2}/src/splox/_client.py +0 -0
  12. {splox-0.2.1 → splox-0.2.2}/src/splox/_ids.py +0 -0
  13. {splox-0.2.1 → splox-0.2.2}/src/splox/_interactions.py +0 -0
  14. {splox-0.2.1 → splox-0.2.2}/src/splox/_mcp.py +0 -0
  15. {splox-0.2.1 → splox-0.2.2}/src/splox/_models.py +0 -0
  16. {splox-0.2.1 → splox-0.2.2}/src/splox/_resources.py +0 -0
  17. {splox-0.2.1 → splox-0.2.2}/src/splox/_runs.py +0 -0
  18. {splox-0.2.1 → splox-0.2.2}/src/splox/exceptions.py +0 -0
  19. {splox-0.2.1 → splox-0.2.2}/src/splox/py.typed +0 -0
  20. {splox-0.2.1 → splox-0.2.2}/tests/__init__.py +0 -0
  21. {splox-0.2.1 → splox-0.2.2}/tests/integration_test.py +0 -0
  22. {splox-0.2.1 → splox-0.2.2}/tests/integration_test_mcp.py +0 -0
  23. {splox-0.2.1 → splox-0.2.2}/tests/integration_test_memory.py +0 -0
  24. {splox-0.2.1 → splox-0.2.2}/tests/integration_test_v2.py +0 -0
  25. {splox-0.2.1 → splox-0.2.2}/tests/test_client.py +0 -0
  26. {splox-0.2.1 → splox-0.2.2}/tests/test_codemode_contract.py +0 -0
  27. {splox-0.2.1 → splox-0.2.2}/tests/test_exceptions.py +0 -0
  28. {splox-0.2.1 → splox-0.2.2}/tests/test_ids.py +0 -0
  29. {splox-0.2.1 → splox-0.2.2}/tests/test_models.py +0 -0
  30. {splox-0.2.1 → splox-0.2.2}/tests/test_runs.py +0 -0
  31. {splox-0.2.1 → splox-0.2.2}/tests/test_sse.py +0 -0
@@ -1,6 +1,6 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.0 — v2 run-execution API (BREAKING)
3
+ ## 0.2.1 — v2 API (breaking)
4
4
 
5
5
  The run-execution surface now targets the Splox Core API v2
6
6
  (`/v2/runs`, `/v2/interactions`, RFC 9457 problem+json, cursor pagination,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: splox
3
- Version: 0.2.1
3
+ Version: 0.2.2
4
4
  Summary: Official Python SDK for the Splox API — run workflows, manage chats, and monitor execution
5
5
  Project-URL: Homepage, https://splox.io
6
6
  Project-URL: Documentation, https://docs.splox.io
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "splox"
7
- version = "0.2.1"
7
+ version = "0.2.2"
8
8
  description = "Official Python SDK for the Splox API — run workflows, manage chats, and monitor execution"
9
9
  readme = "README.md"
10
10
  license = "MIT"
@@ -147,4 +147,4 @@ __all__ = [
147
147
  "async_notify",
148
148
  ]
149
149
 
150
- __version__ = "0.2.1"
150
+ __version__ = "0.2.2"
@@ -64,7 +64,7 @@ def _derive_v2_base(base_url: str) -> str:
64
64
  ``http://localhost:4000`` stays unchanged. v2 paths already carry their
65
65
  own ``/v2`` prefix.
66
66
  """
67
- return re.sub(r"/(api/)?v1/?$", "", base_url.rstrip("/"))
67
+ return re.sub(r"/(api/)?v1(/runtime)?/?$", "", base_url.rstrip("/"))
68
68
 
69
69
 
70
70
  def _build_headers(api_key: Optional[str]) -> Dict[str, str]:
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