mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-07-09 00:45:16 +00:00
6 lines
123 B
Python
6 lines
123 B
Python
from typing import Final, Literal
|
|
|
|
|
|
AND_CONDITION: Final[Literal["AND"]] = "AND"
|
|
OR_CONDITION: Final[Literal["OR"]] = "OR"
|