Spaces:
Runtime error
Runtime error
File size: 285 Bytes
10efc14 |
1 2 3 4 5 6 7 8 9 10 11 |
from enum import Enum
class ConversationStyle(Enum):
PRECISE: str = "precise"
BALANCED: str = "balanced"
CREATIVE: str = "creative"
PRECISE_OFFLINE: str = "precise-offline"
BALANCED_OFFLINE: str = "balanced-offline"
CREATIVE_OFFLINE: str = "creative-offline"
|