Skip to content

Commit b8ced5d

Browse files
Merge psl-dkmlocalsetup into readme-updates
2 parents c6e096e + 2b0c3b2 commit b8ced5d

14 files changed

Lines changed: 624 additions & 177 deletions

Deployment/appconfig/aiservice/appsettings.Development.json.template

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
},
88
"AllowedHosts": "*",
99
"ConnectionStrings": {
10-
"AppConfig": "{{ appconfig-url }}"
10+
// Replace with the Azure App Configuration endpoint URL
11+
"AppConfig": "https://<app-config-name>.azconfig.io"
1112
}
1213
}
1314

Deployment/appconfig/kernelmemory/appsettings.Development.json.template

Lines changed: 8 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"ConnectionStrings": {
3-
"AppConfig": "{{ appconfig-url }}"
3+
// Replace with the Azure App Configuration endpoint URL
4+
"AppConfig": "https://<app-config-name>.azconfig.io"
45
},
56
"KernelMemory": {
67
"Service": {
@@ -117,47 +118,32 @@
117118
"BucketName": ""
118119
},
119120
"AzureAISearch": {
120-
"Auth": "ApiKey",
121-
"Endpoint": "",
122-
"APIKey": "",
121+
// Auth and Endpoint are configured in Azure App Configuration
123122
"UseHybridSearch": true
124123
},
125124
"AzureAIDocIntel": {
126-
"Auth": "ApiKey",
127-
"APIKey": "",
128-
"Endpoint": ""
125+
// Auth and Endpoint are configured in Azure App Configuration
129126
},
130127
"AzureBlobs": {
131-
"Auth": "AzureIdentity",
132-
"Account": "",
133-
"Container": "",
134-
"ConnectionString": "",
128+
// Auth, Account, and Container are configured in Azure App Configuration
135129
"EndpointSuffix": "core.windows.net"
136130
},
137131
"AzureOpenAIEmbedding": {
138-
"Auth": "ApiKey",
139-
"Endpoint": "",
140-
"APIKey": "",
141-
"Deployment": "",
132+
// Auth, Endpoint, and Deployment are configured in Azure App Configuration
142133
"MaxTokenTotal": 8191,
143134
"EmbeddingDimensions": null,
144135
"MaxEmbeddingBatchSize": 1,
145136
"MaxRetries": 10,
146137
"APIType": "EmbeddingGeneration"
147138
},
148139
"AzureOpenAIText": {
149-
"Auth": "ApiKey",
150-
"Endpoint": "",
151-
"APIKey": "",
152-
"Deployment": "",
140+
// Auth, Endpoint, and Deployment are configured in Azure App Configuration
153141
"MaxTokenTotal": 128000,
154142
"APIType": "ChatCompletion",
155143
"MaxRetries": 10
156144
},
157145
"AzureQueues": {
158-
"Auth": "AzureIdentity",
159-
"Account": "",
160-
"ConnectionString": "",
146+
// Auth and Account are configured in Azure App Configuration
161147
"EndpointSuffix": "core.windows.net",
162148
"PollDelayMsecs": 100,
163149
"FetchBatchSize": 3,

docs/DeleteResourceGroup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ If your deployment fails and you need to clean up the resources manually, follow
3737

3838
## **4. Delete Individual Resources (If Needed)**
3939

40-
If you dont want to delete the entire resource group, follow these steps:
40+
If you don't want to delete the entire resource group, follow these steps:
4141

4242
1. Open **Azure Portal** and go to the **Resource groups** section.
4343
2. Click on the specific **resource group**.

docs/DeploymentGuide.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -448,6 +448,7 @@ Now that your deployment is complete and tested, explore these resources to enha
448448
📚 **Learn More:**
449449
- [Technical Architecture](./TechnicalArchitecture.md) - Understand the system design and components
450450
- [Local Development Setup](./LocalSetupGuide.md) - Set up your local development environment
451+
- [Sample Questions](./SampleQuestions.md) - Example prompts to test the solution
451452
452453
## Need Help?
453454

0 commit comments

Comments
 (0)