Find answers from the community

Home
Members
Natuto_uzumaki1808
N
Natuto_uzumaki1808
Offline, last seen 3 months ago
Joined September 25, 2024
Getting the error-OpensearchVectorClient' object has no attribute 'stores_text'

executed this code-

vector_store = OpensearchVectorClient(
host,
idx,
1536,
http_auth = os_auth,
timeout=300,
port = 443,
use_ssl=True,
verify_certs=True,
embedding_field=embedding_field,
text_field=text_field
)

index = VectorStoreIndex.from_vector_store(
vector_store
)
query_engine = index.as_query_engine(streaming = True)
res = query_engine.query("How to ride bicycle ")
res.print_response_stream()
2 comments
L
W
can llamaindex read lucid diagrams?
1 comment
W
vector_store = PineconeVectorStore(pinecone.Index("quickstart"))
index = VectorStoreIndex.from_vector_store(vector_store=vector_store)

Is there anything like this for Opensearch
12 comments
N
W
L
Hi @jerryjliu0, How to connect to S3 bucket and get the documents via llama-index
5 comments
N
W
Hi @Jerry Liu , facing the error OpenSearch object has no attribute index_results while trying to connect to opensearch database using llama_index
6 comments
W
N
Hi guys, I am trying to dump vector embedding files that I have in my local
{default_vector.json, image_vector.json, index_store.json} into Opensearch database. Can you help me with the solution.
1 comment
L