meshagent-openai 0.3.1__tar.gz → 0.4.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.

Potentially problematic release.


This version of meshagent-openai might be problematic. Click here for more details.

Files changed (24) hide show
  1. {meshagent_openai-0.3.1 → meshagent_openai-0.4.3}/CHANGELOG.md +12 -0
  2. {meshagent_openai-0.3.1/meshagent_openai.egg-info → meshagent_openai-0.4.3}/PKG-INFO +4 -4
  3. {meshagent_openai-0.3.1 → meshagent_openai-0.4.3}/meshagent/openai/tools/responses_adapter.py +2 -1
  4. meshagent_openai-0.4.3/meshagent/openai/version.py +1 -0
  5. {meshagent_openai-0.3.1 → meshagent_openai-0.4.3/meshagent_openai.egg-info}/PKG-INFO +4 -4
  6. meshagent_openai-0.4.3/meshagent_openai.egg-info/requires.txt +7 -0
  7. {meshagent_openai-0.3.1 → meshagent_openai-0.4.3}/pyproject.toml +3 -3
  8. meshagent_openai-0.3.1/meshagent/openai/version.py +0 -1
  9. meshagent_openai-0.3.1/meshagent_openai.egg-info/requires.txt +0 -7
  10. {meshagent_openai-0.3.1 → meshagent_openai-0.4.3}/LICENSE +0 -0
  11. {meshagent_openai-0.3.1 → meshagent_openai-0.4.3}/MANIFEST.in +0 -0
  12. {meshagent_openai-0.3.1 → meshagent_openai-0.4.3}/README.md +0 -0
  13. {meshagent_openai-0.3.1 → meshagent_openai-0.4.3}/meshagent/openai/__init__.py +0 -0
  14. {meshagent_openai-0.3.1 → meshagent_openai-0.4.3}/meshagent/openai/proxy/__init__.py +0 -0
  15. {meshagent_openai-0.3.1 → meshagent_openai-0.4.3}/meshagent/openai/proxy/proxy.py +0 -0
  16. {meshagent_openai-0.3.1 → meshagent_openai-0.4.3}/meshagent/openai/tools/__init__.py +0 -0
  17. {meshagent_openai-0.3.1 → meshagent_openai-0.4.3}/meshagent/openai/tools/completions_adapter.py +0 -0
  18. {meshagent_openai-0.3.1 → meshagent_openai-0.4.3}/meshagent/openai/tools/schema.py +0 -0
  19. {meshagent_openai-0.3.1 → meshagent_openai-0.4.3}/meshagent/openai/tools/stt.py +0 -0
  20. {meshagent_openai-0.3.1 → meshagent_openai-0.4.3}/meshagent/openai/tools/stt_test.py +0 -0
  21. {meshagent_openai-0.3.1 → meshagent_openai-0.4.3}/meshagent_openai.egg-info/SOURCES.txt +0 -0
  22. {meshagent_openai-0.3.1 → meshagent_openai-0.4.3}/meshagent_openai.egg-info/dependency_links.txt +0 -0
  23. {meshagent_openai-0.3.1 → meshagent_openai-0.4.3}/meshagent_openai.egg-info/top_level.txt +0 -0
  24. {meshagent_openai-0.3.1 → meshagent_openai-0.4.3}/setup.cfg +0 -0
@@ -1,3 +1,15 @@
1
+ ## [0.4.3]
2
+ - Stability
3
+
4
+ ## [0.4.2]
5
+ - Stability
6
+
7
+ ## [0.4.1]
8
+ - Stability
9
+
10
+ ## [0.4.0]
11
+ - Stability
12
+
1
13
  ## [0.3.1]
2
14
  - Stability
3
15
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: meshagent-openai
3
- Version: 0.3.1
3
+ Version: 0.4.3
4
4
  Summary: OpenAI Building Blocks for Meshagent
5
5
  License-Expression: Apache-2.0
6
6
  Project-URL: Documentation, https://docs.meshagent.com
@@ -13,9 +13,9 @@ Requires-Dist: pyjwt~=2.10
13
13
  Requires-Dist: pytest~=8.4
14
14
  Requires-Dist: pytest-asyncio~=0.26
15
15
  Requires-Dist: openai~=1.84
16
- Requires-Dist: meshagent-api~=0.3.1
17
- Requires-Dist: meshagent-agents~=0.3.1
18
- Requires-Dist: meshagent-tools~=0.3.1
16
+ Requires-Dist: meshagent-api~=0.4.3
17
+ Requires-Dist: meshagent-agents~=0.4.3
18
+ Requires-Dist: meshagent-tools~=0.4.3
19
19
  Dynamic: license-file
20
20
 
21
21
  ## MeshAgent OpenAI
@@ -1022,7 +1022,8 @@ class LocalShellTool(OpenAIResponsesTool):
1022
1022
  except asyncio.TimeoutError:
1023
1023
  proc.kill() # send SIGKILL / TerminateProcess
1024
1024
  stdout, stderr = await proc.communicate()
1025
- raise # re-raise so caller sees the timeout
1025
+ return f"The command timed out after {timeout_ms}ms"
1026
+ # re-raise so caller sees the timeout
1026
1027
 
1027
1028
  encoding = os.device_encoding(1) or "utf-8"
1028
1029
  stdout = stdout.decode(encoding, errors="replace")
@@ -0,0 +1 @@
1
+ __version__ = "0.4.3"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: meshagent-openai
3
- Version: 0.3.1
3
+ Version: 0.4.3
4
4
  Summary: OpenAI Building Blocks for Meshagent
5
5
  License-Expression: Apache-2.0
6
6
  Project-URL: Documentation, https://docs.meshagent.com
@@ -13,9 +13,9 @@ Requires-Dist: pyjwt~=2.10
13
13
  Requires-Dist: pytest~=8.4
14
14
  Requires-Dist: pytest-asyncio~=0.26
15
15
  Requires-Dist: openai~=1.84
16
- Requires-Dist: meshagent-api~=0.3.1
17
- Requires-Dist: meshagent-agents~=0.3.1
18
- Requires-Dist: meshagent-tools~=0.3.1
16
+ Requires-Dist: meshagent-api~=0.4.3
17
+ Requires-Dist: meshagent-agents~=0.4.3
18
+ Requires-Dist: meshagent-tools~=0.4.3
19
19
  Dynamic: license-file
20
20
 
21
21
  ## MeshAgent OpenAI
@@ -0,0 +1,7 @@
1
+ pyjwt~=2.10
2
+ pytest~=8.4
3
+ pytest-asyncio~=0.26
4
+ openai~=1.84
5
+ meshagent-api~=0.4.3
6
+ meshagent-agents~=0.4.3
7
+ meshagent-tools~=0.4.3
@@ -14,9 +14,9 @@ dependencies = [
14
14
  "pytest~=8.4",
15
15
  "pytest-asyncio~=0.26",
16
16
  "openai~=1.84",
17
- "meshagent-api~=0.3.1",
18
- "meshagent-agents~=0.3.1",
19
- "meshagent-tools~=0.3.1"
17
+ "meshagent-api~=0.4.3",
18
+ "meshagent-agents~=0.4.3",
19
+ "meshagent-tools~=0.4.3"
20
20
  ]
21
21
 
22
22
  [project.urls]
@@ -1 +0,0 @@
1
- __version__ = "0.3.1"
@@ -1,7 +0,0 @@
1
- pyjwt~=2.10
2
- pytest~=8.4
3
- pytest-asyncio~=0.26
4
- openai~=1.84
5
- meshagent-api~=0.3.1
6
- meshagent-agents~=0.3.1
7
- meshagent-tools~=0.3.1