auto-gpt-ts
Version:
my take of Auto-GPT in typescript
10 lines (9 loc) • 369 B
TypeScript
export declare class AnalyzeCodeCommand {
/**
* A function that takes in a string and returns a response from create chat
* completion api call.
* @param code Code to be evaluated.
* @returns A result string from create chat completion. A list of suggestions to improve the code.
*/
static analyzeCode(code: string): Promise<string>;
}