Skip to content

Commit

Permalink
add support for fp32 models
Browse files Browse the repository at this point in the history
  • Loading branch information
guschmue committed May 7, 2024
1 parent 06a4ee4 commit 80c940d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion chat/chat.js
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,8 @@ const preCannedQueries = {
document.getElementById('user-input').addEventListener('keydown', function (e) {
if (e.ctrlKey) {
if (e.key === 'Enter') {
submitRequest(true);
// make this true to add to context
submitRequest(false);
} else {
const query = preCannedQueries[e.key];
if (query) {
Expand Down

0 comments on commit 80c940d

Please sign in to comment.