Skip to content

docs: correct URLs and improve clarity in the deployment instructions #311

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,10 @@ QUICK DEPLOY

To deploy this solution accelerator, ensure you have access to an [Azure subscription](https://azure.microsoft.com/free/) with the necessary permissions to create **resource groups and resources**. Follow the steps in [Azure Account Set Up](./docs/AzureAccountSetUp.md)

Check the [Azure Products by Region](https://azure.microsoft.com/en-us/explore/global-infrastructure/products-by-region/?products=all&regions=all) page and select a **region** where the following services are available:
Check the [Azure Products by Region](https://azure.microsoft.com/en-us/explore/global-infrastructure/products-by-region/table) page and select a **region** where the following services are available:

- Azure AI Foundry
- Azure OpenAI Service
- Azure AI Search
- Embedding Model Capacity
- GPT Model Capacity
- [Azure Semantic Search](./docs/AzureSemanticSearchRegion.md)

Here are some example regions where the services are available: East US, East US2, Australia East, UK South, France Central.
Expand Down Expand Up @@ -85,9 +82,9 @@ When you start the deployment, most parameters will have **default values**, but

### [Optional] Quota Recommendations
By default, the **Gpt-4o model capacity** in deployment is set to **30k tokens**, so we recommend
> **For GPT-4o, the capacity to at least 150k tokens post-deployment for optimal performance.**
> **For Global Standard | GPT-4o - the capacity to at least 150k tokens post-deployment for optimal performance.**

> **For GPT-4, ensure a minimum of 30k–40k tokens for best results.**
> **For Standard | GPT-4 - ensure a minimum of 30k–40k tokens for best results.**

To adjust quota settings, follow these [steps](./docs/AzureGPTQuotaSettings.md)

Expand Down
2 changes: 1 addition & 1 deletion infra/deploy_cosmos_db.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ resource cosmos 'Microsoft.DocumentDB/databaseAccounts@2022-08-15' = {
databaseAccountOfferType: 'Standard'
enableAutomaticFailover: false
enableMultipleWriteLocations: false
disableLocalAuth: false
disableLocalAuth: true
apiProperties: (kind == 'MongoDB') ? { serverVersion: '4.0' } : {}
capabilities: [ { name: 'EnableServerless' } ]
}
Expand Down
Loading