UNPKG

@promptbook/azure-openai

Version:

Promptbook: Run AI apps in plain human language across multiple models and platforms

12 lines (11 loc) 418 B
import type { string_markdown } from '../../types/typeAliases'; import type { string_markdown_text } from '../../types/typeAliases'; /** * Create a markdown table from a 2D array of strings * * @public exported from `@promptbook/markdown-utils` */ export declare function createMarkdownTable(table: Array<Array<string_markdown_text>>): string_markdown; /** * TODO: [🏛] This can be part of markdown builder */