2025-04-02 09:01:55 +02:00

26 lines
726 B
Python

"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
from __future__ import annotations
from mistralai_gcp.types import BaseModel
from mistralai_gcp.utils import validate_const
import pydantic
from pydantic.functional_validators import AfterValidator
from typing import Literal, Optional
from typing_extensions import Annotated, NotRequired, TypedDict
class PredictionTypedDict(TypedDict):
type: Literal["content"]
content: NotRequired[str]
class Prediction(BaseModel):
TYPE: Annotated[
Annotated[
Optional[Literal["content"]], AfterValidator(validate_const("content"))
],
pydantic.Field(alias="type"),
] = "content"
content: Optional[str] = ""