You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Senparc.AI/Interfaces/ISenparcAiSetting.cs
+45-31Lines changed: 45 additions & 31 deletions
Original file line number
Diff line number
Diff line change
@@ -187,37 +187,51 @@ public class VectorDB
187
187
188
188
publicenumVectorDBType
189
189
{
190
-
//Memory,
191
-
//HardDisk,
192
-
//Redis,
193
-
//Mulivs,
194
-
//Chroma,
195
-
//PostgreSQL,
196
-
//Sqlite,
197
-
//SqlServer,
198
-
199
-
/* 注意:枚举值一旦确定,不能再进行修改 */
200
-
201
-
AzureAISearch=0,
202
-
CosmosDBMongoDB=1,
203
-
CosmosDBNoSQL=2,
204
-
Chroma=3,//Planed
205
-
Couchbase=4,
206
-
Elasticsearch=5,
207
-
Faiss=6,
208
-
InMemory=7,
209
-
JDBC=8,
210
-
Milvus=9,//Planed (not included in https://learn.microsoft.com/en-us/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/inmemory-connector?pivots=programming-language-csharp)
211
-
MongoDB=10,
212
-
Pinecon=11,
213
-
Postgres=12,
214
-
Qdrant=13,
215
-
Redis=14,
216
-
SqlServer=15,//Planed
217
-
SQLite=16,
218
-
VolatileInMemory=17,
219
-
Weaviate=18,
220
-
Default=InMemory,
190
+
Memory,
191
+
HardDisk,
192
+
Redis,
193
+
Milvus,
194
+
Chroma,
195
+
PostgreSQL,
196
+
Sqlite,
197
+
SqlServer,
198
+
Qdrant,
199
+
Default=Memory,
221
200
}
201
+
202
+
//public enum VectorDBType
203
+
//{
204
+
// //Memory,
205
+
// //HardDisk,
206
+
// //Redis,
207
+
// //Mulivs,
208
+
// //Chroma,
209
+
// //PostgreSQL,
210
+
// //Sqlite,
211
+
// //SqlServer,
212
+
213
+
// /* 注意:枚举值一旦确定,不能再进行修改 */
214
+
215
+
// AzureAISearch=0,
216
+
// CosmosDBMongoDB=1,
217
+
// CosmosDBNoSQL=2,
218
+
// Chroma=3, //Planed
219
+
// Couchbase=4,
220
+
// Elasticsearch=5,
221
+
// Faiss=6,
222
+
// InMemory=7,
223
+
// JDBC=8,
224
+
// Milvus=9, //Planed (not included in https://learn.microsoft.com/en-us/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/inmemory-connector?pivots=programming-language-csharp)
0 commit comments