Skip to content

Commit 2813618

Browse files
committed
chore: remove export, add disableEmbeddingsValidation to test
1 parent 5e865b5 commit 2813618

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

src/common/config.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,6 @@ export const UserConfigSchema = z4.object({
179179
export type Similarity = z4.infer<typeof UserConfigSchema>["vectorSearchSimilarityFunction"];
180180
export type PreviewFeature = z4.infer<typeof UserConfigSchema>["previewFeatures"][number];
181181
export type UserConfig = z4.infer<typeof UserConfigSchema> & CliOptions;
182-
export type Logger = UserConfig["loggers"][number];
183182

184183
export const config = setupUserConfig({
185184
cli: process.argv,

tests/unit/common/config.test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ describe("config", () => {
4545
voyageApiKey: "",
4646
vectorSearchDimensions: 1024,
4747
vectorSearchSimilarityFunction: "euclidean",
48+
disableEmbeddingsValidation: false,
4849
previewFeatures: [],
4950
};
5051

0 commit comments

Comments
 (0)