2024-08-09 17:16:09 -07:00
|
|
|
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"
|
2024-08-22 14:11:23 -07:00
|
|
|
"""# KCL iteration. """ # noqa: E501
|
|
|
|
KCL_ITERATION = "kcl_iteration"
|
2024-08-09 17:16:09 -07:00
|
|
|
|
|
|
|
def __str__(self) -> str:
|
|
|
|
return str(self.value)
|