| /** Custom window events for background persona prompt generation (see PersonaPromptBuildHost). */ | |
| export const PERSONA_PROMPT_BUILD_START = 'persona-prompt-build-start' | |
| export const PERSONA_PROMPT_BUILD_COMPLETE = 'persona-prompt-build-complete' | |
| export const PERSONA_PROMPT_BUILD_ERROR = 'persona-prompt-build-error' | |
| export const PERSONA_PROMPT_BUILD_END = 'persona-prompt-build-end' | |
| export type PersonaPromptBuildCompleteDetail = { | |
| personaId: string | |
| personaName: string | |
| confidence: 'high' | 'low' | |
| qualityMessage?: string | null | |
| } | |