voxagent 0.2.0__py3-none-any.whl → 0.2.1__py3-none-any.whl

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.
voxagent/_version.py CHANGED
@@ -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("."))
voxagent/code/sandbox.py CHANGED
@@ -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
@@ -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,12 +1,12 @@
1
1
  voxagent/__init__.py,sha256=YMYC95iwWXK26hicGYmd2erNOInrYtohwUVOuNmpTCs,3927
2
- voxagent/_version.py,sha256=2Lk-R6pPBlf14zgFBi2D2j_OHk679YRt05PWLhVFWTY,87
2
+ voxagent/_version.py,sha256=hneVJodkPueiXrtmysAsTToF1j7vXo9HPxsiIEn-vlc,87
3
3
  voxagent/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
4
4
  voxagent/agent/__init__.py,sha256=eASoU7Zhvw8BtJ-iUqVN06S4fMLkHwDgUZbHeH2AUOM,755
5
5
  voxagent/agent/abort.py,sha256=2Wnnxq8Dcn7wQkKPHrba2o0OeOdzF4NNsl-usgE4CJw,5191
6
6
  voxagent/agent/core.py,sha256=zXDUubx6oWQCj1V997s2zJ0Xj0XCaWIPZNinTNMz2zY,30581
7
7
  voxagent/code/__init__.py,sha256=MzbrYReislAB-lCZEZn_lBEPGjYZyPK-c9RFCq1nSm0,1379
8
8
  voxagent/code/agent.py,sha256=ZHN4OYVVD1yI75QDjvqYOrexgh1-srH8qiBfvJhV-Pk,8884
9
- voxagent/code/sandbox.py,sha256=0Ms2cgOhej08qV5L3UJ8-J3x6p7vOlxeE9kOli-gkd0,11338
9
+ voxagent/code/sandbox.py,sha256=LP2cwXchDk6mtiYGRb_RmkGNoyPv5OEKQC2h4M89dC0,11669
10
10
  voxagent/code/tool_proxy.py,sha256=wZvRqXoz2SfYTHLpe8tIkpJL6b8fmlU96DSGeYw-HfM,8091
11
11
  voxagent/code/virtual_fs.py,sha256=pKZXddcshtZqoLLZ6sL2tJ7f0JbPQF_TpdDmPbpJ_qg,7088
12
12
  voxagent/mcp/__init__.py,sha256=_3Rsn7nIuivdWLv0MzpyjRGsPuCgr4LrXCge6FCb3nE,470
@@ -52,6 +52,6 @@ voxagent/tools/registry.py,sha256=MNJzgcmKT0AoMWIky9TJY4WVhzn5dkmjIHsUiZ3mv3U,25
52
52
  voxagent/types/__init__.py,sha256=3VunuprKKEpOR9Cg-UITHJXds_xQ-tfqQb4S7wD3nP4,933
53
53
  voxagent/types/messages.py,sha256=c6hNi9w6C8gbFoFm5fFge35vwJGywaoR_OiPQprfyVs,3494
54
54
  voxagent/types/run.py,sha256=4vYq0pCqH7_7SWbMb1SplWj4TLiE3DELDYMi0HefFmo,5071
55
- voxagent-0.2.0.dist-info/METADATA,sha256=7wKv6qtWhnTmpy5nq0yUkGZVcPfGn4RbwLGf6nee1PY,5685
56
- voxagent-0.2.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
57
- voxagent-0.2.0.dist-info/RECORD,,
55
+ voxagent-0.2.1.dist-info/METADATA,sha256=aaQR2qswaeyZIGw_5DE_OoUSn0GO2-MFGxt33y9-Nmc,5685
56
+ voxagent-0.2.1.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
57
+ voxagent-0.2.1.dist-info/RECORD,,