UNPKG

eve

Version:

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

15 lines (14 loc) 497 B
import type { JsonObject } from "#shared/json.js"; export interface DynamicRemoteAgentConfig { readonly credentialsStepId?: string; readonly description: string; readonly forwardPrincipal?: boolean; readonly outputSchema?: JsonObject; readonly path: string; readonly tool?: boolean; readonly url: string; } export declare function normalizeDynamicRemoteAgentConfig(input: { readonly name: string; readonly value: unknown; }): Promise<DynamicRemoteAgentConfig>;