UNPKG

chronology-ts

Version:

typescript port of chronology (gpt-3 python tool)

11 lines (10 loc) 307 B
export * from './utils'; import { Conversation } from './Conversation'; export declare class Chronology { apiKey: string; origin: string; convos: Record<number, Conversation>; constructor(apiKey: string, origin?: string); createConversation(): Conversation; } export default Chronology;