UNPKG

@promptbook/node

Version:

Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action

11 lines (10 loc) 237 B
/** * Internal representation of an uploaded file in the chat input. * * @private type of `<ChatInputArea/>` */ export type ChatInputUploadedFile = { readonly id: string; readonly file: File; readonly content: string; };