Weaviate-verba python client
We found this article that seems to use a Verba client to query Verba server. But it install pip install weaviate-verba that we cannot find anywhere. Is this package available?
View ArticlePython V4 - Set api version for Azure OpenAI vectorizer?
Description Is there a way to set the api version for v4 Azure OpenAI vectorizer? I tried passing the OPENAI_API_VERSION but Weaviate seems to default to: /embeddings?api-version=2024-02-01 …but our...
View ArticleHow to load existing db to similarity search?
weaviate-client==4.7.1 langchain-weaviate==0.0.2 langchain==0.2.11 I am able to create a simple example to create a ‘db’ and use that db to do inference in one flow: from bge import bge_m3_embedding...
View ArticleColbertV2 Support
I wanted to know if Weaviate has any plans to support Colbert. I saw a post about this a little while ago Weaviate & ColBERTv2? - #3 by Draco, unfortunately, the multiple-named vector approach...
View ArticleHow to load existing db to similarity search?
I added a little more: I am using BGE-M3 embedding: model_kwargs = {"device": "cpu"} from langchain_community.embeddings import HuggingFaceBgeEmbeddings bge_m3_embedding = HuggingFaceBgeEmbeddings(...
View ArticleIssue: Weaviate Cluster Setup with Docker on Different Servers Failing
Hi @Mariam !! Have you seen this docker compose for multi node? weaviate.io Docker Compose | Weaviate - Vector Database Weaviate supports deployment with Docker. If you use the default values, you...
View ArticleWeaviate-verba python client
hi @Univision_Support !! Welcome to our community Check Verba’s repo here: github.com GitHub - weaviate/Verba: Retrieval Augmented Generation (RAG) chatbot... Retrieval Augmented Generation (RAG)...
View ArticlePython V4 - Set api version for Azure OpenAI vectorizer?
hi @Taylor_Hickman !! I believe we have found an undocumented feature apiVersion I am not sure you can pass apiVersion at query time. I will have to ask internally as I couldn’t figure out from the...
View ArticleLLamaIndex use text2vec_cohere defined in weaviate cloud instance
I want to insert data into weaviate cloud instance using textevec_cohere and allow weaviate to create the embeddings. I’m using Llamaindex to get data from web and then insert it but I get an error...
View ArticleLangchain WeaviateHybridSearchRetriever with filters?
@DudaNogueira thank you for the quick reply. However, using the RetrievalQA is not ideal. As this one is deprecated in newer versions (langchain.chains.retrieval_qa.base.RetrievalQA — 🦜🔗 LangChain...
View ArticleHow to use Python V4 Api with Azure?
questions = client.collections.create( name="Questions", vectorizer_config=wvcc.Configure.Vectorizer.text2vec_azure_openai( base_url= 'https://xxx.domain.com/', deployment_id="text-embedding-3-large",...
View ArticleLangchain WeaviateHybridSearchRetriever with filters?
Hi @Just_Guide7361 !! Thanks for pointing it out!! I will take the opportunity and also write a recipe using the multi tenancy feature with langchain. here is a working code using...
View ArticleWeaviate Cluster Setup with Docker on Different Servers Failing
Hello everyone, I’m trying to set up a Weaviate cluster consisting of 3 nodes, each running on a different server, using Docker. However, I’m encountering an issue where the nodes fail to join the...
View ArticleAn object is somehow only visible in the REST API but not via GraphQL
Hey, thanks! Searching for the ID did not yield a result either, sadly we’ve re-indexed since this issue occurred so the problem isn’t present any more for debugging. This did occur repeatedly though,...
View ArticleLLamaIndex use text2vec_cohere defined in weaviate cloud instance
Finally solved using: Settings.embed_model = CohereEmbedding(cohere_api_key=os.getenv(“COHERE_APIKEY”)) Below the revisited code. Any suggestion to improve it further? Am I doing something wrong?...
View ArticleNode crashloop in K8 deployment
I have since resolved this by deleting all the persistent volumes & claims attached to my replicas and starting fresh, so I don’t think I can further debug anything. But at the time, I know it was...
View ArticleAppkey Configuration - Azure OpenAI
Error while connecting to Azure OpenAI: WeaviateInsertManyAllFailedError: Every object failed during insertion. Here is the set of all errors: connection to: Azure OpenAI API failed with status: 400...
View ArticlePython V4 - Set api version for Azure OpenAI vectorizer?
Hi! You cannot pass the apiVersion on query time Our team is looking into this. but right now, you will need to set the apiversion while creating a collection.
View ArticleHow to use Python V4 Api with Azure?
hi! Welcome to our community This message indicates that the apikey may be wrong. 401 - is unauthorized code. Can you make sure the apikey is correct?
View ArticleLLamaIndex use text2vec_cohere defined in weaviate cloud instance
hi! Thanks for sharing!
View Article