style(llmClient): explicit type utk let completion (noImplicitAnyLet)

This commit is contained in:
asepharyana
2026-08-24 22:07:33 +07:00
parent 842610b1af
commit 9ef7d005fb
@@ -380,7 +380,7 @@ export async function llmVision(
// the upstream ("Stream ended before producing a non-ping SSE event") — all // the upstream ("Stream ended before producing a non-ping SSE event") — all
// streaming retries fail identically, so retry ONCE with stream:false where // streaming retries fail identically, so retry ONCE with stream:false where
// the router assembles the complete response server-side. // the router assembles the complete response server-side.
let completion; let completion: Awaited<ReturnType<typeof llmChat>>;
try { try {
completion = await llmChat({ ...params, stream: true }); completion = await llmChat({ ...params, stream: true });
} catch (err) { } catch (err) {