Skip to content

Commit

Permalink
improve type
Browse files Browse the repository at this point in the history
  • Loading branch information
mikilukasik committed Oct 8, 2024
1 parent e92e505 commit 438ce4f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions dist/types/WorkspacePreset.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ export type AutoIndexConfig = {
name: string;
segmenter: {
chunkSize: number;
overlap: number | null;
} | null;
overlap: number;
};
};
export type AiParserConfig = {
documentDescription: string;
Expand Down
4 changes: 2 additions & 2 deletions src/types/WorkspacePreset.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ export type AutoIndexConfig = {
name: string; // indices are unique by name and workspaceId. 'default-1000', 'default-2000' and 'default-4000' are reserved for legacy azure on-your-data indices
segmenter: {
chunkSize: number;
overlap: number | null;
} | null;
overlap: number;
};
};

export type AiParserConfig = {
Expand Down

0 comments on commit 438ce4f

Please sign in to comment.