Skip to content

Commit

Permalink
fix (ai/core): fix minor typo (#3004)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshinorisano committed Sep 14, 2024
1 parent 63d5481 commit 461c9fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/ai/core/prompt/prepare-call-settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ export function prepareCallSettings({
if (typeof topK !== 'number') {
throw new InvalidArgumentError({
parameter: 'topK',
value: topP,
message: 'topP must be a number',
value: topK,
message: 'topK must be a number',
});
}
}
Expand Down

0 comments on commit 461c9fd

Please sign in to comment.