eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
10 lines (9 loc) • 438 B
TypeScript
import type { ResolvedConnectionDefinition } from "#runtime/types.js";
/**
* Formats the "Connections" system prompt section listing all available
* connections and their descriptions.
*
* Called at graph resolution time so the section is part of the turn
* agent's static instructions rather than injected per-step.
*/
export declare function formatConnectionsSection(connections: readonly ResolvedConnectionDefinition[]): string;