Interface PersonaRagConfigRetrievalTrigger

Defines triggers for RAG retrieval.

Interface

PersonaRagConfigRetrievalTrigger

interface PersonaRagConfigRetrievalTrigger {
    onUserQuery?: boolean;
    onIntentDetected?: string[];
    onToolFailure?: string[];
    onMissingContextKeywords?: string[];
    customLogicFunctionName?: string;
}

Properties

onUserQuery?: boolean
onIntentDetected?: string[]
onToolFailure?: string[]
onMissingContextKeywords?: string[]
customLogicFunctionName?: string