mirror of
https://github.com/farcasclaudiu/Flowise.git
synced 2026-06-28 15:00:57 +03:00
Feature/update openai version, add reasoning effort param, add o3 mini (#3973)
* update openai version, add reasoning effort param * update azure * add filter for pinecone llamaindex * update graph cypher qa chain
This commit is contained in:
@@ -295,8 +295,11 @@ class PineconeVectorStore extends VectorStoreBase implements VectorStoreNoEmbedM
|
||||
async query(query: VectorStoreQuery): Promise<VectorStoreQueryResult> {
|
||||
const queryOptions: any = {
|
||||
vector: query.queryEmbedding,
|
||||
topK: query.similarityTopK,
|
||||
filter: this.queryFilter
|
||||
topK: query.similarityTopK
|
||||
}
|
||||
|
||||
if (this.queryFilter && Object.keys(this.queryFilter).length > 0) {
|
||||
queryOptions.filter = this.queryFilter
|
||||
}
|
||||
|
||||
const idx = await this.index()
|
||||
|
||||
Reference in New Issue
Block a user