Migration from self-hosted to Weaviate Cloud using backup/restore
Thanks @DudaNogueira — that definitely helps! Appreciate the support!
View ArticleNot able to connect to weaviate using local instance
Hello, I am trying to connect to weaviate using loca_instance below is my code snippet: self.client = weaviate.connect_to_local( host="0.0.0.0", # Use a string to specify the host port=8080,...
View ArticleMigration from self-hosted to Weaviate Cloud using backup/restore
@akhilsharma Just to add to what my colleague @Duda Nogueira (Weaviate) mentioned — I’ve put together migration scripts that can help you move all your collections and data from one endpoint to...
View ArticleNot able to connect to weaviate using local instance
Hey @Rohini_vaidya, As we discussed during the community office hour, please make sure to configure your Docker Compose with like this at the top of your conatiners: networks: example_network: driver:...
View ArticleCannot query multimodal vectorized collection from Next.js
Hi, I have a python script that handles creating a collection as follows (on sandbox cluster), using voyage ai voyage-multimodal-3: The collection gets created successfully on the sandbox and inserts...
View ArticleCannot query multimodal vectorized collection from Next.js
Hi! Do you mean you are able to query using the python client but not the typescript client?
View ArticleCannot query multimodal vectorized collection from Next.js
I didnt try querying the collection through the python client. But, the python client v4 (which is an adhoc script im running) works fine as far as creating the collection and batch inserting the data...
View ArticleHybrid Search Date Filter Ignored When No Matching Data in Range?
Hi, i’m running into unexpected behavior when combining hybrid search with a date-range filter. When I filter for a range in which no objects exist, the filter seems to be silently dropped and I get...
View ArticleHybrid Search Date Filter Ignored When No Matching Data in Range?
Hey Philipp, there is a known problem in 1.30.0 with keyword search and filters. It has been fixed on 1.30.1. Could you please upgrade and see if you still encounter the filter issue? Thank you and...
View ArticleObjectsGetResponse "double" error handling
Hello, I am just a bit confused about Weaviate’s choices in error handling within object response. Specifically, when attempting to flush a batch. I had the following code (in golang): response, err...
View ArticleBest practice for fast embedding with OpenAI? ( or similar performance )
Hi there! We’ve been integrating Weaviate with LangChain into our agentic application and the performance of the vector searches seemed great, although lately I noticed a bottleneck coming from the...
View Article[Feedback] Update to the Python client – collections, search, CRUD operations
The direction outlined here for the updated Python client inspired me to develop a complementary library: weaviate-orm. Built at the Research and Innovation Lab (IDA) of the Federal Institute for...
View ArticleCannot query multimodal vectorized collection from Next.js
I found the problem! It was not passing the voyage ai api key in the header when creating the weaviate client in the typescript code of frontend. Before: const client = await...
View ArticleIs hybrid search with multiple queries possible?
Description For near_text search, you can provide multiple query vectors for the same target vector: weaviate.io Multiple target vectors | Weaviate In a multi-target vector search, Weaviate searches...
View ArticleCannot query multimodal vectorized collection from Next.js
Awesome! Thanks for sharing!
View ArticleObjectsGetResponse "double" error handling
Hi @Jekabsons, thanks for your question. Agreed – the behavior is not immediately obvious, and, perhaps, somewhat unexpected. By their nature, batch operations may complete/fail partially (IIRC that’s...
View ArticleObjectsGetResponse "double" error handling
Thanks for the explenation. But just to be completely clear about your suggested implementation: if I do write a custom PartialInsertError type then I also need to write wrapper function for...
View ArticleQuery Agent API
Description Can I access the Query Agent API using REST API (i.e., curl) instead of Python?
View ArticleQuery Agent API
Good morning @SomebodySysop, At the moment, this isn’t supported yet, but it’s definitely on our radar. We’re currently focusing on enhancing advanced functionality for Agents and extending support...
View ArticleQuery Agent API
Meanwhile… hehehe, you can always “reverse engineer” it. The code that calls the query agent endpoint lives here: github.com/weaviate/weaviate-agents-python-client weaviate_agents/query/query_agent.py...
View Article