|
243 | 243 | },
|
244 | 244 | //
|
245 | 245 | // Configuration for the various services used by kernel memory and semantic kernel.
|
246 |
| - // Section names correspond to type specified in SemanticMemory section. All supported |
| 246 | + // Section names correspond to type specified in KernelMemory section. All supported |
247 | 247 | // sections are listed below for reference. Only referenced sections are required.
|
248 | 248 | //
|
249 | 249 | "Services": {
|
|
280 | 280 | //
|
281 | 281 | "AzureBlobs": {
|
282 | 282 | "Auth": "ConnectionString",
|
283 |
| - //"ConnectionString": "", // dotnet user-secrets set "SemanticMemory:Services:AzureBlobs:ConnectionString" "MY_AZUREBLOB_CONNECTIONSTRING" |
| 283 | + //"ConnectionString": "", // dotnet user-secrets set "KernelMemory:Services:AzureBlobs:ConnectionString" "MY_AZUREBLOB_CONNECTIONSTRING" |
284 | 284 | //"Account": "",
|
285 | 285 | "Container": "memorypipeline"
|
286 | 286 | //"EndpointSuffix": "core.windows.net"
|
|
294 | 294 | //
|
295 | 295 | "AzureQueue": {
|
296 | 296 | "Auth": "ConnectionString"
|
297 |
| - //"ConnectionString": "", // dotnet user-secrets set "SemanticMemory:Services:AzureQueue:ConnectionString" "MY_AZUREQUEUE_CONNECTIONSTRING" |
| 297 | + //"ConnectionString": "", // dotnet user-secrets set "KernelMemory:Services:AzureQueue:ConnectionString" "MY_AZUREQUEUE_CONNECTIONSTRING" |
298 | 298 | //"Account": "",
|
299 | 299 | //"EndpointSuffix": "core.windows.net"
|
300 | 300 | },
|
|
306 | 306 | // - Port is the RabbitMq service port.
|
307 | 307 | //
|
308 | 308 | "RabbitMq": {
|
309 |
| - //"Username": "user", // dotnet user-secrets set "SemanticMemory:Services:RabbitMq:Username" "MY_RABBITMQ_USER" |
310 |
| - //"Password": "", // dotnet user-secrets set "SemanticMemory:Services:RabbitMq:Password" "MY_RABBITMQ_KEY" |
| 309 | + //"Username": "user", // dotnet user-secrets set "KernelMemory:Services:RabbitMq:Username" "MY_RABBITMQ_USER" |
| 310 | + //"Password": "", // dotnet user-secrets set "KernelMemory:Services:RabbitMq:Password" "MY_RABBITMQ_KEY" |
311 | 311 | "Host": "127.0.0.1",
|
312 | 312 | "Port": "5672"
|
313 | 313 | },
|
|
319 | 319 | //
|
320 | 320 | "AzureCognitiveSearch": {
|
321 | 321 | "Auth": "ApiKey",
|
322 |
| - //"APIKey": "", // dotnet user-secrets set "SemanticMemory:Services:AzureCognitiveSearch:APIKey" "MY_ACS_KEY" |
| 322 | + //"APIKey": "", // dotnet user-secrets set "KernelMemory:Services:AzureCognitiveSearch:APIKey" "MY_ACS_KEY" |
323 | 323 | "Endpoint": ""
|
324 | 324 | },
|
325 | 325 | //
|
|
328 | 328 | // - Endpoint is the service endpoint url.
|
329 | 329 | //
|
330 | 330 | "Qdrant": {
|
331 |
| - //"APIKey": "", // dotnet user-secrets set "SemanticMemory:Services:Qdrant:APIKey" "MY_QDRANT_KEY" |
| 331 | + //"APIKey": "", // dotnet user-secrets set "KernelMemory:Services:Qdrant:APIKey" "MY_QDRANT_KEY" |
332 | 332 | "Endpoint": "http://127.0.0.1:6333"
|
333 | 333 | },
|
334 | 334 | //
|
|
342 | 342 | //
|
343 | 343 | "AzureOpenAIText": {
|
344 | 344 | "Auth": "ApiKey",
|
345 |
| - // "APIKey": "", // dotnet user-secrets set "SemanticMemory:Services:AzureOpenAIText:APIKey" "MY_AZUREOPENAI_KEY" |
| 345 | + // "APIKey": "", // dotnet user-secrets set "KernelMemory:Services:AzureOpenAIText:APIKey" "MY_AZUREOPENAI_KEY" |
346 | 346 | "Endpoint": "",
|
347 | 347 | "Deployment": "gpt-35-turbo",
|
348 | 348 | "APIType": "ChatCompletion",
|
|
357 | 357 | //
|
358 | 358 | "AzureOpenAIEmbedding": {
|
359 | 359 | "Auth": "ApiKey",
|
360 |
| - // "APIKey": "", // dotnet user-secrets set "SemanticMemory:Services:AzureOpenAIEmbedding:APIKey" "MY_AZUREOPENAI_KEY" |
| 360 | + // "APIKey": "", // dotnet user-secrets set "KernelMemory:Services:AzureOpenAIEmbedding:APIKey" "MY_AZUREOPENAI_KEY" |
361 | 361 | "Endpoint": "",
|
362 | 362 | "Deployment": "text-embedding-ada-002"
|
363 | 363 | },
|
|
372 | 372 | "OpenAI": {
|
373 | 373 | "TextModel": "gpt-3.5-turbo",
|
374 | 374 | "EmbeddingModel": "text-embedding-ada-002",
|
375 |
| - //"APIKey": "", // dotnet user-secrets set "SemanticMemory:Services:OpenAI:APIKey" "MY_OPENAI_KEY" |
| 375 | + //"APIKey": "", // dotnet user-secrets set "KernelMemory:Services:OpenAI:APIKey" "MY_OPENAI_KEY" |
376 | 376 | "OrgId": "",
|
377 | 377 | "MaxRetries": 10
|
378 | 378 | },
|
|
384 | 384 | //
|
385 | 385 | "AzureFormRecognizer": {
|
386 | 386 | "Auth": "APIKey",
|
387 |
| - //"APIKey": "", // dotnet user-secrets set "SemanticMemory:Services:AzureFormRecognizer:APIKey" "MY_AZUREFORMRECOGNIZER_KEY" |
| 387 | + //"APIKey": "", // dotnet user-secrets set "KernelMemory:Services:AzureFormRecognizer:APIKey" "MY_AZUREFORMRECOGNIZER_KEY" |
388 | 388 | "Endpoint": ""
|
389 | 389 | },
|
390 | 390 | //
|
|
0 commit comments