eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
13 lines (12 loc) • 544 B
TypeScript
import type { NitroArtifactsConfig } from "#internal/nitro/routes/runtime-artifacts.js";
/**
* Dispatches one eve authored schedule via the execution engine.
*
* Fire-and-forget: the workflow runtime owns terminal completion and
* its own failure observability. The task return value reports which
* session ids the handler started so Nitro / dev tools can correlate.
*/
export declare function dispatchScheduleTask(taskName: string, config: NitroArtifactsConfig): Promise<{
scheduleId: string;
sessionIds: readonly string[];
}>;