eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
7 lines (6 loc) • 559 B
TypeScript
import type { ChannelAudience } from "#shared/channel-audience.js";
import type { InstrumentationDecision } from "#shared/instrumentation-decision.js";
/** Hosted instrumentation records conversation content only for known-public channels. */
export declare function shouldCaptureInstrumentationContent(audience: ChannelAudience): boolean;
/** Per-delivery audience is a hard ceiling over the session-level trace decision. */
export declare function applyAudienceCeiling(decision: InstrumentationDecision, audience: ChannelAudience): InstrumentationDecision;