From 922a7ba9bd7f4281e7c3d016cfcade071d78b59d Mon Sep 17 00:00:00 2001 From: Lucas Gomide Date: Tue, 29 Apr 2025 14:28:21 -0300 Subject: [PATCH] docs: update TaskGuardrail doc strings --- src/crewai/tasks/task_guardrail.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/crewai/tasks/task_guardrail.py b/src/crewai/tasks/task_guardrail.py index 96d931e2d..19879167c 100644 --- a/src/crewai/tasks/task_guardrail.py +++ b/src/crewai/tasks/task_guardrail.py @@ -19,7 +19,7 @@ class TaskGuardrailResult(BaseModel): class TaskGuardrail: - """A task that validates the output of another task using generated Python code. + """It validates the output of another task using an LLM. This class is used to validate the output from a Task based on specified criteria. It uses an LLM to validate the output and provides a feedback if the output is not valid.