@promptbook/remote-client
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
11 lines (10 loc) • 419 B
TypeScript
import type { ChatAttachment } from '../chatAttachments';
/**
* Builds a markdown section that lists attachment URLs for the model.
*
* @param {ReadonlyArray<ChatAttachment>} attachments - The attachments to format.
* @returns {string} The formatted context.
*
* @public exported from `@promptbook/core`
*/
export declare function formatChatAttachmentContext(attachments: ReadonlyArray<ChatAttachment>): string;