meshagent-openai 0.0.20__tar.gz → 0.0.22__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 (20) hide show
  1. {meshagent_openai-0.0.20 → meshagent_openai-0.0.22}/CHANGELOG.md +6 -0
  2. {meshagent_openai-0.0.20/meshagent_openai.egg-info → meshagent_openai-0.0.22}/PKG-INFO +10 -8
  3. meshagent_openai-0.0.22/README.md +1 -0
  4. {meshagent_openai-0.0.20 → meshagent_openai-0.0.22}/meshagent/openai/tools/completions_adapter.py +0 -3
  5. meshagent_openai-0.0.22/meshagent/openai/version.py +1 -0
  6. {meshagent_openai-0.0.20 → meshagent_openai-0.0.22/meshagent_openai.egg-info}/PKG-INFO +10 -8
  7. meshagent_openai-0.0.22/meshagent_openai.egg-info/requires.txt +7 -0
  8. {meshagent_openai-0.0.20 → meshagent_openai-0.0.22}/pyproject.toml +7 -7
  9. meshagent_openai-0.0.20/README.md +0 -0
  10. meshagent_openai-0.0.20/meshagent/openai/version.py +0 -1
  11. meshagent_openai-0.0.20/meshagent_openai.egg-info/requires.txt +0 -7
  12. {meshagent_openai-0.0.20 → meshagent_openai-0.0.22}/LICENSE +0 -0
  13. {meshagent_openai-0.0.20 → meshagent_openai-0.0.22}/MANIFEST.in +0 -0
  14. {meshagent_openai-0.0.20 → meshagent_openai-0.0.22}/meshagent/openai/__init__.py +0 -0
  15. {meshagent_openai-0.0.20 → meshagent_openai-0.0.22}/meshagent/openai/tools/__init__.py +0 -0
  16. {meshagent_openai-0.0.20 → meshagent_openai-0.0.22}/meshagent/openai/tools/responses_adapter.py +0 -0
  17. {meshagent_openai-0.0.20 → meshagent_openai-0.0.22}/meshagent_openai.egg-info/SOURCES.txt +0 -0
  18. {meshagent_openai-0.0.20 → meshagent_openai-0.0.22}/meshagent_openai.egg-info/dependency_links.txt +0 -0
  19. {meshagent_openai-0.0.20 → meshagent_openai-0.0.22}/meshagent_openai.egg-info/top_level.txt +0 -0
  20. {meshagent_openai-0.0.20 → meshagent_openai-0.0.22}/setup.cfg +0 -0
@@ -1,3 +1,9 @@
1
+ ## [0.0.22]
2
+ - Stability
3
+
4
+ ## [0.0.21]
5
+ - Stability
6
+
1
7
  ## [0.0.20]
2
8
  - Stability
3
9
 
@@ -1,19 +1,21 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: meshagent-openai
3
- Version: 0.0.20
3
+ Version: 0.0.22
4
4
  Summary: OpenAI Building Blocks for Meshagent
5
5
  License-Expression: Apache-2.0
6
- Project-URL: Documentation, https://meshagent.com
7
- Project-URL: Website, https://meshagent.com
8
- Project-URL: Source, https://github.com/meshagent
9
- Requires-Python: >=3.9.0
6
+ Project-URL: Documentation, https://docs.meshagent.com
7
+ Project-URL: Website, https://www.meshagent.com
8
+ Project-URL: Source, https://www.meshagent.com
9
+ Requires-Python: >=3.12
10
10
  Description-Content-Type: text/markdown
11
11
  License-File: LICENSE
12
12
  Requires-Dist: pyjwt~=2.10.1
13
13
  Requires-Dist: pytest~=8.3.5
14
14
  Requires-Dist: pytest-asyncio~=0.26.0
15
15
  Requires-Dist: openai~=1.70.0
16
- Requires-Dist: meshagent-api~=0.0.20
17
- Requires-Dist: meshagent-agents~=0.0.20
18
- Requires-Dist: meshagent-tools~=0.0.20
16
+ Requires-Dist: meshagent-api~=0.0.22
17
+ Requires-Dist: meshagent-agents~=0.0.22
18
+ Requires-Dist: meshagent-tools~=0.0.22
19
19
  Dynamic: license-file
