Source code for kittycad.models.ml_copilot_system_command
from enum import Enum
[docs]
class MlCopilotSystemCommand(str, Enum):
"""The type of system command that can be sent to the ML Copilot.""" # noqa: E501
"""# Reset the conversation state, by creating a new state. """ # noqa: E501
NEW = "new"
"""# Disconnect the client, which can be used to end the session. """ # noqa: E501
BYE = "bye"
def __str__(self) -> str:
return str(self.value)