Signed-off-by: Jess Frazelle <github@jessfraz.com>
This commit is contained in:
Jess Frazelle
2024-08-09 17:16:09 -07:00
parent 9cbda88fcc
commit 108e3e2284
11 changed files with 940 additions and 892 deletions

View File

@ -0,0 +1,13 @@
from enum import Enum
class TextToCadModel(str, Enum):
"""A type of Text-to-CAD model.""" # noqa: E501
"""# CAD. """ # noqa: E501
CAD = "cad"
"""# KCL. """ # noqa: E501
KCL = "kcl"
def __str__(self) -> str:
return str(self.value)