matthoffner commited on
Commit
160e44f
·
1 Parent(s): e86b927

Update src/pages/api/llm.js

Browse files
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);
33
  }
34
  }
35
 
 
29
 
30
  if (text !== 'null') {
31
  data += text;
32
+ res.write(data);
33
  }
34
  }
35