Find answers from the community

Home
Members
ToolKami
T
ToolKami
Offline, last seen 3 months ago
Joined September 25, 2024
does anyone know if I can merge 2 index to be stored and retrieved? e.g.
Plain Text
existing_index = load_index_from_storage(storage_context, index_id=index_id)
documents = SimpleWebPageReader(html_to_text=True).load_data(websites.split(","))
new_index = VectorStoreIndex.from_documents(documents, service_context=service_context)
# merge(existing_index, new_index)
1 comment
L
streaming response outputs from query engine often have weird whitespaces, is it a tokenization issue? anyway to handle them?
1 comment
L