matt HOFFNER commited on
Commit
3a60821
·
1 Parent(s): d8af7ef
Files changed (1) hide show
  1. src/pages/api/llm.js +1 -1
src/pages/api/llm.js CHANGED
@@ -29,7 +29,7 @@ const handler = async (req, res) => {
29
 
30
  if (text !== 'null') {
31
  data += text;
32
- res.write(text === 'null' ? 'loading' : data);
33
  }
34
  }
35
 
 
29
 
30
  if (text !== 'null') {
31
  data += text;
32
+ res.write(data);
33
  }
34
  }
35