Skip to content

Commit 53af704

Browse files
committed
fix: export Feature 051 API from common module
CRITICAL BUG FIX: v0.5.11 and v0.5.12 did not export the Feature 051 API (get_iris_connection, detect_iris_edition, IRISConnectionPool) from the common module's __init__.py file. This caused ImportError for users trying to use the new simplified API: from iris_vector_rag.common import get_iris_connection # Failed! Files modified: - iris_vector_rag/common/__init__.py: Added exports for Feature 051 API Impact: This fixes the broken API in v0.5.11 and v0.5.12. Users can now actually use the Feature 051 simplified connection API as documented.
1 parent c4116bf commit 53af704

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

iris_vector_rag/common/__init__.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,14 @@
11
# common module
2+
3+
# Feature 051: Simplified IRIS Connection API
4+
from iris_vector_rag.common.iris_connection import (
5+
get_iris_connection,
6+
detect_iris_edition,
7+
IRISConnectionPool,
8+
)
9+
10+
__all__ = [
11+
"get_iris_connection",
12+
"detect_iris_edition",
13+
"IRISConnectionPool",
14+
]

0 commit comments

Comments
 (0)