(input: string)
| 263 | } |
| 264 | |
| 265 | export function parseLocalMemoryMarkdown(input: string): LocalMemoryParseResult { |
| 266 | const parsed = parseLocalMemoryMarkdownRaw(input); |
| 267 | if (parsed.safeMode || parsed.reason) return parsed; |
| 268 | return toPreviewParseResult(parsed); |
| 269 | } |
| 270 | |
| 271 | export function buildLocalMemoryPromptBody( |
| 272 | input: string, |
no test coverage detected