mirror of
https://github.com/Ladebeze66/llm_ticket3.git
synced 2026-02-04 15:20:22 +01:00
27 lines
703 B
Python
27 lines
703 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 ModelCapabilitiesTypedDict(TypedDict):
|
|
completion_chat: NotRequired[bool]
|
|
completion_fim: NotRequired[bool]
|
|
function_calling: NotRequired[bool]
|
|
fine_tuning: NotRequired[bool]
|
|
vision: NotRequired[bool]
|
|
|
|
|
|
class ModelCapabilities(BaseModel):
|
|
completion_chat: Optional[bool] = True
|
|
|
|
completion_fim: Optional[bool] = False
|
|
|
|
function_calling: Optional[bool] = True
|
|
|
|
fine_tuning: Optional[bool] = False
|
|
|
|
vision: Optional[bool] = False
|