Skip to content

Latest commit

 

History

History
13 lines (7 loc) · 1.74 KB

deploy_troubleshooting.md

File metadata and controls

13 lines (7 loc) · 1.74 KB

RAG chat: Troubleshooting deployment

If you are experiencing an error when deploying the RAG chat solution using the deployment steps, this guide will help you troubleshoot common issues.

  1. You're attempting to create resources in regions not enabled for Azure OpenAI (e.g. East US 2 instead of East US), or where the model you're trying to use isn't enabled. See this matrix of model availability.

  2. You've exceeded a quota, most often number of resources per region. See this article on quotas and limits.

  3. You're getting "same resource name not allowed" conflicts. That's likely because you've run the sample multiple times and deleted the resources you've been creating each time, but are forgetting to purge them. Azure keeps resources for 48 hours unless you purge from soft delete. See this article on purging resources.

  4. You see CERTIFICATE_VERIFY_FAILED when the prepdocs.py script runs. That's typically due to incorrect SSL certificates setup on your machine. Try the suggestions in this StackOverflow answer.

  5. After running azd up and visiting the website, you see a '404 Not Found' in the browser. Wait 10 minutes and try again, as it might be still starting up. Then try running azd deploy and wait again. If you still encounter errors with the deployed app and are deploying to App Service, consult the guide on debugging App Service deployments. Please file an issue if the logs don't help you resolve the error.