20
+
21
+ ### Meshagent OpenAI
@@ -0,0 +1 @@
1
+ ### Meshagent OpenAI
@@ -27,9 +27,6 @@ import asyncio
27
27
  logger = logging.getLogger("openai_agent")
28
28
 
29
29
 
30
-
31
-
32
-
33
30
  def _replace_non_matching(text: str, allowed_chars: str, replacement: str) -> str:
34
31
  """
35
32
  Replaces every character in `text` that does not match the given
@@ -0,0 +1 @@
1
+ __version__ = "0.0.22"
@@ -1,19 +1,21 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: meshagent-openai
3
- Version: 0.0.20
3
+ Version: 0.0.22
4
4
  Summary: OpenAI Building Blocks for Meshagent
5
5
  License-Expression: Apache-2.0
6
- Project-URL: Documentation, https://meshagent.com
7
- Project-URL: Website, https://meshagent.com
8
- Project-URL: Source, https://github.com/meshagent
9
- Requires-Python: >=3.9.0
6
+ Project-URL: Documentation, https://docs.meshagent.com
7
+ Project-URL: Website, https://www.meshagent.com
8
+ Project-URL: Source, https://www.meshagent.com
9
+ Requires-Python: >=3.12
10
10
  Description-Content-Type: text/markdown
11
11
  License-File: LICENSE
12
12
  Requires-Dist: pyjwt~=2.10.1
13
13
  Requires-Dist: pytest~=8.3.5
14
14
  Requires-Dist: pytest-asyncio~=0.26.0
15
15
  Requires-Dist: openai~=1.70.0
16
- Requires-Dist: meshagent-api~=0.0.20
17
- Requires-Dist: meshagent-agents~=0.0.20
18
- Requires-Dist: meshagent-tools~=0.0.20
16
+ Requires-Dist: meshagent-api~=0.0.22
17
+ Requires-Dist: meshagent-agents~=0.0.22
18
+ Requires-Dist: meshagent-tools~=0.0.22
19
19
  Dynamic: license-file
20
+
21
+ ### Meshagent OpenAI
@@ -0,0 +1,7 @@
1
+ pyjwt~=2.10.1
2
+ pytest~=8.3.5
3
+ pytest-asyncio~=0.26.0
4
+ openai~=1.70.0
5
+ meshagent-api~=0.0.22
6
+ meshagent-agents~=0.0.22
7
+ meshagent-tools~=0.0.22
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
6
6
  name = "meshagent-openai"
7
7
  description = "OpenAI Building Blocks for Meshagent"
8
8
  dynamic = ["version", "readme"]
9
- requires-python = ">=3.9.0"
9
+ requires-python = ">=3.12"
10
10
  license = "Apache-2.0"
11
11
  keywords = []
12
12
  dependencies = [
@@ -14,15 +14,15 @@ dependencies = [
14
14
  "pytest~=8.3.5",
15
15
  "pytest-asyncio~=0.26.0",
16
16
  "openai~=1.70.0",
17
- "meshagent-api~=0.0.20",
18
- "meshagent-agents~=0.0.20",
19
- "meshagent-tools~=0.0.20"
17
+ "meshagent-api~=0.0.22",
18
+ "meshagent-agents~=0.0.22",
19
+ "meshagent-tools~=0.0.22"
20
20
  ]
21
21
 
22
22
  [project.urls]
23
- Documentation = "https://meshagent.com"
24
- Website = "https://meshagent.com"
25
- Source = "https://github.com/meshagent"
23
+ Documentation = "https://docs.meshagent.com"
24
+ Website = "https://www.meshagent.com"
25
+ Source = "https://www.meshagent.com"
26
26
 
27
27
  [tool.setuptools.packages.find]
28
28
  include = ["meshagent.*"]
File without changes
@@ -1 +0,0 @@
1
- __version__ = "0.0.20"
@@ -1,7 +0,0 @@
1
- pyjwt~=2.10.1
2
- pytest~=8.3.5
3
- pytest-asyncio~=0.26.0
4
- openai~=1.70.0
5
- meshagent-api~=0.0.20
6
- meshagent-agents~=0.0.20
7
- meshagent-tools~=0.0.20