Skip to content

Commit

Permalink
update llama_index to 0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
daimor committed Jun 9, 2024
1 parent 18aeb78 commit ec404d5
Show file tree
Hide file tree
Showing 5 changed files with 468 additions and 12 deletions.
2 changes: 1 addition & 1 deletion llama_iris/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from llama_iris.vectorstore import IRISVectorStore

from llama_index.vector_stores.loading import LOADABLE_VECTOR_STORES
from llama_index.legacy.vector_stores.loading import LOADABLE_VECTOR_STORES

LOADABLE_VECTOR_STORES[IRISVectorStore.class_name()] = IRISVectorStore

Expand Down
8 changes: 4 additions & 4 deletions llama_iris/vectorstore.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import logging
from typing import Any, List, Optional, Type

from llama_index.bridge.pydantic import PrivateAttr
from llama_index.schema import BaseNode, MetadataMode
from llama_index.vector_stores.types import (
from llama_index.legacy.bridge.pydantic import PrivateAttr
from llama_index.legacy.schema import BaseNode, MetadataMode
from llama_index.legacy.vector_stores.types import (
BasePydanticVectorStore,
VectorStoreQuery,
VectorStoreQueryResult,
)
from llama_index.vector_stores.utils import metadata_dict_to_node, node_to_metadata_dict
from llama_index.legacy.vector_stores.utils import metadata_dict_to_node, node_to_metadata_dict
from sqlalchemy.orm.session import close_all_sessions


Expand Down
Loading

0 comments on commit ec404d5

Please sign in to comment.