eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
10 lines (9 loc) • 395 B
TypeScript
import type { RuntimeToolCallActionRequest } from "#shared/action-types.js";
/** Creates a runtime tool-call action shape from an AI SDK tool call. */
export declare function createRuntimeToolCallActionFromToolCall(input: {
readonly toolCall: {
readonly input: unknown;
readonly toolCallId: string;
readonly toolName: string;
};
}): RuntimeToolCallActionRequest;