Skip to content

Commit da40377

Browse files
authored
send content, not the {id, content} to iframe (#1120)
1 parent 5d211dc commit da40377

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jumble/src/iframe-ctx.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ export const setupIframe = () =>
298298
status: res.content ?? "Completed!",
299299
llmRequestId: res.id,
300300
});
301-
return res as any;
301+
return res.content as any;
302302
} catch (e: any) {
303303
console.error("onLLMRequest error", e);
304304
failJob(jobId, "LLM request failed", e.message);

0 commit comments

Comments
 (0)