@promptbook/browser
Version:
Promptbook: Turn your company's scattered knowledge into AI ready books
15 lines (14 loc) • 556 B
TypeScript
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).
*
* @returns A string describing the agent's persona
* @private internal helper function
*/
export declare function $randomAgentPersona(): string_persona_description;
/**
* TODO: [🤶] Maybe export through `@promptbook/utils` or `@promptbook/random` package
*/