eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
6 lines (5 loc) • 597 B
TypeScript
import type { ActionPresentationByCallId } from "#protocol/message.js";
import type { HarnessToolDefinition } from "#harness/execute-tool.js";
import { type JsonObject } from "#shared/json.js";
export declare function projectResultPresentation(definition: HarnessToolDefinition | undefined, callId: string, input: JsonObject | undefined, output: unknown): ActionPresentationByCallId | undefined;
export declare function projectDeltaPresentation(definition: HarnessToolDefinition | undefined, callId: string, input: JsonObject | undefined, output: unknown): ActionPresentationByCallId | undefined;