UNPKG

@promptbook/markdown-utils

Version:

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

16 lines (15 loc) 638 B
import type { string_persona_description } from '../../types/typeAliases'; /** * Generates a random agent persona description. * * This function selects a random personality profile from a predefined pool * of common AI agent characteristics (e.g., friendly, professional, creative). * * @param language - The language code (e.g. 'ENGLISH', 'CZECH') * @returns A string describing the agent's persona * @private internal helper function */ export declare function $randomAgentPersona(language?: string): string_persona_description; /** * TODO: [🤶] Maybe export through `@promptbook/utils` or `@promptbook/random` package */