| 82 | const STRUCTURED_OUTPUT_SYSTEM_PROMPT = `IMPORTANT: The user has requested structured output. You MUST use the StructuredOutput tool to provide your final response. Do NOT respond with plain text - you MUST call the StructuredOutput tool with your answer formatted according to the schema.` |
| 83 | |
| 84 | function mcpResourceBase64Size(value: string) { |
| 85 | const trimmed = value.replace(/\s/g, "") |
| 86 | const padding = trimmed.endsWith("==") ? 2 : trimmed.endsWith("=") ? 1 : 0 |
| 87 | return Math.max(0, Math.floor((trimmed.length * 3) / 4) - padding) |
| 88 | } |
| 89 | |
| 90 | function formatMcpResourceBytes(value: number) { |
| 91 | if (value < 1024) return `${value} B` |