We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4cdfd6e commit 1255827Copy full SHA for 1255827
examples/server/public/index.html
@@ -619,7 +619,6 @@ <h3 class="text-lg font-bold mb-6">Settings</h3>
619
endpoint: '/chat/completions',
620
};
621
for await (const chunk of llama(prompt, params, config)) {
622
- // const stop = chunk.data.stop;
623
const addedContent = chunk.data.choices[0].delta.content;
624
const stop = chunk.data.choices[0].finish_reason;
625
if (stop) {
0 commit comments