meshagent-anthropic 0.25.1__tar.gz → 0.25.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.
Files changed (28) hide show
  1. {meshagent_anthropic-0.25.1 → meshagent_anthropic-0.25.3}/CHANGELOG.md +10 -0
  2. {meshagent_anthropic-0.25.1/meshagent_anthropic.egg-info → meshagent_anthropic-0.25.3}/PKG-INFO +4 -4
  3. {meshagent_anthropic-0.25.1 → meshagent_anthropic-0.25.3}/meshagent/anthropic/messages_adapter.py +4 -0
  4. meshagent_anthropic-0.25.3/meshagent/anthropic/version.py +1 -0
  5. {meshagent_anthropic-0.25.1 → meshagent_anthropic-0.25.3/meshagent_anthropic.egg-info}/PKG-INFO +4 -4
  6. meshagent_anthropic-0.25.3/meshagent_anthropic.egg-info/requires.txt +6 -0
  7. {meshagent_anthropic-0.25.1 → meshagent_anthropic-0.25.3}/pyproject.toml +3 -3
  8. meshagent_anthropic-0.25.1/meshagent/anthropic/version.py +0 -1
  9. meshagent_anthropic-0.25.1/meshagent_anthropic.egg-info/requires.txt +0 -6
  10. {meshagent_anthropic-0.25.1 → meshagent_anthropic-0.25.3}/LICENSE +0 -0
  11. {meshagent_anthropic-0.25.1 → meshagent_anthropic-0.25.3}/MANIFEST.in +0 -0
  12. {meshagent_anthropic-0.25.1 → meshagent_anthropic-0.25.3}/README.md +0 -0
  13. {meshagent_anthropic-0.25.1 → meshagent_anthropic-0.25.3}/meshagent/anthropic/__init__.py +0 -0
  14. {meshagent_anthropic-0.25.1 → meshagent_anthropic-0.25.3}/meshagent/anthropic/mcp.py +0 -0
  15. {meshagent_anthropic-0.25.1 → meshagent_anthropic-0.25.3}/meshagent/anthropic/openai_responses_stream_adapter.py +0 -0
  16. {meshagent_anthropic-0.25.1 → meshagent_anthropic-0.25.3}/meshagent/anthropic/proxy/__init__.py +0 -0
  17. {meshagent_anthropic-0.25.1 → meshagent_anthropic-0.25.3}/meshagent/anthropic/proxy/proxy.py +0 -0
  18. {meshagent_anthropic-0.25.1 → meshagent_anthropic-0.25.3}/meshagent/anthropic/request_tool.py +0 -0
  19. {meshagent_anthropic-0.25.1 → meshagent_anthropic-0.25.3}/meshagent/anthropic/tests/anthropic_live_test.py +0 -0
  20. {meshagent_anthropic-0.25.1 → meshagent_anthropic-0.25.3}/meshagent/anthropic/tests/mcp_test.py +0 -0
  21. {meshagent_anthropic-0.25.1 → meshagent_anthropic-0.25.3}/meshagent/anthropic/tests/messages_adapter_test.py +0 -0
  22. {meshagent_anthropic-0.25.1 → meshagent_anthropic-0.25.3}/meshagent/anthropic/tests/openai_responses_stream_adapter_test.py +0 -0
  23. {meshagent_anthropic-0.25.1 → meshagent_anthropic-0.25.3}/meshagent/anthropic/web_fetch.py +0 -0
  24. {meshagent_anthropic-0.25.1 → meshagent_anthropic-0.25.3}/meshagent/anthropic/web_search.py +0 -0
  25. {meshagent_anthropic-0.25.1 → meshagent_anthropic-0.25.3}/meshagent_anthropic.egg-info/SOURCES.txt +0 -0
  26. {meshagent_anthropic-0.25.1 → meshagent_anthropic-0.25.3}/meshagent_anthropic.egg-info/dependency_links.txt +0 -0
  27. {meshagent_anthropic-0.25.1 → meshagent_anthropic-0.25.3}/meshagent_anthropic.egg-info/top_level.txt +0 -0
  28. {meshagent_anthropic-0.25.1 → meshagent_anthropic-0.25.3}/setup.cfg +0 -0
