you can now pass in the filterExpression so that the messeger can change the default in settings

This commit is contained in:
2025-06-03 14:47:33 -05:00
parent 229cdee818
commit 0650f12bd5
2 changed files with 8 additions and 7 deletions

View File

@@ -72,7 +72,7 @@ let exitState=0; // i.e. next(0) means something went wrong or we found 0 source
(async () => {
console.log(`CQA Retrieval: ${conversationData.cqa_question}`)
conversationData.cqa_source = await CQA_Retriever().retrieve(conversationData.cqa_question);
console.log({ lengthOfSources: conversationData.cqa_source.instances[0].sources.length})
exitState = conversationData.cqa_source.instances[0].sources.length
})()