Buckets:
| import type { Effect, Stream } from "effect" | |
| import type { Endpoint } from "../endpoint" | |
| import type { Auth } from "../auth" | |
| import type { Interface as RequestExecutorInterface } from "../executor" | |
| import type { Interface as WebSocketExecutorInterface } from "./websocket" | |
| import type { LLMError, LLMRequest } from "../../schema" | |
| export interface TransportRuntime { | |
| readonly http: RequestExecutorInterface | |
| readonly webSocket?: WebSocketExecutorInterface | |
| } | |
| export interface Transport<Body, Prepared, Frame> { | |
| readonly id: string | |
| readonly prepare: (input: TransportPrepareInput<Body>) => Effect.Effect<Prepared, LLMError> | |
| readonly frames: ( | |
| prepared: Prepared, | |
| request: LLMRequest, | |
| runtime: TransportRuntime, | |
| ) => Stream.Stream<Frame, LLMError> | |
| } | |
| export interface TransportPrepareInput<Body> { | |
| readonly body: Body | |
| readonly request: LLMRequest | |
| readonly endpoint: Endpoint<Body> | |
| readonly auth: Auth | |
| readonly encodeBody: (body: Body) => string | |
| readonly headers?: (input: { readonly request: LLMRequest }) => Record<string, string> | |
| } | |
| export * as HttpTransport from "./http" | |
| export { WebSocketExecutor, WebSocketTransport } from "./websocket" | |
Xet Storage Details
- Size:
- 1.18 kB
- Xet hash:
- 546d53766a13be450647e6382e1f9a5e9afc029560b294a2d352ae9dfee803b4
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.