mirror of
https://github.com/Ladebeze66/llm_ticket3.git
synced 2025-12-18 07:27:46 +01:00
25 lines
627 B
Python
25 lines
627 B
Python
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
|
|
from __future__ import annotations
|
|
from mistralai_azure.types import BaseModel
|
|
from mistralai_azure.utils import FieldMetadata, SecurityMetadata
|
|
from typing_extensions import Annotated, TypedDict
|
|
|
|
|
|
class SecurityTypedDict(TypedDict):
|
|
api_key: str
|
|
|
|
|
|
class Security(BaseModel):
|
|
api_key: Annotated[
|
|
str,
|
|
FieldMetadata(
|
|
security=SecurityMetadata(
|
|
scheme=True,
|
|
scheme_type="http",
|
|
sub_type="bearer",
|
|
field_name="Authorization",
|
|
)
|
|
),
|
|
]
|