paperclipai/paperclip · error · Error

Board chat stream not available

Error message

Board chat stream not available

What it means

Error "Board chat stream not available" thrown in paperclipai/paperclip.

Source

Thrown at ui/src/pages/BoardChat.tsx:576

      setStatusText("Connecting...");

      try {
        const controller = new AbortController();
        const fetchTimeout = setTimeout(() => controller.abort(), 130000);
        const res = await fetch("/api/board/chat/stream", {
          method: "POST",
          headers: { "Content-Type": "application/json" },
          body: JSON.stringify({
            companyId: selectedCompanyId,
            message: trimmed,
            taskId: boardIssueId ?? undefined,
          }),
          signal: controller.signal,
        });
        clearTimeout(fetchTimeout);

        if (!res.ok || !res.body) {
          throw new Error("Board chat stream not available");
        }

        setStatusText("Thinking...");

        const reader = res.body.getReader();
        const decoder = new TextDecoder();
        let buffer = "";
        let accumulated = "";

        while (true) {
          const { done, value } = await reader.read();
          if (done) break;

          buffer += decoder.decode(value, { stream: true });
          const lines = buffer.split("\n");
          buffer = lines.pop() ?? "";

          for (const line of lines) {

View on GitHub (pinned to 120ae5428f)

Solutions

  1. Reload the board chat; if it persists, check that the board chat endpoint/stream is enabled and reachable.

When it happens

Trigger: Thrown at ui/src/pages/BoardChat.tsx:576 when the library encounters an invalid state.

Common situations: See trigger scenarios.


AI-assisted analysis of paperclipai/paperclip@120ae5428f (2026-08-18). Data as JSON: /api/errors/f93a40c4a375a1ae. Report an issue: GitHub.