Spaces:
Runtime error
Runtime error
File size: 246 Bytes
ed4d993 |
1 2 3 4 5 6 7 8 9 10 |
from enum import Enum
class Constant(Enum):
"""Enum for constants used in the CPAL."""
narrative_input = "narrative_input"
chain_answer = "chain_answer" # natural language answer
chain_data = "chain_data" # pydantic instance
|