weaviate / typescript-client

Official Weaviate TypeScript Client
https://www.npmjs.com/package/weaviate-client
BSD 3-Clause "New" or "Revised" License
57 stars 21 forks source link

update vector: fail with status 500 #92

Closed unsady closed 9 months ago

unsady commented 10 months ago

Server respond with error when I try to upload this image https://images-na.ssl-images-amazon.com/images/I/51Uc-WH2PTL.jpg

await client.data
        .creator()
        .withClassName('Test')
        .withProperties({ asin, image })
        .do()

Error: usage error (500): {"error":[{"message":"update vector: fail with status 500"}]}

tsmith023 commented 9 months ago

Hi @unsady, this seems to be an issue with the vectorizer that you're using and its ability to vectorize an image.

Since this repository hosts the Weaviate TypeScript-client, it's primarily a place to post bug reports and make feature requests of the client itself. I recommend that you post your question on the Weaviate community forum where your issue will gain more traction and be answered faster!

😁