You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
COLLECTION_NAME = "NVIDIA_Finance"
from langchain_community.vectorstores import Milvus
vectorstore = Milvus.from_documents(
documents,
embedder_document,
collection_name=COLLECTION_NAME,
connection_args={"uri": 'http://milvus:19530'}, # replace this with the ip of the workstation where milvus is running
drop_old=True,
)
docs = vectorstore.similarity_search("what are 2024 Q3 revenues? ")
The hello-milvus.py from Milvus is working file. I added timeout 60 or 120.still doesn't work
OS. Linux Ubuntu 20.04
Issue:
consistently get
Example: https://github.com/NVIDIA/GenerativeAIExamples/blob/main/RAG/notebooks/langchain/Chat_with_nvidia_financial_reports.ipynb
code with issue
The hello-milvus.py from Milvus is working file. I added timeout 60 or 120.still doesn't work
The text was updated successfully, but these errors were encountered: