eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
25 lines (24 loc) • 681 B
TypeScript
export declare const agent: import("#tools/definition.js").BackgroundToolDefinition<{
agentId?: string | null | undefined;
message: string;
outputSchema?: {
[x: string]: unknown;
} | undefined;
}, {
agentId: string;
status: "working";
taskId: string;
}> & {
execute(input: {
agentId?: string | null | undefined;
message: string;
outputSchema?: {
[x: string]: unknown;
} | undefined;
}, ctx: import("#tools/definition.js").ToolContext, task: import("#tools/definition.js").TaskExec): {
agentId: string;
status: "working";
taskId: string;
};
};
export default agent;