Source code for kittycad.models.ai_prompt_type

from enum import Enum


[docs]class AiPromptType(str, Enum): """A type of AI prompt.""" # noqa: E501 """# Text to CAD. """ # noqa: E501 TEXT_TO_CAD = "text_to_cad" def __str__(self) -> str: return str(self.value)