Update api spec (#411)

* YOYO NEW API SPEC!

* I have generated the latest API!

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
zoo-github-actions-auth[bot]
2025-04-03 09:15:39 -07:00
committed by GitHub
parent d32c643b1e
commit a7f6433735
7 changed files with 980 additions and 857 deletions

View File

@ -0,0 +1,15 @@
from enum import Enum
class ApiEndpoint(str, Enum):
"""Types of API endpoints.""" # noqa: E501
"""# The modeling API. """ # noqa: E501
MODELING = "modeling"
"""# Machine learning API. """ # noqa: E501
ML = "ml"
"""# File API. """ # noqa: E501
FILE = "file"
def __str__(self) -> str:
return str(self.value)