auto-gpt-ts
Version:
my take of Auto-GPT in typescript
16 lines (15 loc) • 483 B
TypeScript
export declare class AddMemoryCommand {
static addMemory(memory: string): any;
}
export declare class StartAgent {
static startAgent(name: string, task: string, prompt: string): Promise<string>;
}
export declare class MessageAgent {
static messageAgent(key: string, prompt: string): Promise<string>;
}
export declare class ListAgents {
static listAgents(): Promise<string>;
}
export declare class DeleteAgent {
static deleteAgent(key: string): Promise<string>;
}