you can now press enter in visualize log probs to execute the task

This commit is contained in:
ali asaria
2025-04-07 15:55:45 -04:00
parent 7c7d656fb0
commit 0baa12f1d4

View File

@@ -202,6 +202,12 @@ export default function CompletionsPage({
slotProps={{
input: {
ref: inputRef,
onKeyDown: (e) => {
if (e.key === 'Enter' && !e.shiftKey) {
e.preventDefault();
handleSend();
}
},
},
}}
/>