feat(gitignore): Allow package lock files
This commit is contained in:
parent
d5b8803f12
commit
3859e3db03
|
@ -12,10 +12,6 @@ yarn-error.log
|
|||
.idea/
|
||||
*.iml
|
||||
|
||||
# Dependency lock files
|
||||
package-lock.json
|
||||
yarn.lock
|
||||
|
||||
# Environment variables
|
||||
.env
|
||||
.env.local
|
||||
|
|
|
@ -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',
|
||||
})
|
||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue