We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ceccc1 commit 311bae8Copy full SHA for 311bae8
1 file changed
Helpers/AIProcessor.cs
@@ -547,7 +547,9 @@ AzureSearchConfig azureSearchConfig
547
>();
548
549
var vectorStore = kernel.GetRequiredService<AzureAISearchVectorStore>();
550
- var collection = vectorStore.GetCollection<string, TextSnippet<string>>("default");
+ var collection = vectorStore.GetCollection<string, TextSnippet<string>>(
551
+ azureSearchConfig.Index
552
+ );
553
554
// delete and readd the collection
555
await collection.EnsureCollectionDeletedAsync();
0 commit comments