chuk-tool-processor 0.6.19__py3-none-any.whl → 0.6.21__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.
- chuk_tool_processor/execution/strategies/__init__.py +6 -0
- chuk_tool_processor-0.6.21.dist-info/METADATA +1085 -0
- {chuk_tool_processor-0.6.19.dist-info → chuk_tool_processor-0.6.21.dist-info}/RECORD +5 -5
- chuk_tool_processor-0.6.19.dist-info/METADATA +0 -698
- {chuk_tool_processor-0.6.19.dist-info → chuk_tool_processor-0.6.21.dist-info}/WHEEL +0 -0
- {chuk_tool_processor-0.6.19.dist-info → chuk_tool_processor-0.6.21.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
"""Execution strategies for tool processing."""
|
|
2
|
+
|
|
3
|
+
from chuk_tool_processor.execution.strategies.in_process_strategy import InProcessStrategy
|
|
4
|
+
from chuk_tool_processor.execution.strategies.subprocess_strategy import SubprocessStrategy
|
|
5
|
+
|
|
6
|
+
__all__ = ["InProcessStrategy", "SubprocessStrategy"]
|