Questions tagged [weaviate]

Weaviate is an open source vector database that stores both objects and vectors, allowing for combining vector search with structured filtering and CRUD operations. It supports modules such as creating embeddings or generating responses via OpenAI, and is accessible through GraphQL, REST, and various language clients.

Homepage: weaviate.io

116 questions
0
votes
0 answers

Getting uuids of references with Get filtering

I understand one can get the uuid of an object using .with_additional([id]). Let say now, I request references as well for example: where_filter = { "path": ["name"], "operator": "Equal", "valueText": "whatever" } (client.query.get("Node",…
0
votes
0 answers

How to add Prompt in retriver in Retrievalqa in langchain

i am trying to use retrievalqa from langchain to implement a chatmodel.while using the retrievalQA i get know that there is no option to add the retrival. how to add the retrieval in retrivalqa vectordb=Weaviate(client,'Document',…
0
votes
0 answers

How can I update a property inside a weaviate schema?

How can I update an already defined property inside a weaviate schema? I am expecting to know whether weaviate has already described any updates regarding the property updates inside a schema without changing the whole schema and how can it be…
0
votes
2 answers

Weaviate - push records in batch errors with JSONDecodeError

I’m trying to add records in a batch, but after I add my objects to the batch, I always get a JSONDecodeError when I assume the batch is being sent to my Weaviate class. client.batch.configure(batch_size=100, dynamic=False, timeout_retries=3, …
lrthistlethwaite
  • 494
  • 2
  • 6
  • 23
0
votes
0 answers

close weaviate client ts nodejs

I was looking for a way to close a weaviate client in nodejs typescript as I need to do this so I can implement a jest test I have looked in the index.d.ts and could not find any function that would close a weaviateClient this is the error I am…
Jonathan Coletti
  • 448
  • 4
  • 13
0
votes
1 answer

Weaviate - top hits for with_near_vector() doesn't include the record whose vector perfectly matches query vector

I have a very large Weaviate vector storage class (700,000 records) in which I pass my own custom vectors. I’m trying to get distances against a vector I pass as below. The vector is actually a match to one of the records, so I know the top hit…
0
votes
0 answers

JsonDecodeError from weaviate server in cloud

import weaviate weaviate.Client( url="https://myserver/weaviate", auth_client_secret=weaviate.AuthApiKey( api_key='myapikey' ), additional_headers={"X-OpenAI-Api-Key": 'your openai key'}, …
0
votes
0 answers

Weaviate plugin giving connection refused with docker

I am using the weaviate-php plugin in my Laravel project.if I try the authentication with the weaviate cloud console everything works perfectly fine I want to self-host using docker. here is my docker configuration for the weaviate: weaviate: …
Faizan
  • 33
  • 10
0
votes
1 answer

Weaviate cloud services add module

How would I add a modules to a cluster in weaviate cloud services. If I could not add it after creation of a cluster could I do it before? I know that I could do it with docker compose but there is no option to add modules in weaviate cloud…
0
votes
1 answer

nginx failing to route traffic to endpoints, but working if endpoint is removed

I have a docker compose file and an nginx.conf file. The nginx is able to route the request correctly in the below given case events {} http { upstream weaviate { server weaviate:5555; } server { listen 80…
0
votes
0 answers

how to set up a docker compose file to manage weaviate using nginx

My docker compose and nginx config are given below: docker compose lml version: '3.7' services: nginx: build: context: ./nginx dockerfile: Dockerfile ports: - 80:80 depends_on: - weaviate links: -…
0
votes
0 answers

For self-hosted weaviate instances, how many schemas and classes are allowed?

Looking to better understand how to monitor instance capacity as bootstrapped self-hoster, in other words, how much overhead should I allow? Specifically, What is the limit on: schemas, classes, total data (per container)? Set up single docker…
0
votes
0 answers

In Weaviate, how to update invertedIndexConfig of an existing class?

From this Weaviate documentation - below endpoint: PUT v1/schema/{class_name} should allow me to alter an existing class in the schema. I wanted to set invertedIndexConfig > indexNullState to true for me to be able to use filter by null…
junbetterway
  • 236
  • 3
  • 13
0
votes
0 answers

In Weaviate, what is the recommended way to handle paginated results to avoid duplicates?

As per Weaviate documentation: The pagination setup is not stateful. If the database state has changed between retrieving two pages there is no guarantee that your pages cover all results. I am having an issue right now where, when someone…
junbetterway
  • 236
  • 3
  • 13
0
votes
1 answer

Weaviate combine with Azure Cognitive Search

This is my scenario: The client has an Azure SQL database with a profiles table with demographic information. We created an Azure Cognitive Search and indexed that database, we concatenated all fields into one called content. Because according to…
Luis Valencia
  • 32,619
  • 93
  • 286
  • 506