(data: any)
| 42 | * @returns {AsyncIterable<any>} - An asynchronous iterable that yields parsed messages from the input data stream. |
| 43 | */ |
| 44 | export default async function* streamCompletion(data: any) { |
| 45 | yield* linesToMessages(chunksToLines(data)); |
| 46 | } |
nothing calls this directly
no test coverage detected