Replies: 2 comments
-
|
+1 for Upstash Vector support! Serverless vector DB is great for Flowise Cloud use cases. What the node should support:
Node config UI: fields:
- name: upstashUrl
type: credential
- name: upstashToken
type: credential
- name: namespace
type: string
- name: topK
type: number
default: 5
- name: metadataFilter
type: json
optional: trueWhy Upstash over Pinecone for some users:
Workaround until native support: We integrate various vector DBs with Flowise at Revolution AI — Upstash is great for serverless deployments. |
Beta Was this translation helpful? Give feedback.
-
|
Upstash Vector node would be awesome! At RevolutionAI (https://revolutionai.io) we use serverless vector DBs. Why Upstash Vector:
Node implementation idea: class UpstashVector {
constructor(url, token) {
this.client = new Index({ url, token });
}
async upsert(vectors) {
return this.client.upsert(vectors);
}
async query(vector, topK = 10) {
return this.client.query({ vector, topK });
}
}Config needed:
Use cases:
Would definitely use this! |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Ensure it supports metadata filtering directly within the Flowise UI, as this is a common pain point for users trying to segment their data (e.g., "search only within 'Legal' category")
Beta Was this translation helpful? Give feedback.
All reactions