fix llm guardrail import and docs

This commit is contained in:
João Moura
2025-05-22 21:47:23 -07:00
parent 2d6deee753
commit beddc72189
2 changed files with 4 additions and 2 deletions

View File

@@ -9,6 +9,7 @@ from crewai.llm import LLM
from crewai.llms.base_llm import BaseLLM
from crewai.process import Process
from crewai.task import Task
from crewai.tasks.llm_guardrail import LLMGuardrail
from crewai.tasks.task_output import TaskOutput
warnings.filterwarnings(
@@ -29,4 +30,5 @@ __all__ = [
"Flow",
"Knowledge",
"TaskOutput",
"LLMGuardrail",
]