(
params: LlmInferenceHttpRequestChunkRequest
)
| 388 | return {}; |
| 389 | }, |
| 390 | async httpRequestChunk( |
| 391 | params: LlmInferenceHttpRequestChunkRequest |
| 392 | ): Promise<LlmInferenceHttpRequestChunkResult> { |
| 393 | // May arrive before the matching start frame; get-or-create so the |
| 394 | // body is buffered, never lost. |
| 395 | routeChunk(getOrCreate(params.requestId), params); |
| 396 | return {}; |
| 397 | }, |
| 398 | }; |
| 399 | } |
| 400 |
nothing calls this directly
no test coverage detected
searching dependent graphs…