@bodhiapp/reference-api-types 0.0.2 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +3 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -19,7 +19,9 @@ export type SortOrder = 'asc' | 'desc';
|
|
|
19
19
|
/** One quantization variant of a model (single-model response only). */
|
|
20
20
|
export interface Quant {
|
|
21
21
|
name: string;
|
|
22
|
-
/**
|
|
22
|
+
/** The actual GGUF filename to pull (repo-relative, e.g. "Phi-3.5-mini-instruct-Q4_K_M.gguf"). */
|
|
23
|
+
filename: string;
|
|
24
|
+
/** Bytes. v1 does not support split multi-part GGUFs — sharded quants are excluded. */
|
|
23
25
|
size: number | null;
|
|
24
26
|
/** Bit-width (Q4_K_M→4, Q8_0→8, F16/BF16→16). */
|
|
25
27
|
bits: number | null;
|
package/package.json
CHANGED