Skip to content

Commit ec404d5

Browse files
committed
update llama_index to 0.10
1 parent 18aeb78 commit ec404d5

File tree

5 files changed

+468
-12
lines changed

5 files changed

+468
-12
lines changed

llama_iris/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from llama_iris.vectorstore import IRISVectorStore
22

3-
from llama_index.vector_stores.loading import LOADABLE_VECTOR_STORES
3+
from llama_index.legacy.vector_stores.loading import LOADABLE_VECTOR_STORES
44

55
LOADABLE_VECTOR_STORES[IRISVectorStore.class_name()] = IRISVectorStore
66

llama_iris/vectorstore.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
import logging
22
from typing import Any, List, Optional, Type
33

4-
from llama_index.bridge.pydantic import PrivateAttr
5-
from llama_index.schema import BaseNode, MetadataMode
6-
from llama_index.vector_stores.types import (
4+
from llama_index.legacy.bridge.pydantic import PrivateAttr
5+
from llama_index.legacy.schema import BaseNode, MetadataMode
6+
from llama_index.legacy.vector_stores.types import (
77
BasePydanticVectorStore,
88
VectorStoreQuery,
99
VectorStoreQueryResult,
1010
)
11-
from llama_index.vector_stores.utils import metadata_dict_to_node, node_to_metadata_dict
11+
from llama_index.legacy.vector_stores.utils import metadata_dict_to_node, node_to_metadata_dict
1212
from sqlalchemy.orm.session import close_all_sessions
1313

1414

0 commit comments

Comments
 (0)