(input: AIMessageChunk, _options?: Partial<RunnableConfig>)
| 328 | lc_namespace = ['flowise', 'output_parsers'] |
| 329 | |
| 330 | async invoke(input: AIMessageChunk, _options?: Partial<RunnableConfig>): Promise<string> { |
| 331 | return extractTextFromChunk(input) |
| 332 | } |
| 333 | |
| 334 | async *_transform(generator: AsyncGenerator<AIMessageChunk>): AsyncGenerator<string> { |
| 335 | for await (const chunk of generator) { |
no test coverage detected