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

4
.gitignore vendored
View File

@ -12,10 +12,6 @@ yarn-error.log
.idea/
*.iml
# Dependency lock files
package-lock.json
yarn.lock
# Environment variables
.env
.env.local

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',
})

3312
ui/yarn.lock Normal file

File diff suppressed because it is too large Load Diff

1214
yarn.lock Normal file

File diff suppressed because it is too large Load Diff