Merge pull request #21 from mohitagw15856/add-skill-playground-web-ui

fix(web): propagate mid-stream API errors and raise max_tokens
This commit is contained in:
mohitagw15856
2026-06-09 12:12:47 +01:00
committed by GitHub
2 changed files with 13 additions and 10 deletions
+12 -9
View File
@@ -170,7 +170,7 @@ async function run() {
},
body: JSON.stringify({
model: el('model').value,
max_tokens: 4096,
max_tokens: 8192,
stream: true,
system,
messages: [{ role: 'user', content: userMessage }],
@@ -193,15 +193,18 @@ async function run() {
if (!line.startsWith('data:')) continue;
const payload = line.slice(5).trim();
if (!payload || payload === '[DONE]') continue;
let evt;
try {
const evt = JSON.parse(payload);
if (evt.type === 'content_block_delta' && evt.delta && evt.delta.text) {
acc += evt.delta.text;
renderMarkdown(out, acc, true);
} else if (evt.type === 'error') {
throw new Error(evt.error ? evt.error.message : 'stream error');
}
} catch (_) { /* ignore partial */ }
evt = JSON.parse(payload);
} catch (_) {
continue; // skip an unparseable / partial SSE line
}
if (evt.type === 'content_block_delta' && evt.delta && evt.delta.text) {
acc += evt.delta.text;
renderMarkdown(out, acc, true);
} else if (evt.type === 'error') {
throw new Error(evt.error ? evt.error.message : 'Stream error from the API.');
}
}
}
renderMarkdown(out, acc, false);
+1 -1
View File
File diff suppressed because one or more lines are too long