auto-gpt-ts
Version:
my take of Auto-GPT in typescript
6 lines (5 loc) • 391 B
TypeScript
export declare function cleanInput(promptString?: string, talk?: boolean): Promise<string>;
export declare function validateYamlFile(file: string): [boolean, string];
export declare function readableFileSize(size: number, decimal_places?: number): string;
export declare function getCurrentGitBranch(): Promise<string>;
export declare function markdownToAnsiStyle(markdown: string): string;