licos-agent-runtime 0.2.8__tar.gz → 0.2.9__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 (32) hide show
  1. {licos_agent_runtime-0.2.8 → licos_agent_runtime-0.2.9}/PKG-INFO +2 -2
  2. {licos_agent_runtime-0.2.8 → licos_agent_runtime-0.2.9}/pyproject.toml +2 -2
  3. {licos_agent_runtime-0.2.8 → licos_agent_runtime-0.2.9}/.gitignore +0 -0
  4. {licos_agent_runtime-0.2.8 → licos_agent_runtime-0.2.9}/src/licos_agent_runtime/__init__.py +0 -0
  5. {licos_agent_runtime-0.2.8 → licos_agent_runtime-0.2.9}/src/licos_agent_runtime/__main__.py +0 -0
  6. {licos_agent_runtime-0.2.8 → licos_agent_runtime-0.2.9}/src/licos_agent_runtime/agent_canvas.py +0 -0
  7. {licos_agent_runtime-0.2.8 → licos_agent_runtime-0.2.9}/src/licos_agent_runtime/agent_config.py +0 -0
  8. {licos_agent_runtime-0.2.8 → licos_agent_runtime-0.2.9}/src/licos_agent_runtime/app.py +0 -0
  9. {licos_agent_runtime-0.2.8 → licos_agent_runtime-0.2.9}/src/licos_agent_runtime/attachments.py +0 -0
  10. {licos_agent_runtime-0.2.8 → licos_agent_runtime-0.2.9}/src/licos_agent_runtime/context.py +0 -0
  11. {licos_agent_runtime-0.2.8 → licos_agent_runtime-0.2.9}/src/licos_agent_runtime/errors.py +0 -0
  12. {licos_agent_runtime-0.2.8 → licos_agent_runtime-0.2.9}/src/licos_agent_runtime/graph_loader.py +0 -0
  13. {licos_agent_runtime-0.2.8 → licos_agent_runtime-0.2.9}/src/licos_agent_runtime/logging.py +0 -0
  14. {licos_agent_runtime-0.2.8 → licos_agent_runtime-0.2.9}/src/licos_agent_runtime/openai.py +0 -0
  15. {licos_agent_runtime-0.2.8 → licos_agent_runtime-0.2.9}/src/licos_agent_runtime/parser.py +0 -0
  16. {licos_agent_runtime-0.2.8 → licos_agent_runtime-0.2.9}/src/licos_agent_runtime/payload.py +0 -0
  17. {licos_agent_runtime-0.2.8 → licos_agent_runtime-0.2.9}/src/licos_agent_runtime/run_config.py +0 -0
  18. {licos_agent_runtime-0.2.8 → licos_agent_runtime-0.2.9}/src/licos_agent_runtime/service.py +0 -0
  19. {licos_agent_runtime-0.2.8 → licos_agent_runtime-0.2.9}/src/licos_agent_runtime/stream_protocol.py +0 -0
  20. {licos_agent_runtime-0.2.8 → licos_agent_runtime-0.2.9}/src/licos_agent_runtime/stream_runner.py +0 -0
  21. {licos_agent_runtime-0.2.8 → licos_agent_runtime-0.2.9}/src/licos_agent_runtime/telemetry.py +0 -0
  22. {licos_agent_runtime-0.2.8 → licos_agent_runtime-0.2.9}/src/licos_agent_runtime/workflow_canvas.py +0 -0
  23. {licos_agent_runtime-0.2.8 → licos_agent_runtime-0.2.9}/src/licos_agent_runtime/workflow_protocol.py +0 -0
  24. {licos_agent_runtime-0.2.8 → licos_agent_runtime-0.2.9}/tests/test_agent_config.py +0 -0
  25. {licos_agent_runtime-0.2.8 → licos_agent_runtime-0.2.9}/tests/test_context.py +0 -0
  26. {licos_agent_runtime-0.2.8 → licos_agent_runtime-0.2.9}/tests/test_graph_loader.py +0 -0
  27. {licos_agent_runtime-0.2.8 → licos_agent_runtime-0.2.9}/tests/test_parser.py +0 -0
  28. {licos_agent_runtime-0.2.8 → licos_agent_runtime-0.2.9}/tests/test_payload.py +0 -0
  29. {licos_agent_runtime-0.2.8 → licos_agent_runtime-0.2.9}/tests/test_service_stream_protocol.py +0 -0
  30. {licos_agent_runtime-0.2.8 → licos_agent_runtime-0.2.9}/tests/test_stream_protocol.py +0 -0
  31. {licos_agent_runtime-0.2.8 → licos_agent_runtime-0.2.9}/tests/test_stream_runner.py +0 -0
  32. {licos_agent_runtime-0.2.8 → licos_agent_runtime-0.2.9}/tests/test_workflow_protocol.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: licos-agent-runtime
3
- Version: 0.2.8
3
+ Version: 0.2.9
4
4
  Summary: LICOS Python agent runtime for LangGraph/LangChain projects
5
5
  Requires-Python: >=3.10
6
6
  Requires-Dist: fastapi<1,>=0.121
@@ -12,6 +12,6 @@ Requires-Dist: langgraph-prebuilt<2,>=1.0
12
12
  Requires-Dist: langgraph-sdk<1,>=0.3
13
13
  Requires-Dist: langgraph<2,>=1.1
14
14
  Requires-Dist: langsmith<1,>=0.4
15
- Requires-Dist: licos-platform-sdk>=0.2.2
15
+ Requires-Dist: licos-platform-sdk>=0.2.3
16
16
  Requires-Dist: pydantic<3,>=2.12
17
17
  Requires-Dist: uvicorn<1,>=0.38
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "licos-agent-runtime"
7
- version = "0.2.8"
7
+ version = "0.2.9"
8
8
  description = "LICOS Python agent runtime for LangGraph/LangChain projects"
9
9
  requires-python = ">=3.10"
10
10
  dependencies = [
@@ -19,7 +19,7 @@ dependencies = [
19
19
  "langgraph-sdk>=0.3,<1",
20
20
  "langgraph-checkpoint-postgres>=3.0,<4",
21
21
  "langsmith>=0.4,<1",
22
- "licos-platform-sdk>=0.2.2",
22
+ "licos-platform-sdk>=0.2.3",
23
23
  ]
24
24
 
25
25
  [project.scripts]