dia-gov's picture
Upload 569 files
cd6f98e verified
export default interface AgentWork {
run: () => Promise<void>;
conclude: () => Promise<void>;
next: () => AgentWork | undefined;
onError: (e: unknown) => boolean; // Handles errors and returns whether to continue retrying
}