Clean LLM response: strip fences, comments, whitespace.
(input: string)
| 393 | |
| 394 | /** Clean LLM response: strip fences, comments, whitespace. */ |
| 395 | function preprocess(input: string): string { |
| 396 | return stripComments(stripFences(input.trim())).trim(); |
| 397 | } |
| 398 | |
| 399 | /** |
| 400 | * Parse a complete openui-lang string in one pass. |
no test coverage detected