@promptbook/vercel
Version:
Promptbook: Turn your company's scattered knowledge into AI ready books
14 lines (13 loc) • 585 B
TypeScript
import type { string_markdown } from '../../types/typeAliases';
/**
* Function `humanizeAiText` will remove traces of AI text generation artifacts
*
* Note: [🔂] This function is idempotent.
* Tip: If you want more control, look for other functions for example `humanizeAiTextEmdashed` exported `@promptbook/markdown-utils`
*
* @public exported from `@promptbook/markdown-utils`
*/
export declare function humanizeAiText(aiText: string_markdown): string_markdown;
/**
* TODO: [🧠] Maybe this should be exported from `@promptbook/utils` not `@promptbook/markdown-utils`
*/