Skip to content

Commit 2abaf09

Browse files
committed
Tweaking spellbook spellcasting params
* Don't validate, which I believe should improve speed * Max out at 5 examples, which should be faster than 25
1 parent c0ee928 commit 2abaf09

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

typescript/packages/jumble/src/views/spellbook/SpellbookLaunchView.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ export default function SpellbookLaunchView() {
3838
prompt: "",
3939
options: {
4040
format: "json",
41-
validate: true,
42-
maxExamples: 25,
41+
validate: false,
42+
maxExamples: 5,
4343
},
4444
}),
4545
});

0 commit comments

Comments
 (0)