Skip to content

Commit

Permalink
segmenter is optional
Browse files Browse the repository at this point in the history
  • Loading branch information
mikilukasik committed Oct 8, 2024
1 parent be165c5 commit a8c68c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/types/WorkspacePreset.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export type AutoIndexConfig = {
segmenter: {
chunkSize: number;
overlap: number;
};
} | null;
};
export type AiParserConfig = {
documentDescription: string;
Expand Down
2 changes: 1 addition & 1 deletion src/types/WorkspacePreset.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export type AutoIndexConfig = {
segmenter: {
chunkSize: number;
overlap: number;
};
} | null;
};

export type AiParserConfig = {
Expand Down

0 comments on commit a8c68c4

Please sign in to comment.