|
1 | 1 | { |
2 | 2 | "ConnectionStrings": { |
3 | | - "AppConfig": "{{ appconfig-url }}" |
| 3 | + // Replace with the Azure App Configuration endpoint URL |
| 4 | + "AppConfig": "https://<app-config-name>.azconfig.io" |
4 | 5 | }, |
5 | 6 | "KernelMemory": { |
6 | 7 | "Service": { |
|
117 | 118 | "BucketName": "" |
118 | 119 | }, |
119 | 120 | "AzureAISearch": { |
120 | | - "Auth": "ApiKey", |
121 | | - "Endpoint": "", |
122 | | - "APIKey": "", |
| 121 | + // Auth and Endpoint are configured in Azure App Configuration |
123 | 122 | "UseHybridSearch": true |
124 | 123 | }, |
125 | 124 | "AzureAIDocIntel": { |
126 | | - "Auth": "ApiKey", |
127 | | - "APIKey": "", |
128 | | - "Endpoint": "" |
| 125 | + // Auth and Endpoint are configured in Azure App Configuration |
129 | 126 | }, |
130 | 127 | "AzureBlobs": { |
131 | | - "Auth": "AzureIdentity", |
132 | | - "Account": "", |
133 | | - "Container": "", |
134 | | - "ConnectionString": "", |
| 128 | + // Auth, Account, and Container are configured in Azure App Configuration |
135 | 129 | "EndpointSuffix": "core.windows.net" |
136 | 130 | }, |
137 | 131 | "AzureOpenAIEmbedding": { |
138 | | - "Auth": "ApiKey", |
139 | | - "Endpoint": "", |
140 | | - "APIKey": "", |
141 | | - "Deployment": "", |
| 132 | + // Auth, Endpoint, and Deployment are configured in Azure App Configuration |
142 | 133 | "MaxTokenTotal": 8191, |
143 | 134 | "EmbeddingDimensions": null, |
144 | 135 | "MaxEmbeddingBatchSize": 1, |
145 | 136 | "MaxRetries": 10, |
146 | 137 | "APIType": "EmbeddingGeneration" |
147 | 138 | }, |
148 | 139 | "AzureOpenAIText": { |
149 | | - "Auth": "ApiKey", |
150 | | - "Endpoint": "", |
151 | | - "APIKey": "", |
152 | | - "Deployment": "", |
| 140 | + // Auth, Endpoint, and Deployment are configured in Azure App Configuration |
153 | 141 | "MaxTokenTotal": 128000, |
154 | 142 | "APIType": "ChatCompletion", |
155 | 143 | "MaxRetries": 10 |
156 | 144 | }, |
157 | 145 | "AzureQueues": { |
158 | | - "Auth": "AzureIdentity", |
159 | | - "Account": "", |
160 | | - "ConnectionString": "", |
| 146 | + // Auth and Account are configured in Azure App Configuration |
161 | 147 | "EndpointSuffix": "core.windows.net", |
162 | 148 | "PollDelayMsecs": 100, |
163 | 149 | "FetchBatchSize": 3, |
|
0 commit comments