/** * The Generative AI Worker interface. * @category AI */ export interface IGenerativeAIWorker { /** * Close the Generative AI Worker. */ close(): void; }