AI DevKit
Search Results for

    Show / Hide Table of Contents

    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.

    Namespace: Glitch9.AIDevKit
    Assembly: .dll
    Syntax
    public interface IApiModelData

    Properties

    Api

    Declaration
    Api Api { get; }
    Property Value
    Type Description
    Api

    BaseId

    Declaration
    string BaseId { get; }
    Property Value
    Type Description
    string

    CreatedAt

    Declaration
    UnixTime? CreatedAt { get; }
    Property Value
    Type Description
    UnixTime?

    Description

    Declaration
    string Description { get; }
    Property Value
    Type Description
    string

    Family

    Declaration
    string Family { get; }
    Property Value
    Type Description
    string

    Feature

    Declaration
    ModelFeature? Feature { get; }
    Property Value
    Type Description
    ModelFeature?

    InputModality

    Declaration
    Modality? InputModality { get; }
    Property Value
    Type Description
    Modality?

    InputTokenLimit

    Declaration
    int? InputTokenLimit { get; }
    Property Value
    Type Description
    int?

    IsFineTuned

    Declaration
    bool? IsFineTuned { get; }
    Property Value
    Type Description
    bool?

    OutputModality

    Declaration
    Modality? OutputModality { get; }
    Property Value
    Type Description
    Modality?

    OutputTokenLimit

    Declaration
    int? OutputTokenLimit { get; }
    Property Value
    Type Description
    int?

    OwnedBy

    Declaration
    string OwnedBy { get; }
    Property Value
    Type Description
    string

    Prices

    Declaration
    List<ModelPrice> Prices { get; }
    Property Value
    Type Description
    List<ModelPrice>

    Provider

    Declaration
    string Provider { get; }
    Property Value
    Type Description
    string

    Version

    Declaration
    string Version { get; }
    Property Value
    Type Description
    string
    In this article
    Back to top Generated by DocFX