Files
langgraph/langgraph/utils.py
T
2024-01-07 19:39:10 -08:00

9 lines
133 B
Python

import enum
# Before Python 3.11 native StrEnum is not available
class StrEnum(str, enum.Enum):
"""A string enum."""
pass