(content: string)
| 122 | * Creates a new regular text block. |
| 123 | */ |
| 124 | const createTextBlock = (content: string): TextContentBlock => ({ |
| 125 | type: 'text', |
| 126 | content, |
| 127 | textType: 'text', |
| 128 | }) |
| 129 | |
| 130 | /** |
| 131 | * Shared logic for appending text with think tag parsing. |
no outgoing calls
no test coverage detected