voxagent 0.2.0__tar.gz → 0.2.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.
Files changed (59) hide show
  1. {voxagent-0.2.0 → voxagent-0.2.1}/PKG-INFO +1 -1
  2. {voxagent-0.2.0 → voxagent-0.2.1}/src/voxagent/_version.py +1 -1
  3. {voxagent-0.2.0 → voxagent-0.2.1}/src/voxagent/code/sandbox.py +9 -0
  4. {voxagent-0.2.0 → voxagent-0.2.1}/.gitignore +0 -0
  5. {voxagent-0.2.0 → voxagent-0.2.1}/README.md +0 -0
  6. {voxagent-0.2.0 → voxagent-0.2.1}/examples/README.md +0 -0
  7. {voxagent-0.2.0 → voxagent-0.2.1}/pyproject.toml +0 -0
  8. {voxagent-0.2.0 → voxagent-0.2.1}/src/voxagent/__init__.py +0 -0
  9. {voxagent-0.2.0 → voxagent-0.2.1}/src/voxagent/agent/__init__.py +0 -0
  10. {voxagent-0.2.0 → voxagent-0.2.1}/src/voxagent/agent/abort.py +0 -0
  11. {voxagent-0.2.0 → voxagent-0.2.1}/src/voxagent/agent/core.py +0 -0
  12. {voxagent-0.2.0 → voxagent-0.2.1}/src/voxagent/code/__init__.py +0 -0
  13. {voxagent-0.2.0 → voxagent-0.2.1}/src/voxagent/code/agent.py +0 -0
  14. {voxagent-0.2.0 → voxagent-0.2.1}/src/voxagent/code/tool_proxy.py +0 -0
  15. {voxagent-0.2.0 → voxagent-0.2.1}/src/voxagent/code/virtual_fs.py +0 -0
  16. {voxagent-0.2.0 → voxagent-0.2.1}/src/voxagent/mcp/__init__.py +0 -0
  17. {voxagent-0.2.0 → voxagent-0.2.1}/src/voxagent/mcp/manager.py +0 -0
  18. {voxagent-0.2.0 → voxagent-0.2.1}/src/voxagent/mcp/tool.py +0 -0
  19. {voxagent-0.2.0 → voxagent-0.2.1}/src/voxagent/providers/__init__.py +0 -0
  20. {voxagent-0.2.0 → voxagent-0.2.1}/src/voxagent/providers/anthropic.py +0 -0
  21. {voxagent-0.2.0 → voxagent-0.2.1}/src/voxagent/providers/augment.py +0 -0
  22. {voxagent-0.2.0 → voxagent-0.2.1}/src/voxagent/providers/auth.py +0 -0
  23. {voxagent-0.2.0 → voxagent-0.2.1}/src/voxagent/providers/base.py +0 -0
  24. {voxagent-0.2.0 → voxagent-0.2.1}/src/voxagent/providers/chatgpt.py +0 -0
  25. {voxagent-0.2.0 → voxagent-0.2.1}/src/voxagent/providers/claudecode.py +0 -0
  26. {voxagent-0.2.0 → voxagent-0.2.1}/src/voxagent/providers/cli_base.py +0 -0
  27. {voxagent-0.2.0 → voxagent-0.2.1}/src/voxagent/providers/codex.py +0 -0
  28. {voxagent-0.2.0 → voxagent-0.2.1}/src/voxagent/providers/failover.py +0 -0
  29. {voxagent-0.2.0 → voxagent-0.2.1}/src/voxagent/providers/google.py +0 -0
  30. {voxagent-0.2.0 → voxagent-0.2.1}/src/voxagent/providers/groq.py +0 -0
  31. {voxagent-0.2.0 → voxagent-0.2.1}/src/voxagent/providers/ollama.py +0 -0
  32. {voxagent-0.2.0 → voxagent-0.2.1}/src/voxagent/providers/openai.py +0 -0
  33. {voxagent-0.2.0 → voxagent-0.2.1}/src/voxagent/providers/registry.py +0 -0
  34. {voxagent-0.2.0 → voxagent-0.2.1}/src/voxagent/py.typed +0 -0
  35. {voxagent-0.2.0 → voxagent-0.2.1}/src/voxagent/security/__init__.py +0 -0
  36. {voxagent-0.2.0 → voxagent-0.2.1}/src/voxagent/security/events.py +0 -0
  37. {voxagent-0.2.0 → voxagent-0.2.1}/src/voxagent/security/filter.py +0 -0
  38. {voxagent-0.2.0 → voxagent-0.2.1}/src/voxagent/security/registry.py +0 -0
  39. {voxagent-0.2.0 → voxagent-0.2.1}/src/voxagent/session/__init__.py +0 -0
  40. {voxagent-0.2.0 → voxagent-0.2.1}/src/voxagent/session/compaction.py +0 -0
  41. {voxagent-0.2.0 → voxagent-0.2.1}/src/voxagent/session/lock.py +0 -0
  42. {voxagent-0.2.0 → voxagent-0.2.1}/src/voxagent/session/model.py +0 -0
  43. {voxagent-0.2.0 → voxagent-0.2.1}/src/voxagent/session/storage.py +0 -0
  44. {voxagent-0.2.0 → voxagent-0.2.1}/src/voxagent/streaming/__init__.py +0 -0
  45. {voxagent-0.2.0 → voxagent-0.2.1}/src/voxagent/streaming/emitter.py +0 -0
  46. {voxagent-0.2.0 → voxagent-0.2.1}/src/voxagent/streaming/events.py +0 -0
  47. {voxagent-0.2.0 → voxagent-0.2.1}/src/voxagent/subagent/__init__.py +0 -0
  48. {voxagent-0.2.0 → voxagent-0.2.1}/src/voxagent/subagent/context.py +0 -0
  49. {voxagent-0.2.0 → voxagent-0.2.1}/src/voxagent/subagent/definition.py +0 -0
  50. {voxagent-0.2.0 → voxagent-0.2.1}/src/voxagent/tools/__init__.py +0 -0
  51. {voxagent-0.2.0 → voxagent-0.2.1}/src/voxagent/tools/context.py +0 -0
  52. {voxagent-0.2.0 → voxagent-0.2.1}/src/voxagent/tools/decorator.py +0 -0
  53. {voxagent-0.2.0 → voxagent-0.2.1}/src/voxagent/tools/definition.py +0 -0
  54. {voxagent-0.2.0 → voxagent-0.2.1}/src/voxagent/tools/executor.py +0 -0
  55. {voxagent-0.2.0 → voxagent-0.2.1}/src/voxagent/tools/policy.py +0 -0
  56. {voxagent-0.2.0 → voxagent-0.2.1}/src/voxagent/tools/registry.py +0 -0
  57. {voxagent-0.2.0 → voxagent-0.2.1}/src/voxagent/types/__init__.py +0 -0
  58. {voxagent-0.2.0 → voxagent-0.2.1}/src/voxagent/types/messages.py +0 -0
  59. {voxagent-0.2.0 → voxagent-0.2.1}/src/voxagent/types/run.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: voxagent
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: A lightweight, model-agnostic LLM provider abstraction with streaming and tool support
5
5
  Project-URL: Homepage, https://github.com/lensator/voxagent
6
6
  Project-URL: Documentation, https://github.com/lensator/voxagent#readme
@@ -1,2 +1,2 @@
1
- __version__ = "0.2.0"
1
+ __version__ = "0.2.1"
2
2
  __version_info__ = tuple(int(x) for x in __version__.split("."))
@@ -95,6 +95,15 @@ def _execute_in_subprocess(
95
95
  """Subprocess entry point for sandboxed execution."""
96
96
  # Import here to avoid loading in main process
97
97
  import ast
98
+ import warnings
99
+
100
+ # Suppress RestrictedPython SyntaxWarnings about print/printed variable
101
+ # These warnings are harmless but noisy (about print transformation internals)
102
+ warnings.filterwarnings(
103
+ "ignore",
104
+ message=".*Prints, but never reads 'printed' variable.*",
105
+ category=SyntaxWarning,
106
+ )
98
107
 
99
108
  from RestrictedPython import compile_restricted, safe_builtins
100
109
  from RestrictedPython.Eval import default_guarded_getitem, default_guarded_getiter
File without changes
File without changes
File without changes
File without changes
File without changes