Add the codex bridge prompt in the html export

This commit is contained in:
Armin Ronacher 2026-01-06 14:21:34 +01:00
parent a236e62025
commit 6a5f04ce1f
8 changed files with 103 additions and 10 deletions

View file

@ -431,7 +431,7 @@ export async function runRpcMode(session: AgentSession): Promise<never> {
}
case "export_html": {
const path = session.exportToHtml(command.outputPath);
const path = await session.exportToHtml(command.outputPath);
return success(id, "export_html", { path });
}