chuk-tool-processor 0.6.29__py3-none-any.whl → 0.7.0__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.

Potentially problematic release.


This version of chuk-tool-processor might be problematic. Click here for more details.

@@ -41,8 +41,8 @@ async def setup_mcp_http_streamable(
41
41
  enable_rate_limiting: bool = False,
42
42
  global_rate_limit: int | None = None,
43
43
  tool_rate_limits: dict[str, tuple] | None = None,
44
- enable_retries: bool = True,
45
- max_retries: int = 3,
44
+ enable_retries: bool = False, # CHANGED: Disabled to allow OAuth refresh to work properly
45
+ max_retries: int = 0, # CHANGED: 0 retries for HTTP (OAuth refresh happens at transport level)
46
46
  namespace: str = "http",
47
47
  oauth_refresh_callback: any | None = None, # NEW: OAuth token refresh callback
48
48
  ) -> tuple[ToolProcessor, StreamManager]:
@@ -37,8 +37,8 @@ async def setup_mcp_sse( # noqa: C901 - long but just a config facade
37
37
  enable_rate_limiting: bool = False,
38
38
  global_rate_limit: int | None = None,
39
39
  tool_rate_limits: dict[str, tuple] | None = None,
40
- enable_retries: bool = True,
41
- max_retries: int = 3,
40
+ enable_retries: bool = False, # CHANGED: Disabled to allow OAuth refresh to work properly
41
+ max_retries: int = 0, # CHANGED: 0 retries for SSE (OAuth refresh happens at transport level)
42
42
  namespace: str = "sse",
43
43
  oauth_refresh_callback: any | None = None, # NEW: OAuth token refresh callback
44
44
  ) -> tuple[ToolProcessor, StreamManager]:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: chuk-tool-processor
3
- Version: 0.6.29
3
+ Version: 0.7.0
4
4
  Summary: Async-native framework for registering, discovering, and executing tools referenced in LLM responses
5
5
  Author-email: CHUK Team <chrishayuk@somejunkmailbox.com>
6
6
  Maintainer-email: CHUK Team <chrishayuk@somejunkmailbox.com>
@@ -20,7 +20,7 @@ Classifier: Framework :: AsyncIO
20
20
  Classifier: Typing :: Typed
21
21
  Requires-Python: >=3.11
22
22
  Description-Content-Type: text/markdown
23
- Requires-Dist: chuk-mcp>=0.6
23
+ Requires-Dist: chuk-mcp>=0.7.1
24
24
  Requires-Dist: dotenv>=0.9.9
25
25
  Requires-Dist: psutil>=7.0.0
26
26
  Requires-Dist: pydantic>=2.11.3
@@ -19,8 +19,8 @@ chuk_tool_processor/logging/metrics.py,sha256=8LRHjgkfdcQnh4H7AP2FJDfcRO3q1UpsBS
19
19
  chuk_tool_processor/mcp/__init__.py,sha256=xqtoSGX1_5jZDJ6AKJpBByaytS22baDOrhzFiecvVSs,1031
20
20
  chuk_tool_processor/mcp/mcp_tool.py,sha256=qCLyapwbGtqUFj7-pTIov9XJEBV8dL_qEpprjcjXWAk,19175
21
21
  chuk_tool_processor/mcp/register_mcp_tools.py,sha256=OyHczwVnqhvBZO9g4I0T56EPMvFYBOl0Y2ivNPdKjCE,4822
22
- chuk_tool_processor/mcp/setup_mcp_http_streamable.py,sha256=8NCjeEZjV0KrapCqAvGh6jr5G8B24xOxxAaKUyoiykw,4935
23
- chuk_tool_processor/mcp/setup_mcp_sse.py,sha256=gvixVml8HN2BdM9Ug_JYp0yHqA1owieyX8Yxx0HNOqg,4174
22
+ chuk_tool_processor/mcp/setup_mcp_http_streamable.py,sha256=nPYn1dj7FJicTDMbyfzZ3lBz3LDIa5fN0PY9pKCHj-k,5071
23
+ chuk_tool_processor/mcp/setup_mcp_sse.py,sha256=u5mAsU0edhD93CzJTaMv-tsYs6qZOLJOlPpgiUs5p04,4309
24
24
  chuk_tool_processor/mcp/setup_mcp_stdio.py,sha256=KxCC0BL0C6z5ZHxBzPhWZC9CKrGUACXqx1tkjru-UYI,2922
25
25
  chuk_tool_processor/mcp/stream_manager.py,sha256=398j65oGvMMwi_EC9qS2EPHXvGefUDJ4IR9Tkg4jaGY,34781
26
26
  chuk_tool_processor/mcp/transport/__init__.py,sha256=od-7f_cYv31_ioZCJu57ozA8IXywMyf-0N4HlM2J_bU,841
@@ -55,7 +55,7 @@ chuk_tool_processor/registry/providers/__init__.py,sha256=iGc_2JzlYJSBRQ6tFbX781
55
55
  chuk_tool_processor/registry/providers/memory.py,sha256=udfboAHH0gRxtnf3GsI3wMshhobJxYnCkMwKjQ_uqkw,5017
56
56
  chuk_tool_processor/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
57
57
  chuk_tool_processor/utils/validation.py,sha256=jHPO65sB61ynm9P6V3th4pN7j4u0SQhYR-bstj5QjnI,4175
58
- chuk_tool_processor-0.6.29.dist-info/METADATA,sha256=_kc0aseQ8XgB6T3HzaIzxhp9LTh8z7ZgnDMJ9intc2M,42164
59
- chuk_tool_processor-0.6.29.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
60
- chuk_tool_processor-0.6.29.dist-info/top_level.txt,sha256=7lTsnuRx4cOW4U2sNJWNxl4ZTt_J1ndkjTbj3pHPY5M,20
61
- chuk_tool_processor-0.6.29.dist-info/RECORD,,
58
+ chuk_tool_processor-0.7.0.dist-info/METADATA,sha256=sUFlbPgPwZDDAkQoxVT95q3cc-3IuCdxU3w-lcFsY7w,42165
59
+ chuk_tool_processor-0.7.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
60
+ chuk_tool_processor-0.7.0.dist-info/top_level.txt,sha256=7lTsnuRx4cOW4U2sNJWNxl4ZTt_J1ndkjTbj3pHPY5M,20
61
+ chuk_tool_processor-0.7.0.dist-info/RECORD,,