How to Improve the accuracy of vector search in weaviate
hi @Rohini_vaidya ! Is 10mm a property value? Doing a hybrid query to filter a data set will not properly work, as Weaviate will get the closer vector for the semantic search, and then all objects...
View ArticleI want to retain my Weaviate data even If I restart my docker container
Jotheraj_kori: image: semitechnologies/weaviate:latest You should not use this. The best practice is to specify a version, otherwise it can upgrade/downgrade your cluster without you wanting. Is this...
View ArticleDuplicate data detection in weaviate
Thank you @DudaNogueira so, I need to generate deterministic uuid for both elements in a list, I need to access each element separately and generate uuid for individual element of list then it will...
View ArticleHow to Improve the accuracy of vector search in weaviate
Thank you @DudaNogueira Here, 10mm is not my property value, I just given a example. I just want to know how we can improve the vector search results in weaviate. currently, I am using openai’s ada...
View ArticleCrashing weaviate 24.6
Description Production weaviate crashed out of random, not sure what caused though, running docker-compose setup Server Setup Information Weaviate Server Version: Deployment Method: Docker Multi Node?...
View ArticleProduction weaviate 24.6 crashed
Description Production weaviate crashed out of random, not sure what caused though, running docker-compose setup Server Setup Information Weaviate Server Version: Deployment Method: Docker Multi Node?...
View ArticleWeaviate v4 Client not working with LangChain WeaviateVectorStore &...
Problem: I recently upgraded to Weaviate v4 and tried to integrate it with LangChain’s WeaviateVectorStore. However, I encountered an error stating that my client must be an instance of...
View ArticleDuplicate data detection in weaviate
Hi! With that code you will endup with 2 uuids. This is what you are looking for, to generate one single uuid based on a list of different ids and making sure to sort the list before: from...
View ArticleHow to use open AI API key for free?, i am a student
What are you trying to test/develop?
View ArticleLangchain/Weaviate
Hello ,I just encounterd the same question when trying to use Weaviate with LangChain to cerate a example_selector, but I found that the document you given is lost. Could you pleasae give me some...
View ArticleDuplicate data detection in weaviate
Hi @Rohini_vaidya, This is an excellent post In my workshops, this is one of the topics I teach about. So, like Duda suggested, using generate_uuid5 you can generate a new UUID, and if you run batch...
View ArticleProduction weaviate 24.6 crashed
Hi @Tibin_Lukose, This error is related to an old panic from back in the day, but the bug has already been resolved besides many other improvements: “error”: “could not load or initialize schema: sync...
View ArticleCrashing weaviate 24.6
Production weaviate 24.6 crashed Support Hi @Tibin_Lukose, This error is related to an old panic from back in the day, but the bug has already been resolved besides many other improvements: “error”:...
View ArticleDuplicate data detection in weaviate
Hi @Rohini_vaidya This is a great explanation. Using generate uuid5 for batch inserts is an efficient approach to avoid duplicate objects in weaviate. The example from your workshop makes it clear how...
View ArticleIs there a good postman alternative for testing APIs?
I’m looking for recommendations for alternative tools to Postman for testing APIs. What do you use when working with Weaviate’s API endpoints?
View ArticleIs there a good postman alternative for testing APIs?
There are several good alternatives to Postman out there - I’ve been exploring quite a few of them lately! Let me share the ones I’ve found particularly useful, If anyone else has been thinking about...
View ArticleRAG not working with Anthropic Key and JS-SDK
Hi! I tried to leverage the full RAG-functionality of weaviate-cloud. I could not get any results with the JS-SDK, using my anthropic API-key in the respective header. Instead I received the following...
View ArticleRAG not working with Anthropic Key and JS-SDK
Hey there, could you share snippets of your connection function (with headers included) and the code that produces these errors? What Weaviate and JS client version are you using?
View ArticleRAG not working with Anthropic Key and JS-SDK
Hi, client version: 3.4.0, weaviate cloud database version(sandbox): 1.29.0, I connect with this call: this.client = await weaviate.connectToWeaviateCloud(this.url, { authCredentials: 'XYZ', headers:...
View ArticleQuerying on llama-index Weaviate Vector Store
I implement this function it’s work perfect def get_index(): """ Retrieve the Index context for Weaviate index. """ vector_store = WeaviateVectorStore(get_weaviate_client(),...
View Article