tooluniverse.tools.ToolImplementationGenerator module¶
ToolImplementationGenerator
Generates domain-specific, functional code implementations based on tool descriptions and require…
- tooluniverse.tools.ToolImplementationGenerator.ToolImplementationGenerator(tool_description, tool_parameters, domain='general', complexity_level='intermediate', performance_requirements=None, *, stream_callback=None, use_cache=False, validate=True)[source]¶
Generates domain-specific, functional code implementations based on tool descriptions and require…
- Parameters:
tool_description (
str
) – Detailed description of what the tool should accomplishtool_parameters (
str
) – JSON string of parameter schema for the tooldomain (
str
) – Domain area for specialized implementationcomplexity_level (
str
) – Desired complexity level of implementationperformance_requirements (
str
) – Performance requirements or constraintsstream_callback (
Callable
, optional) – Callback for streaming output
- Return type:
Any