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
object: Annotated[Literal["model"], Field("model", description="Type of the object.")]
27
+
id: Annotated[str, Field(..., description="The model identifier, which can be referenced in the API endpoints.")]
28
+
type: Annotated[ModelType|None, Field(default=None, description="The type of the model, which can be used to identify the model type.", examples=["text-generation"])] # fmt: off
29
+
aliases: Annotated[list[str], Field(default_factory=list, description="Aliases of the model. It will be used to identify the model by users.", examples=[["model-alias", "model-alias-2"]])] # fmt: off
30
+
created: Annotated[int, Field(..., description="Time of creation, as Unix timestamp.")]
31
+
owned_by: Annotated[str, Field(..., description="The organization that owns the model.")]
32
+
max_context_length: Annotated[int|None, Field(default=None, description="Maximum amount of tokens a context could contains. Makes sure it is the same for all models.")] # fmt: off
33
+
costs: Annotated[ModelCosts, Field(default_factory=ModelCosts, description="Costs of the model.")]
0 commit comments