Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The apoc.vectordb.configure(WEAVIATE', ..) procedure should append /v1 to url #4232

Closed
vga91 opened this issue Nov 18, 2024 · 0 comments · Fixed by #4276 or #4264
Closed

The apoc.vectordb.configure(WEAVIATE', ..) procedure should append /v1 to url #4232

vga91 opened this issue Nov 18, 2024 · 0 comments · Fixed by #4276 or #4264

Comments

@vga91
Copy link
Collaborator

vga91 commented Nov 18, 2024

The apoc.vectordb.configure(WEAVIATE', ..) procedure should append /v1 to url

CALL apoc.vectordb.configure('WEAVIATE', 'movies', 'neo4j',
  {
    mapping: { embeddingKey: "embedding", nodeLabel: "Movie", entityKey: "tmdbId", metadataKey: "tmdbId" },
    host: "https://<myHost>.weaviate.network/",
    credentials: 'myCredentialKey'
}
)

Expected Behavior (Mandatory)

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/

Actual Behavior (Mandatory)

It calls the API URL:

https://<myHost>.weaviate.network/
@vga91 vga91 moved this to Todo in APOC Extended Larus Nov 18, 2024
vga91 added a commit that referenced this issue Nov 25, 2024
vga91 added a commit that referenced this issue Nov 29, 2024
RobertoSannino pushed a commit that referenced this issue Dec 4, 2024
@vga91 vga91 closed this as completed Dec 4, 2024
@github-project-automation github-project-automation bot moved this from Review to Done (to cherry-pick) in APOC Extended Larus Dec 4, 2024
vga91 added a commit that referenced this issue Dec 5, 2024
vga91 added a commit that referenced this issue Dec 5, 2024
vga91 added a commit that referenced this issue Dec 6, 2024
@vga91 vga91 moved this from Done (check if cherry-pick) to Done in APOC Extended Larus Dec 6, 2024
vga91 added a commit that referenced this issue Dec 10, 2024
vga91 added a commit that referenced this issue Dec 10, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment