From e4fbd9bf26030aa00a4d753c9695edbed257b7fe Mon Sep 17 00:00:00 2001 From: Greyson LaLonde Date: Sun, 30 Nov 2025 22:29:52 -0500 Subject: [PATCH] chore: remove max_retries reference from docs --- docs/en/concepts/tasks.mdx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/docs/en/concepts/tasks.mdx b/docs/en/concepts/tasks.mdx index fc69f07e2..4d70b64a5 100644 --- a/docs/en/concepts/tasks.mdx +++ b/docs/en/concepts/tasks.mdx @@ -63,10 +63,6 @@ crew = Crew( | **Guardrails** _(optional)_ | `guardrails` | `Optional[List[Callable] | List[str]]` | List of guardrails to validate task output before proceeding to next task. | | **Guardrail Max Retries** _(optional)_ | `guardrail_max_retries` | `Optional[int]` | Maximum number of retries when guardrail validation fails. Defaults to 3. | - - The task attribute `max_retries` is deprecated and will be removed in v1.0.0. - Use `guardrail_max_retries` instead to control retry attempts when a guardrail fails. - ## Creating Tasks