Skip to content

Commit

Permalink
Add more partitions
Browse files Browse the repository at this point in the history
  • Loading branch information
logancyang committed Dec 24, 2024
1 parent 62ecde2 commit ffbce01
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion src/settings/components/QASettings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,24 @@ const QASettings: React.FC<QASettingsProps> = ({ vectorStoreManager }) => {
description="Number of partitions for Copilot index. Default is 1. Increase if you have issues indexing large vaults. Warning: Changes require clearing and rebuilding the index!"
value={settings.numPartitions.toString()}
onChange={handlePartitionsChange}
options={["1", "2", "3", "4", "5", "6", "7", "8"]}
options={[
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"12",
"16",
"20",
"24",
"28",
"32",
"36",
"40",
]}
/>
<TextAreaComponent
name="Exclusions"
Expand Down

0 comments on commit ffbce01

Please sign in to comment.