eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
12 lines (11 loc) • 623 B
TypeScript
import type { BootstrapPrompt } from "#runtime/agent/bootstrap-model-utils.js";
export interface AvailableBootstrapTool {
readonly description?: string;
readonly inputSchema?: unknown;
readonly name: string;
readonly outputSchema?: unknown;
}
export declare function createMockAuthoredToolInput(tool: AvailableBootstrapTool, message: string, city: string): Record<string, unknown>;
export declare function resolveMockFixtureToken(prompt: BootstrapPrompt): string | null;
export declare function resolveWeatherCity(message: string): string;
export declare function formatToolOutput(output: unknown): string;