@bodhiapp/reference-api-types 0.0.2 → 0.0.4

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +3 -1
  2. 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
- /** Bytes. Split multi-part files are merged and summed. */
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bodhiapp/reference-api-types",
3
- "version": "0.0.2",
3
+ "version": "0.0.4",
4
4
  "description": "TypeScript request/response types for the Bodhi Models Reference API (types only — no runtime).",
5
5
  "type": "module",
6
6
  "types": "dist/index.d.ts",