MCPcopy Create free account
hub / github.com/Alphanimble/htmlstream / StreamPart

Interface StreamPart

demo/server/openrouter-chat.ts:59–62  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

57export type StreamPartKind = "reasoning" | "content";
58
59export interface StreamPart {
60 kind: StreamPartKind;
61 delta: string;
62}
63
64function extractDeltaContent(delta: Record<string, unknown> | undefined): string {
65 if (!delta) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected