llama-stack-mirror/llama_stack/ui/lib/truncate-text.ts
Eric Huang ecd8f2113a chat completion, testing
# What does this PR do?


## Test Plan
# What does this PR do?


## Test Plan
2025-05-22 21:44:15 -07:00

8 lines
224 B
TypeScript

export function truncateText(
text: string | null | undefined,
maxLength: number = 50,
): string {
if (!text) return "N/A";
if (text.length <= maxLength) return text;
return text.substring(0, maxLength) + "...";
}