Type Alias: GgufFileInfoSource
ts
type GgufFileInfoSource =
| {
type: "path";
path: string;
}
| {
type: "uri";
uri: string;
};Defined in: gguf/types/GgufFileInfoTypes.ts:90