9 lines
309 B
TypeScript
9 lines
309 B
TypeScript
export type RalphLoopStrategy = "reset" | "continue";
|
|
export type ParsedRalphLoopArguments = {
|
|
prompt: string;
|
|
maxIterations?: number;
|
|
completionPromise?: string;
|
|
strategy?: RalphLoopStrategy;
|
|
};
|
|
export declare function parseRalphLoopArguments(rawArguments: string): ParsedRalphLoopArguments;
|