Skip to content

Commit 4882d42

Browse files
committed
Add Search service SKU values
1 parent a1cd559 commit 4882d42

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ The following deployment parameters are used:
8383
| `embeddingModelVectorDimensions` | The [dimensions](https://learn.microsoft.com/azure/ai-services/openai/concepts/models#embeddings-models) of the vectors generated by the embedding model | `1536` |
8484
| `gptModelName` | The name of the [Azure OpenAI GPT model](https://learn.microsoft.com/azure/ai-services/openai/concepts/models) to use | `gpt-35-turbo` |
8585
| `gptModelVersion` | The version of the GPT model to use | `0301` |
86-
| `searchServiceSku` | The [name of the Azure Cognitive Search service SKU](https://learn.microsoft.com/azure/templates/microsoft.search/searchservices?pivots=deployment-language-arm-template#sku-1) to use (note that this impacts certain [limits](https://learn.microsoft.com/azure/search/search-limits-quotas-capacity), for example the maximum blob size for indexers is 16 MB on the basic tier) | `basic` |
86+
| `searchServiceSku` | The [name of the Azure Cognitive Search service tier](https://learn.microsoft.com/azure/search/search-sku-tier) to use (note that this impacts certain [limits](https://learn.microsoft.com/azure/search/search-limits-quotas-capacity), for example the maximum blob size for indexers is 16 MB on the basic tier) | `basic` |
8787
| `initialDocumentUrls` | A space-separated list of URLs for the documents to include by default | A [resiliency](https://azure.microsoft.com/mediahandler/files/resourcefiles/resilience-in-azure-whitepaper/Resiliency-whitepaper.pdf) and [compliance](https://azure.microsoft.com/mediahandler/files/resourcefiles/data-residency-data-sovereignty-and-compliance-in-the-microsoft-cloud/Data_Residency_Data_Sovereignty_Compliance_Microsoft_Cloud.pdf) document |
8888

8989
After the solution was deployed, simply browse to the App Service web app to start searching!

azuredeploy-webapp.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,13 @@
3333
"searchServiceSku": {
3434
"type": "String",
3535
"minLength": 1,
36-
"defaultValue": "basic"
36+
"defaultValue": "basic",
37+
"allowedValues": [
38+
"basic",
39+
"standard",
40+
"standard2",
41+
"standard3"
42+
]
3743
},
3844
"initialDocumentUrls": {
3945
"type": "String",

0 commit comments

Comments
 (0)