Interface IModelConfig

Model configuration.

interface IModelConfig {
    id: string;
    isActive: boolean;
    maxContextTokens: number;
    name: string;
}

Properties

id: string

Model identifier

isActive: boolean

Whether this model is currently selected

maxContextTokens: number

Maximum context window size in tokens

name: string

Human-readable model name