feat(ai): SSE streaming for foreground Mission Runner

Enable real-time token streaming during the planner "calling-llm" phase
so the user sees live progress ("empfange Plan… 128 tokens") instead of
a static spinner. The parser still receives the full text once complete —
no partial-JSON risk.

Changes:
- Extract shared SSE parser from playground into @mana/shared-llm/sse-parser
- remote.ts: use stream:true when onToken callback is provided
- AiPlanInput: add optional onToken field (shared-ai)
- ai-plan task: pass onToken through to backend.generate()
- runner.ts: throttled (500ms) phaseDetail updates during streaming
- Playground: refactored to use shared SSE parser

Also includes: AI agent architecture comparison report (docs/reports/)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Till JS 2026-04-16 12:32:43 +02:00
parent 8a0bf93699
commit be81d11dc3
9 changed files with 633 additions and 106 deletions

View file

@ -7,13 +7,12 @@
*
* The endpoint is `/v1/chat/completions` and the wire format is
* straight OpenAI SSE: `data: {…}\n\n` lines, terminated by
* `data: [DONE]`. The hand-rolled parser is the same shape as the
* existing playground client (apps/mana/apps/web/src/lib/modules/
* playground/llm.ts) so the two consumers stay aligned and can be
* unified later if we want.
* `data: [DONE]`. The SSE parser lives in `../sse-parser.ts` and is
* shared with the playground client.
*/
import { BackendUnreachableError, ProviderBlockedError } from '../errors';
import { consumeSSEStream } from '../sse-parser';
import type { LlmTier } from '../tiers';
import type { GenerateResult, LlmTaskRequest } from '../types';
@ -33,31 +32,20 @@ export function resolveLlmBaseUrl(): string {
/**
* Send a chat completion to mana-llm and return the result.
*
* Implementation notes:
* When `req.onToken` is set, uses SSE streaming (`stream: true`) so
* the caller receives per-token callbacks as they arrive used by the
* Mission Runner to show live progress during the "calling-llm" phase.
*
* - We use the NON-streaming endpoint (`stream: false`). Curl tests
* from the same hostname showed that mana-llm's streaming endpoint
* works perfectly when called from outside the browser, but the
* browser receives `totalFrames=0` (an empty response body) for
* reasons that almost certainly trace back to CORS + credentials
* + streaming-body interactions. Non-streaming is a single JSON
* response, much friendlier to the browser fetch API.
* When `req.onToken` is absent, uses the non-streaming endpoint
* (`stream: false`) which returns a single JSON response simpler and
* sufficient for tasks that only care about the final result.
*
* - We do NOT pass `credentials: 'include'`. The mana-llm service
* doesn't require user auth (the API key middleware accepts
* anonymous requests), and `credentials: 'include'` plus
* `Access-Control-Allow-Origin: *` is one of the patterns that
* silently breaks the response body in browsers. Verified by
* comparing curl-from-server (no creds, works) vs browser fetch
* (with creds, empty body).
*
* - For tasks that registered an `onToken` callback (legacy chat-
* style streaming UX), we fire it ONCE with the full content at
* the end. That's a degraded streaming experience, but no current
* shared-llm caller actually consumes the per-token stream the
* queue + watcher model only cares about the final result. The
* playground module uses its own client (apps/.../modules/
* playground/llm.ts) which keeps real streaming for live UX.
* We do NOT pass `credentials: 'include'` the mana-llm service
* accepts anonymous requests, and `credentials: 'include'` plus
* `Access-Control-Allow-Origin: *` silently breaks the response body
* in browsers (verified by comparing curl vs browser fetch). The
* playground module uses the same no-credentials pattern with
* `stream: true` and it works fine.
*
* `tier` is only used for error tagging both 'mana-server' and
* 'cloud' call the same endpoint with different model strings.
@ -69,6 +57,7 @@ export async function callManaLlmStreaming(
): Promise<GenerateResult> {
const url = `${resolveLlmBaseUrl()}/v1/chat/completions`;
const start = performance.now();
const useStreaming = typeof req.onToken === 'function';
let res: Response;
try {
@ -80,7 +69,7 @@ export async function callManaLlmStreaming(
messages: req.messages,
temperature: req.temperature ?? 0.7,
max_tokens: req.maxTokens ?? 1024,
stream: false,
stream: useStreaming,
}),
});
} catch (err) {
@ -102,6 +91,25 @@ export async function callManaLlmStreaming(
throw new BackendUnreachableError(tier, res.status, text);
}
// ── Streaming path: SSE with per-token callbacks ───────────
if (useStreaming && res.body) {
let usage = { promptTokens: 0, completionTokens: 0, totalTokens: 0 };
const content = await consumeSSEStream(res.body, req.onToken, (u) => {
usage = {
promptTokens: u.promptTokens,
completionTokens: u.completionTokens,
totalTokens: u.promptTokens + u.completionTokens,
};
});
if (!content) {
console.warn(`[shared-llm:${tier}] empty streaming content`, { model });
}
return { content, usage, latencyMs: Math.round(performance.now() - start) };
}
// ── Non-streaming path: single JSON response ──────────────
let json: {
choices?: Array<{
message?: { content?: string; reasoning?: string };
@ -119,12 +127,7 @@ export async function callManaLlmStreaming(
// Field ordering: prefer the canonical OpenAI `message.content` first.
// If that's empty AND `message.reasoning` is set, fall back to it —
// reasoning models like Gemma 4 emit their thought process there
// when given too few tokens to also produce a final answer (we hit
// this with max_tokens=10 / no system prompt: content was "" while
// reasoning had the half-finished thought). For our title task this
// rarely happens because the system prompt is directive, but the
// fallback is cheap and protects against future tasks that might
// trigger longer reasoning chains.
// when given too few tokens to also produce a final answer.
const choice = json.choices?.[0];
const content = choice?.message?.content ?? choice?.message?.reasoning ?? choice?.text ?? '';
@ -132,14 +135,6 @@ export async function callManaLlmStreaming(
console.warn(`[shared-llm:${tier}] empty completion content`, { model, json });
}
// One-shot "streaming" for any caller that registered onToken: emit
// the whole content as a single chunk at the end. The current
// orchestrator + queue model never reads tokens incrementally for
// remote tiers anyway.
if (content && req.onToken) {
req.onToken(content);
}
return {
content,
usage: {

View file

@ -0,0 +1,74 @@
/**
* Shared SSE parser for OpenAI-compatible streaming responses.
*
* The wire format from mana-llm is straight OpenAI: `data: {…}\n\n`
* lines with a sentinel `data: [DONE]`. This ~40-line reader is simpler
* than adding a dependency and is shared between the LLM orchestrator
* (backends/remote.ts) and the playground module.
*/
export interface SSEUsage {
readonly promptTokens: number;
readonly completionTokens: number;
}
/**
* Consume a ReadableStream of SSE chunks from an OpenAI-compatible
* `/v1/chat/completions` endpoint.
*
* Calls `onDelta` for each content token and `onUsage` (if provided)
* when the final usage stats arrive. Returns the accumulated full
* content string once the stream is done.
*/
export async function consumeSSEStream(
body: ReadableStream<Uint8Array>,
onDelta?: (content: string) => void,
onUsage?: (usage: SSEUsage) => void
): Promise<string> {
const reader = body.getReader();
const decoder = new TextDecoder();
let buffer = '';
let content = '';
while (true) {
const { value, done } = await reader.read();
if (done) break;
buffer += decoder.decode(value, { stream: true });
// SSE frames are separated by blank lines. Process complete frames
// and leave any partial trailing frame in the buffer.
let sep: number;
while ((sep = buffer.indexOf('\n\n')) !== -1) {
const frame = buffer.slice(0, sep);
buffer = buffer.slice(sep + 2);
for (const line of frame.split('\n')) {
if (!line.startsWith('data:')) continue;
const data = line.slice(5).trim();
if (!data || data === '[DONE]') continue;
try {
const json = JSON.parse(data) as {
choices?: Array<{ delta?: { content?: string } }>;
usage?: { prompt_tokens?: number; completion_tokens?: number };
};
const delta = json.choices?.[0]?.delta?.content;
if (delta) {
content += delta;
onDelta?.(delta);
}
if (json.usage?.prompt_tokens != null) {
onUsage?.({
promptTokens: json.usage.prompt_tokens,
completionTokens: json.usage.completion_tokens ?? 0,
});
}
} catch {
// Malformed frame — skip silently. mana-llm occasionally
// emits keepalive comments.
}
}
}
}
return content;
}