UNPKG

@promptbook/gemini

Version:

It's time for a paradigm shift. The future of software in plain English, French or Latin

13 lines (12 loc) 354 B
import type { TaskProgress } from '../../../types/TaskProgress'; /** * Socket.io progress for remote text generation * * This is sent from server to client arbitrarily and may be sent multiple times */ export type PromptbookServer_Prompt_Progress = { /** * The progress of text generation */ readonly taskProgress: TaskProgress; };