@@ -1,3 +1,13 @@
1
+ ## [0.25.3]
2
+ - Stability
3
+
4
+ ## [0.25.2]
5
+ - BREAKING: Agent metadata field renamed from labels to annotations across Python agents and examples.
6
+ - Thread history now limits appended messages to a context window and exposes search/count/range tools for conversation history outside that window.
7
+ - Tool decorator now supports bound instance/class methods as tools.
8
+ - Anthropic adapters omit null/unset fields in serialized payloads and log tool call errors for easier diagnostics.
9
+ - Schema document grep now requires keyword arguments for options like ignore_case.
10
+
1
11
  ## [0.25.1]
2
12
  - Added Anthropic web search and web fetch toolkits, including beta header injection and request middleware support.
3
13
  - Added a container-based shell tool to run commands in persistent containers with configurable image, mounts, and environment.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: meshagent-anthropic
3
- Version: 0.25.1
3
+ Version: 0.25.3
4
4
  Summary: Anthropic Building Blocks for Meshagent
5
5
  License-Expression: Apache-2.0
6
6
  Project-URL: Documentation, https://docs.meshagent.com
@@ -11,9 +11,9 @@ Description-Content-Type: text/markdown
11
11
  License-File: LICENSE
12
12
  Requires-Dist: pytest~=8.4
13
13
  Requires-Dist: pytest-asyncio~=0.26
14
- Requires-Dist: meshagent-api~=0.25.1
15
- Requires-Dist: meshagent-agents~=0.25.1
16
- Requires-Dist: meshagent-tools~=0.25.1
14
+ Requires-Dist: meshagent-api~=0.25.3
15
+ Requires-Dist: meshagent-agents~=0.25.3
16
+ Requires-Dist: meshagent-tools~=0.25.3
17
17
  Requires-Dist: anthropic<1.0,>=0.25
18
18
  Dynamic: license-file
19
19
 
@@ -567,6 +567,10 @@ class AnthropicMessagesAdapter(LLMAdapter[dict]):
567
567
  response=tool_response,
568
568
  )
569
569
  except Exception as ex:
570
+ logger.error(
571
+ f"error in tool call {tool_use.get('name')}:",
572
+ exc_info=ex,
573
+ )
570
574
  tool_result_content = [_text_block(f"Error: {ex}")]
571
575
  message = {
572
576
  "role": "user",
@@ -0,0 +1 @@
1
+ __version__ = "0.25.3"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: meshagent-anthropic
3
- Version: 0.25.1
3
+ Version: 0.25.3
4
4
  Summary: Anthropic Building Blocks for Meshagent
5
5
  License-Expression: Apache-2.0
6
6
  Project-URL: Documentation, https://docs.meshagent.com
@@ -11,9 +11,9 @@ Description-Content-Type: text/markdown
11
11
  License-File: LICENSE
12
12
  Requires-Dist: pytest~=8.4
13
13
  Requires-Dist: pytest-asyncio~=0.26
14
- Requires-Dist: meshagent-api~=0.25.1
15
- Requires-Dist: meshagent-agents~=0.25.1
16
- Requires-Dist: meshagent-tools~=0.25.1
14
+ Requires-Dist: meshagent-api~=0.25.3
15
+ Requires-Dist: meshagent-agents~=0.25.3
16
+ Requires-Dist: meshagent-tools~=0.25.3
17
17
  Requires-Dist: anthropic<1.0,>=0.25
18
18
  Dynamic: license-file
19
19
 
@@ -0,0 +1,6 @@
1
+ pytest~=8.4
2
+ pytest-asyncio~=0.26
3
+ meshagent-api~=0.25.3
4
+ meshagent-agents~=0.25.3
5
+ meshagent-tools~=0.25.3
6
+ anthropic<1.0,>=0.25
@@ -12,9 +12,9 @@ keywords = []
12
12
  dependencies = [
13
13
  "pytest~=8.4",
14
14
  "pytest-asyncio~=0.26",
15
- "meshagent-api~=0.25.1",
16
- "meshagent-agents~=0.25.1",
17
- "meshagent-tools~=0.25.1",
15
+ "meshagent-api~=0.25.3",
16
+ "meshagent-agents~=0.25.3",
17
+ "meshagent-tools~=0.25.3",
18
18
  "anthropic>=0.25,<1.0"
19
19
  ]
20
20
 
@@ -1 +0,0 @@
1
- __version__ = "0.25.1"
@@ -1,6 +0,0 @@
1
- pytest~=8.4
2
- pytest-asyncio~=0.26
3
- meshagent-api~=0.25.1
4
- meshagent-agents~=0.25.1
5
- meshagent-tools~=0.25.1
6
- anthropic<1.0,>=0.25