Skip to content

Commit

Permalink
fix TI appearing as key in prompt
Browse files Browse the repository at this point in the history
  • Loading branch information
Mary Hipp authored and Mary Hipp committed Feb 26, 2024
1 parent a5b0ded commit 63f7c61
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const EmbeddingSelect = memo(({ onSelect, onClose }: EmbeddingSelectProps
if (!embedding) {
return;
}
onSelect(embedding.key);
onSelect(embedding.name);
},
[onSelect]
);
Expand Down

0 comments on commit 63f7c61

Please sign in to comment.