Files
kittycad.py/kittycad/models/text_to_cad_model.py
zoo-github-actions-auth[bot] d724c8e706 Update api spec (#256)
* YOYO NEW API SPEC!

* I have generated the latest API!

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2024-08-22 14:11:23 -07:00

16 lines
347 B
Python

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"
"""# KCL iteration. """ # noqa: E501
KCL_ITERATION = "kcl_iteration"
def __str__(self) -> str:
return str(self.value)