mirror of
https://github.com/ItzCrazyKns/Perplexica.git
synced 2025-06-18 07:48:35 +00:00
feat(gitignore): Allow package lock files
This commit is contained in:
4
.gitignore
vendored
4
.gitignore
vendored
@ -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',
|
||||||
})
|
})
|
||||||
|
3312
ui/yarn.lock
Normal file
3312
ui/yarn.lock
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user