feat(gitignore): Allow package lock files
This commit is contained in:
parent
d5b8803f12
commit
3859e3db03
|
@ -12,10 +12,6 @@ yarn-error.log
|
||||||
.idea/
|
.idea/
|
||||||
*.iml
|
*.iml
|
||||||
|
|
||||||
# Dependency lock files
|
|
||||||
package-lock.json
|
|
||||||
yarn.lock
|
|
||||||
|
|
||||||
# Environment variables
|
# Environment variables
|
||||||
.env
|
.env
|
||||||
.env.local
|
.env.local
|
||||||
|
|
|
@ -160,7 +160,9 @@ const basicWolframAlphaSearchAnsweringChain = RunnableSequence.from([
|
||||||
chat_history: formatChatHistoryAsString(input.chat_history),
|
chat_history: formatChatHistoryAsString(input.chat_history),
|
||||||
}),
|
}),
|
||||||
basicWolframAlphaSearchRetrieverChain
|
basicWolframAlphaSearchRetrieverChain
|
||||||
.pipe(({ query, docs }) => { return docs })
|
.pipe(({ query, docs }) => {
|
||||||
|
return docs;
|
||||||
|
})
|
||||||
.withConfig({
|
.withConfig({
|
||||||
runName: 'FinalSourceRetriever',
|
runName: 'FinalSourceRetriever',
|
||||||
})
|
})
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue