Open vga91 opened 1 week ago
The apoc.vectordb.configure(WEAVIATE', ..) procedure should append /v1 to url
/v1
CALL apoc.vectordb.configure('WEAVIATE', 'movies', 'neo4j', { mapping: { embeddingKey: "embedding", nodeLabel: "Movie", entityKey: "tmdbId", metadataKey: "tmdbId" }, host: "https://<myHost>.weaviate.network/", credentials: 'myCredentialKey' } )
Executing
CALL apoc.vectordb.weaviate.queryAndUpdate('myCredentialKey', 'TestCollection', [0.2, 0.1, 0.9, 0.7], null, 5, $conf)
should call the API URL:
https://<myHost>.weaviate.network/v1/
It calls the API URL:
https://<myHost>.weaviate.network/
The apoc.vectordb.configure(WEAVIATE', ..) procedure should append
/v1
to urlExpected Behavior (Mandatory)
Executing
should call the API URL:
Actual Behavior (Mandatory)
It calls the API URL: