chore: add toolIds type

This commit is contained in:
Silentoplayz 2025-06-18 01:55:43 -04:00
parent 35be40c932
commit d66285f926

View File

@ -1587,12 +1587,13 @@ export interface ModelConfig {
} }
export interface ModelMeta { export interface ModelMeta {
toolIds: never[];
description?: string; description?: string;
capabilities?: object; capabilities?: object;
profile_image_url?: string; profile_image_url?: string;
} }
export interface ModelParams {} export interface ModelParams { }
export type GlobalModelConfig = ModelConfig[]; export type GlobalModelConfig = ModelConfig[];