Azure AI speech doesnt load at all, ever

AJ 0 Reputation points
2026-06-09T14:52:31.99+00:00

I tried hard reset and incognito, nothing works. I am using google chrome.

I opened azure account today and struggling since the very begining. Tried to even run it in vs code or make my own small html program just not to have to deal with this thing. I am totally frustrated. Any tips? I need it for commercial use and I will not pay extra to have it run in some other 100 dollar subscription mini applications or whatever

Azure Speech in Foundry Tools

2 answers

Sort by: Most helpful
  1. Anshika Varshney 14,085 Reputation points Microsoft External Staff Moderator
    2026-06-10T13:35:48.25+00:00

    Hey @AJ ,

    Based on your description (“Azure AI Speech doesn’t load at all”), this looks more like a browser, connectivity, or access-related issue rather than a problem with your code (especially since you also tried a simple HTML/VS Code setup).

    Here are a few key things you can try:

    1. Clear cache and check connectivity Sometimes Speech/AI experiences in the browser fail to load due to network restrictions or stale session data.
    • Clear your browser cache and cookies
    • Try using a different browser or incognito/private mode
    • If you’re on a corporate network or VPN, make sure it allows outbound access to Azure endpoints

    Validate using SDK or REST To isolate whether the issue is UI-specific, try accessing Azure Speech using the SDK or REST APIs. If this works, it confirms that the service is functioning and the issue is likely limited to the web experience.

    1. If you are using Azure AI Foundry. If the issue occurs specifically in Foundry (ai.azure.com or related tools), it could be related to:
    • Resource configuration (region or service availability)
    • Authentication/session issues
    • Tenant or subscription setup

    Checking whether the Speech capability is properly configured and available in your environment can help narrow this down.

    To help identify the root cause, could you please share a few details:

    • Which exact page or tool is not loading (Azure portal, Speech Studio, Foundry, etc.)
    • Whether you see any error message in the browser console
    • Whether you are on a corporate network/VPN
    • Whether Speech calls via SDK/REST are working
    • Whether you have already created a Speech resource

    With this information, we can guide you with more targeted steps.

    Reference list

    I Hope this helps. Do let me know if you have any further queries.

    Thankyou!

    Was this answer helpful?

    0 comments No comments

  2. AI answer

    2026-06-09T14:53:04.8566667+00:00

    Use a step-by-step browser and account cleanup, then try again with Azure Speech in Foundry Tools:

    1. Sign out of all Microsoft/Azure accounts in the browser.
    2. In Chrome, clear all site data and cache for Microsoft/Azure domains:
      • Go to Settings → Privacy and security → Clear browsing data.
      • Clear cookies and cached images/files.
    3. Close all Chrome windows completely, then reopen Chrome.
    4. Open a new Incognito window (Ctrl+Shift+N) and sign in to Azure again, then try opening Azure Speech in Foundry Tools.
    5. If the page is still stuck loading, check that cookies and pop‑ups are allowed for the Azure/Speed Studio site, and that third‑party cookies are not blocked.
    6. If it continues to hang, try another browser (for example, Edge) just to confirm whether the issue is specific to Chrome.

    If access to the portal remains unreliable, use the SDKs and APIs directly for commercial use instead of relying on the browser UI. Set up environment variables for Azure OpenAI and Speech, then build and run from code:

    • On Windows (Command Prompt):
    setx AZURE_OPENAI_API_KEY your-openai-key
    setx AZURE_OPENAI_ENDPOINT your-openai-endpoint
    setx AZURE_OPENAI_CHAT_DEPLOYMENT your-openai-deployment-name
    setx SPEECH_KEY your-speech-key
    setx SPEECH_REGION your-speech-region
    
    • On Linux (bash):
    export AZURE_OPENAI_API_KEY=your-openai-key
    export AZURE_OPENAI_ENDPOINT=your-openai-endpoint
    export AZURE_OPENAI_CHAT_DEPLOYMENT=your-openai-deployment-name
    export SPEECH_KEY=your-speech-key
    export SPEECH_REGION=your-speech-region
    

    After setting these, restart tools like VS Code so they pick up the environment variables, then run the Speech/OpenAI samples or your own app without depending on the web UI.


    References:

    AI-generated content may be incorrect. Read our transparency notes for more information.

    Was this answer helpful?

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.