Skip to content

toolkit_task

ToolkitTask

Bases: PromptTask

Source code in griptape/tasks/toolkit_task.py
@define
class ToolkitTask(PromptTask):
    def try_run(self) -> BaseArtifact:
        warnings.warn(
            "`ToolkitTask` is deprecated and will be removed in a future release. `PromptTask` is a drop-in replacement.",
            DeprecationWarning,
            stacklevel=2,
        )

        return super().try_run()

try_run()

Source code in griptape/tasks/toolkit_task.py
def try_run(self) -> BaseArtifact:
    warnings.warn(
        "`ToolkitTask` is deprecated and will be removed in a future release. `PromptTask` is a drop-in replacement.",
        DeprecationWarning,
        stacklevel=2,
    )

    return super().try_run()