diff --git a/python/semantic_kernel/connectors/memory/azure_db_for_postgres/azure_db_for_postgres_collection.py b/python/semantic_kernel/connectors/memory/azure_db_for_postgres/azure_db_for_postgres_collection.py index 9427a390831ab..d6fbc656775ef 100644 --- a/python/semantic_kernel/connectors/memory/azure_db_for_postgres/azure_db_for_postgres_collection.py +++ b/python/semantic_kernel/connectors/memory/azure_db_for_postgres/azure_db_for_postgres_collection.py @@ -8,7 +8,7 @@ ) from semantic_kernel.connectors.memory.postgres.constants import DEFAULT_SCHEMA from semantic_kernel.connectors.memory.postgres.postgres_collection import PostgresCollection -from semantic_kernel.data.vector_store_model_definition import VectorStoreRecordDefinition +from semantic_kernel.data.record_definition.vector_store_model_definition import VectorStoreRecordDefinition TKey = TypeVar("TKey", str, int) TModel = TypeVar("TModel")