mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-09 08:08:32 +00:00
10 lines
176 B
Python
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"
|