mirror of
https://github.com/Ladebeze66/llm_ticket3.git
synced 2026-02-04 15:20:22 +01:00
27 lines
526 B
Python
27 lines
526 B
Python
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
|
|
from __future__ import annotations
|
|
from mistralai.types import BaseModel
|
|
from typing import List, Union
|
|
from typing_extensions import TypeAliasType, TypedDict
|
|
|
|
|
|
LocTypedDict = TypeAliasType("LocTypedDict", Union[str, int])
|
|
|
|
|
|
Loc = TypeAliasType("Loc", Union[str, int])
|
|
|
|
|
|
class ValidationErrorTypedDict(TypedDict):
|
|
loc: List[LocTypedDict]
|
|
msg: str
|
|
type: str
|
|
|
|
|
|
class ValidationError(BaseModel):
|
|
loc: List[Loc]
|
|
|
|
msg: str
|
|
|
|
type: str
|