UNPKG

@promptbook/remote-client

Version:

Promptbook: Turn your company's scattered knowledge into AI ready books

17 lines (16 loc) 784 B
import type { string_book } from '../../book-2.0/agent-source/string_book'; import type { ExecutionTools } from '../../execution/ExecutionTools'; import type { string_markdown } from '../../types/typeAliases'; import type { BookTranspilerOptions } from '../_common/BookTranspilerOptions'; /** * Converts a book into a 1:1 formatted markdown * * @public exported from `@promptbook/core` */ export declare const FormattedBookInMarkdownTranspiler: { readonly name: "formatted-book-in-markdown"; readonly title: "Formatted Book in Markdown"; readonly packageName: "@promptbook/core"; readonly className: "FormattedBookInMarkdownTranspiler"; readonly transpileBook: (book: string_book, tools: ExecutionTools, options?: BookTranspilerOptions) => string_markdown; };