Files
crewAI/src/crewai/tasks/output_format.py

10 lines
176 B
Python

from enum import Enum
class OutputFormat(str, Enum):
"""Enum that represents the output format of a task."""
JSON = "json"
PYDANTIC = "pydantic"
RAW = "raw"