feat(FN-669): complete Step 3 — update ModelsResponse interface to include favoriteModels

This commit is contained in:
gsxdsm
2026-04-01 22:21:11 -07:00
parent 9cc45e2973
commit c430a8eccc

View File

@@ -343,6 +343,7 @@ export interface ModelInfo {
export interface ModelsResponse { export interface ModelsResponse {
models: ModelInfo[]; models: ModelInfo[];
favoriteProviders: string[]; favoriteProviders: string[];
favoriteModels: string[];
} }
/** Fetch available AI models from the model registry along with favoriteProviders */ /** Fetch available AI models from the model registry along with favoriteProviders */