UNPKG

@mariozechner/pi-coding-agent

Version:

Coding agent CLI with read, bash, edit, write tools and session management

49 lines 1.78 kB
import * as os from "node:os"; import { getCapabilities, getImageDimensions, imageFallback } from "@mariozechner/pi-tui"; import stripAnsi from "strip-ansi"; import { sanitizeBinaryOutput } from "../../utils/shell.js"; export function shortenPath(path) { if (typeof path !== "string") return ""; const home = os.homedir(); if (path.startsWith(home)) { return `~${path.slice(home.length)}`; } return path; } export function str(value) { if (typeof value === "string") return value; if (value == null) return ""; return null; } export function replaceTabs(text) { return text.replace(/\t/g, " "); } export function normalizeDisplayText(text) { return text.replace(/\r/g, ""); } export function getTextOutput(result, showImages) { if (!result) return ""; const textBlocks = result.content.filter((c) => c.type === "text"); const imageBlocks = result.content.filter((c) => c.type === "image"); let output = textBlocks.map((c) => sanitizeBinaryOutput(stripAnsi(c.text || "")).replace(/\r/g, "")).join("\n"); const caps = getCapabilities(); if (imageBlocks.length > 0 && (!caps.images || !showImages)) { const imageIndicators = imageBlocks .map((img) => { const mimeType = img.mimeType ?? "image/unknown"; const dims = img.data && img.mimeType ? (getImageDimensions(img.data, img.mimeType) ?? undefined) : undefined; return imageFallback(mimeType, dims); }) .join("\n"); output = output ? `${output}\n${imageIndicators}` : imageIndicators; } return output; } export function invalidArgText(theme) { return theme.fg("error", "[invalid arg]"); } //# sourceMappingURL=render-utils.js.map