Quantcast
Channel: Weaviate Community Forum - Latest posts
Viewing all articles
Browse latest Browse all 3601

[Question] Error: Can't get standard auto vectorization to run?

$
0
0

Hi @weisisheng,

Can you share the code you use to:

  • connect (please redact your URLs/API keys),
  • insert data,
  • query?

In your configuration, you have 3 vectorizers. So, when you query, you need to provide the name of the vector you are searching on, like this:

const jd = client.collections.get('JD');

const result = await myNVCollection.query.nearText('your query', {
  targetVector: 'basics',
  limit: 2,
})

Viewing all articles
Browse latest Browse all 3601

Trending Articles