eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
7 lines (6 loc) • 351 B
TypeScript
import type { ChannelAdapter } from "#channel/adapter.js";
import type { Runtime } from "#channel/types.js";
import type { SendFn } from "#channel/routes.js";
export declare function createSendFn<TState = undefined>(runtime: Runtime, adapter: ChannelAdapter<any>, channelName: string, metadata?: {
readonly requestId?: string;
}): SendFn<TState>;