Skip to content

Commit

Permalink
[gguf] Export MetadataBaseValue (#571)
Browse files Browse the repository at this point in the history
Follow up to #562
  • Loading branch information
mishig25 committed Mar 21, 2024
1 parent 8656cb4 commit 32d403e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/gguf/src/gguf.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { MetadataValue, Version, GGUFMetadata, GGUFTensorInfo, GGUFParseOutput } from "./types";
import { GGUFValueType } from "./types";

export type { MetadataValue, Version, GGUFMetadata, GGUFTensorInfo, GGUFParseOutput } from "./types";
export type { MetadataBaseValue, MetadataValue, Version, GGUFMetadata, GGUFTensorInfo, GGUFParseOutput } from "./types";
export { GGUFValueType, GGMLQuantizationType } from "./types";

const isVersion = (version: number): version is Version => version === 1 || version === 2 || version === 3;
Expand Down

0 comments on commit 32d403e

Please sign in to comment.