import type { InferenceFrame, InferenceProxyRequest } from "./wire/inference_proxy.js"; /** Streams one model turn through the broker as `InferenceFrame`s (RunnerControlClient satisfies it). */ export interface InferenceProxyTransport { streamInference(req: InferenceProxyRequest): AsyncIterable; }