auto-gpt-ts
Version:
my take of Auto-GPT in typescript
4 lines (3 loc) • 305 B
TypeScript
import * as puppeteer from 'puppeteer';
export declare function splitText(text: string, max_length?: number, model?: string, question?: string): Generator<string, void, unknown>;
export declare function summarizeText(url: string, text: string, question: string, driver?: puppeteer.Page): Promise<string>;