mirror of
https://github.com/Ladebeze66/llm_ticket3.git
synced 2026-02-04 15:10:21 +01:00
27 lines
693 B
Python
27 lines
693 B
Python
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
|
|
from __future__ import annotations
|
|
from mistralai.types import BaseModel
|
|
from typing import Optional
|
|
from typing_extensions import NotRequired, TypedDict
|
|
|
|
|
|
class DeleteModelOutTypedDict(TypedDict):
|
|
id: str
|
|
r"""The ID of the deleted model."""
|
|
object: NotRequired[str]
|
|
r"""The object type that was deleted"""
|
|
deleted: NotRequired[bool]
|
|
r"""The deletion status"""
|
|
|
|
|
|
class DeleteModelOut(BaseModel):
|
|
id: str
|
|
r"""The ID of the deleted model."""
|
|
|
|
object: Optional[str] = "model"
|
|
r"""The object type that was deleted"""
|
|
|
|
deleted: Optional[bool] = True
|
|
r"""The deletion status"""
|