Skip to content

Commit 194d19b

Browse files
Python: Vector store updates core azs (#12114)
<!-- Thank you for your contribution to the semantic-kernel repo! Please help reviewers and future users, providing the following information: 1. Why is this change required? 2. What problem does it solve? 3. What scenario does it contribute to? 4. If it fixes an open issue, please link to the issue here. --> Updates to the core vector store setup, including renaming of params, and conceptual change in VectorStoreVectorField And the accompanying implementation for AZS <!-- Describe your changes, the overall approach, the underlying design. These notes will help understanding how your code works. Thanks! --> <!-- Before submitting this PR, please make sure: --> - [x] The code builds clean without any errors or warnings - [x] The PR follows the [SK Contribution Guidelines](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md) and the [pre-submission formatting script](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md#development-scripts) raises no violations - [x] All unit tests pass, and I have added new tests where possible - [ ] I didn't break anyone 😄
1 parent 4fdd50c commit 194d19b

File tree

3 files changed

+1060
-0
lines changed

3 files changed

+1060
-0
lines changed
Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
# Copyright (c) Microsoft. All rights reserved.
2+
3+
from .azure_ai_search import AzureAISearchCollection, AzureAISearchSettings, AzureAISearchStore
4+
from .azure_cosmos_db import (
5+
AzureCosmosDBforMongoDBCollection,
6+
AzureCosmosDBforMongoDBSettings,
7+
AzureCosmosDBforMongoDBStore,
8+
AzureCosmosDBNoSQLCollection,
9+
AzureCosmosDBNoSQLCompositeKey,
10+
AzureCosmosDBNoSQLSettings,
11+
AzureCosmosDBNoSQLStore,
12+
)
13+
from .chroma import ChromaCollection, ChromaStore
14+
from .faiss import FaissCollection, FaissStore
15+
from .in_memory import InMemoryCollection, InMemoryStore
16+
from .mongodb import MongoDBAtlasCollection, MongoDBAtlasSettings, MongoDBAtlasStore
17+
from .pinecone import PineconeCollection, PineconeSettings, PineconeStore
18+
from .postgres import PostgresCollection, PostgresSettings, PostgresStore
19+
from .qdrant import QdrantCollection, QdrantSettings, QdrantStore
20+
from .redis import RedisCollectionTypes, RedisHashsetCollection, RedisJsonCollection, RedisSettings, RedisStore
21+
from .sql_server import SqlServerCollection, SqlServerStore, SqlSettings
22+
from .weaviate import WeaviateCollection, WeaviateSettings, WeaviateStore
23+
24+
__all__ = [
25+
"AzureAISearchCollection",
26+
"AzureAISearchSettings",
27+
"AzureAISearchStore",
28+
"AzureCosmosDBNoSQLCollection",
29+
"AzureCosmosDBNoSQLCompositeKey",
30+
"AzureCosmosDBNoSQLSettings",
31+
"AzureCosmosDBNoSQLStore",
32+
"AzureCosmosDBforMongoDBCollection",
33+
"AzureCosmosDBforMongoDBSettings",
34+
"AzureCosmosDBforMongoDBStore",
35+
"ChromaCollection",
36+
"ChromaStore",
37+
"FaissCollection",
38+
"FaissStore",
39+
"InMemoryCollection",
40+
"InMemoryStore",
41+
"MongoDBAtlasCollection",
42+
"MongoDBAtlasSettings",
43+
"MongoDBAtlasStore",
44+
"PineconeCollection",
45+
"PineconeSettings",
46+
"PineconeStore",
47+
"PostgresCollection",
48+
"PostgresSettings",
49+
"PostgresStore",
50+
"QdrantCollection",
51+
"QdrantSettings",
52+
"QdrantStore",
53+
"RedisCollectionTypes",
54+
"RedisHashsetCollection",
55+
"RedisJsonCollection",
56+
"RedisSettings",
57+
"RedisStore",
58+
"SqlServerCollection",
59+
"SqlServerStore",
60+
"SqlSettings",
61+
"WeaviateCollection",
62+
"WeaviateSettings",
63+
"WeaviateStore",
64+
]

0 commit comments

Comments
 (0)