UNPKG

eve

Version:

Filesystem-first framework for durable backend AI agents that run anywhere.

8 lines (7 loc) 596 B
import type { InstrumentationProviderDefinition } from "#instrumentation/lifecycle.js"; import type { AgentTraceStateStore } from "#tracing/agent-trace-state.js"; /** Captures one-to-one channel delivery metadata on the activation that consumes it. */ export declare function createAgentChannelDeliveryInstrumentation(input: { readonly recordInputs: boolean; readonly stateStore: AgentTraceStateStore; }): Pick<NonNullable<InstrumentationProviderDefinition["events"]>, "channel.delivery.cancelled" | "channel.delivery.completed" | "channel.delivery.failed" | "channel.delivery.started">;