@promptbook/gemini
Version:
It's time for a paradigm shift. The future of software in plain English, French or Latin
13 lines (12 loc) • 342 B
TypeScript
import type { PromptResult } from '../../../execution/PromptResult';
/**
* Socket.io error for remote text generation
*
* This is sent from server to client when the generated text is completed
*/
export type PromptbookServer_Prompt_Response = {
/**
* The result of the prompt
*/
readonly promptResult: PromptResult;
};