Skip to content

Commit

Permalink
Bugfix/Remove in-mem vector store from document store (FlowiseAI#3395)
Browse files Browse the repository at this point in the history
remove in mem vector store from document store
  • Loading branch information
HenryHengZJ authored Oct 21, 2024
1 parent 35ce647 commit 116d02d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/server/src/services/documentstore/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1029,7 +1029,9 @@ const getEmbeddingProviders = async () => {
const getVectorStoreProviders = async () => {
try {
const dbResponse = await nodesService.getAllNodesForCategory('Vector Stores')
return dbResponse.filter((node) => !node.tags?.includes('LlamaIndex') && node.name !== 'documentStoreVS')
return dbResponse.filter(
(node) => !node.tags?.includes('LlamaIndex') && node.name !== 'documentStoreVS' && node.name !== 'memoryVectorStore'
)
} catch (error) {
throw new InternalFlowiseError(
StatusCodes.INTERNAL_SERVER_ERROR,
Expand Down

0 comments on commit 116d02d

Please sign in to comment.