9 lines
338 B
TypeScript
9 lines
338 B
TypeScript
/**
|
|
* List available models with optional fuzzy search
|
|
*/
|
|
import type { ModelRuntime } from "../core/model-runtime.ts";
|
|
/**
|
|
* List available models, optionally filtered by search pattern
|
|
*/
|
|
export declare function listModels(modelRuntime: ModelRuntime, searchPattern?: string): Promise<void>;
|
|
//# sourceMappingURL=list-models.d.ts.map
|