@promptbook/remote-server
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
15 lines (14 loc) • 460 B
TypeScript
import type { string_name } from '../../types/string_name';
import type { string_persona_description } from '../../types/string_persona_description';
/**
* Parsed PERSONA command
*
* @see ./personaCommandParser.ts for more details
*
* @public exported from `@promptbook/editable`
*/
export type PersonaCommand = {
readonly type: 'PERSONA';
readonly personaName: string_name;
readonly personaDescription: string_persona_description | null;
};