feat(gitignore): Allow package lock files

This commit is contained in:
ItzCrazyKns 2024-04-15 21:03:52 +05:30
parent d5b8803f12
commit 3859e3db03
No known key found for this signature in database
GPG key ID: 8162927C7CCE3065
4 changed files with 4529 additions and 5 deletions

View file

@ -160,7 +160,9 @@ const basicWolframAlphaSearchAnsweringChain = RunnableSequence.from([
chat_history: formatChatHistoryAsString(input.chat_history),
}),
basicWolframAlphaSearchRetrieverChain
.pipe(({ query, docs }) => { return docs })
.pipe(({ query, docs }) => {
return docs;
})
.withConfig({
runName: 'FinalSourceRetriever',
})