You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 12, 2026. It is now read-only.
There should be added a provider_name field to Model class (below).
class Model(BaseModel):
model_info: ModelInfo = Field(
...,
description='Basic identifying information about the model - represents the core identity and naming of the model without technical details',
)
configuration: Configuration = Field(
...,
description="Technical specifications and implementation details of the model - defines how the model is structured and where it's hosted",
)
inference_settings: InferenceSettings = Field(
...,
description='Runtime settings and parameters for model inference - controls how the model generates outputs and performs during execution',
)