UNPKG

@cognigy/rest-api-client

Version:

Cognigy REST-Client

35 lines 1.86 kB
/** Prompts **/ import { contextAwareUserQueryRephrasingChatPrompt, } from "./prompts/contextAwareUserQueryRephrasing"; import { rephraseMultipleSentencesPrompt, rephraseSingleSentencePrompt, rephraseQuestionPrompt, rephraseQuestionRepromptPrompt } from "./prompts/rephraseSentences"; import { flowGenerationWithDescriptionPrompt, flowGenerationWithTranscriptPrompt } from "./prompts/flowGeneration"; import { intentSentenceGenerationPrompt } from "./prompts/intentSentenceGeneration"; import { lexiconGenerationPrompt, strictLexiconGenerationPrompt } from "./prompts/lexiconGeneration"; import { generateNodeOutputCreateAdaptiveCardPrompt, generateNodeOutputModifyAdaptiveCardPrompt, generateNodeOutputTextPrompt } from "./prompts/generateNodeOutput"; export const generativeAIPrompts = { "default": { answerExtraction: { contextAwareUserQueryRephrasing: contextAwareUserQueryRephrasingChatPrompt }, aiEnhancedOutputs: { multipleSentences: rephraseMultipleSentencesPrompt, singleSentence: rephraseSingleSentencePrompt, question: rephraseQuestionPrompt, questionReprompt: rephraseQuestionRepromptPrompt }, intentSentenceGeneration: intentSentenceGenerationPrompt, generateNodeOutput: { text: generateNodeOutputTextPrompt, adaptiveCard: generateNodeOutputCreateAdaptiveCardPrompt, editAdaptiveCard: generateNodeOutputModifyAdaptiveCardPrompt, }, lexiconGeneration: lexiconGenerationPrompt, flowGeneration: { description: flowGenerationWithDescriptionPrompt, transcript: flowGenerationWithTranscriptPrompt } }, "claude-sonnet-4-6": { lexiconGeneration: strictLexiconGenerationPrompt, } }; //# sourceMappingURL=generativeAIPrompts.js.map