Interface IApiModelData
Interface for model data retrieved from various AI APIs. (e.g., /v1/models)
This interface defines the properties that all model data should implement.
It is used to standardize the model data across different AI providers.
Assembly: .dll
Syntax
public interface IApiModelData
Properties
Api
Declaration
Property Value
BaseId
Declaration
Property Value
CreatedAt
Declaration
UnixTime? CreatedAt { get; }
Property Value
Type |
Description |
UnixTime? |
|
Description
Declaration
string Description { get; }
Property Value
Family
Declaration
Property Value
Feature
Declaration
ModelFeature? Feature { get; }
Property Value
Declaration
Modality? InputModality { get; }
Property Value
Declaration
int? InputTokenLimit { get; }
Property Value
IsFineTuned
Declaration
bool? IsFineTuned { get; }
Property Value
OutputModality
Declaration
Modality? OutputModality { get; }
Property Value
OutputTokenLimit
Declaration
int? OutputTokenLimit { get; }
Property Value
OwnedBy
Declaration
Property Value
Prices
Declaration
List<ModelPrice> Prices { get; }
Property Value
Provider
Declaration
Property Value
Version
Declaration
Property Value