()
| 225 | // loop. The provider must surface a retryable APIConnectionError so the |
| 226 | // loop retries instead of failing the turn outright. |
| 227 | async function* terminatedStream(): AsyncGenerator<never> { |
| 228 | throw new TypeError('terminated'); |
| 229 | yield undefined as never; |
| 230 | } |
| 231 | |
| 232 | const msg = new OpenAILegacyStreamedMessage( |
| 233 | terminatedStream() as AsyncIterable<never>, |
no outgoing calls
no test coverage detected