Fuzzy matching algorithms
I don’t think we have anything directly like this but the following could work: use named vectors define a named vector with the vectorizer text2vec-bigram that takes your surname field as input. This...
View ArticleIs there a GUI console to access the db data after install the weaviate?
Hello @Sherry, Welcome to our community! We’re happy to have you here—enjoy your journey Weaviating! We have a GUI that apps, and tools are designed to internal with Weaviate DB, incredibly helpful...
View ArticleHow to remove reference property
btw if we have 2 collections one for document data (id, chunks) and one for document metadata (id, summery, …) we want to connect the collections using references, to avoid duplicating all the...
View ArticleFuzzy matching algorithms
Very interesting Dirk, thanks. I will definitely experiment. But actually my example was very simplistic. The true task is quite tough with searching through a long list of wordplays. These wordplays...
View ArticleWeaviate requires a string of UUID format when adding json Schema
hi @nemozak1 !! Welcome to our community indeed, you can only pass a UUID as a parameter. You can always generate a UUID from that value: from weaviate.utils import generate_uuid generated_uuid =...
View ArticleWeaviate requires a string of UUID format when adding json Schema
I’m already doing that actually: props = properties.copy() # Summarize the description of the endpoint in markdown #summary_chain_response = endpoint_summary_chain.invoke({"raw_description":...
View ArticleIterator not returning a property
Have this very simple python code: def main(): client = init_weaviate_client() try: collection = client.collections.get(os.getenv("COP_COPERTINE_COLLNAME")) extractor = ManifestoGPTExtractor() for obj...
View ArticleWeaviate requires a string of UUID format when adding json Schema
Hi! Can you give a MRE (minimum reproducible example)? Here is what I got: from weaviate.util import generate_uuid5 endpoint_uuid = generate_uuid5("some unique text") schema = {'tags': ['Account'],...
View ArticleWeaviate Holding Locks on EFS Files Causing disk quota exceeded Errors
hi @JLiz2803 !! EBS volumes provide low-latency, high-performance block storage that is optimized for fast read and write operations. Weaviate requires quick access to vector data and other storage,...
View ArticleWeaviate Holding Locks on EFS Files Causing disk quota exceeded Errors
Hi Duda, Thanks for your reply. In the beginning we were using EBS, but due to scaling needs we switched over to EFS to take advantage of the autoscaling EFS offers which EBS does not. We did so per...
View ArticleIs there a GUI console to access the db data after install the weaviate?
Hi @Mohamed_Shahin Thanks for your reply One more question: how to set the customized model (I would like to use Zhipu’s model)when I initiate a Weaviate DB instance, and use it to create the object?...
View ArticleHow much memory capacity is needed to use multi2vec-bind vectorizer?
I’m trying to start containers with weaviate, multi2vec-bind, reranker-transformers. However, multi2vec-bind container continues to die with following logs. - INFO: Started server process [7] - INFO:...
View ArticleI Have set up weaviate on K8s, but im not able to send any grpc requests from...
Description I have set up weaviate on K8s as per this article. I’m trying to send a grpc seach object query on postman, but im getting operation cancelled. I also tried on cloud instance, the req is...
View ArticleTrying to resolve the error ,here are my code and error
import weaviate from weaviate.classes.init import Auth import google.generativeai as genai from typing import List, Dict import os from typing import List, Dict from langchain.text_splitter import...
View ArticleFuzzy matching algorithms
The true task is quite tough with searching through a long list of wordplays. Sadly don’t have a better idea The mentioned vectorizer has a few options so maybe play around and see if any of them...
View ArticleWeaviate requires a string of UUID format when adding json Schema
Can you please post your collection definition? config = collection.config.get() print(config.properties)
View ArticleHybrid Queries on new OpenAI Embedding Models failing server restart
Any updates on this? Issue seems to be on server version 1.28 and in weaviate cloud it’s not possible to select a prior version
View ArticleHybrid Queries on new OpenAI Embedding Models failing server restart
Hello @DudaNogueira, What is the status or the bug fix? We are attempting to deploy our application using the paid serverless option, but the server version is locked to 1.28.2 (we can’t use the...
View ArticleHybrid Queries on new OpenAI Embedding Models failing server restart
hi there @Jose-Coutinho_cmore !! Welcome to our community This seems like a popular issue I have pinged our team again so we can prio this. Thanks!
View ArticleHow much memory capacity is needed to use multi2vec-bind vectorizer?
hi @Min !! Welcome to our community That is a hungry model, I tell you that While I can run it nice on a macbook pro m2 with 32G, it is still slow, when compared to running on a CUDA enabled device. I...
View Article