Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/pollilib-smoke.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ await step('textModels returns JSON', async () => {
});

await step('text(prompt) returns string', async () => {
const out = await textGet('Say ok', { model: 'openai-mini', referrer: REFERRER }, client);
const out = await textGet('Say ok', { model: 'openai-mini' }, client);
if (typeof out !== 'string' || !out.length) throw new Error('empty text output');
return `len=${out.length}`;
});
Expand Down
Loading