gitextract_wp6mqwji/ ├── .github/ │ └── workflows/ │ └── voice-live-web-files.yml ├── .gitignore ├── Instructions/ │ ├── Exercises/ │ │ ├── 01-analyze-text.md │ │ ├── 02-language-agent.md │ │ ├── 03-gen-ai-speech.md │ │ ├── 04-azure-speech.md │ │ ├── 05-azure-speech-mcp.md │ │ ├── 06-voice-live-agent.md │ │ └── 07-translation.md │ └── Labs/ │ ├── 01-analyze-text.md │ ├── 02-qna.md │ ├── 03-language-understanding.md │ ├── 04-text-classification.md │ ├── 05-extract-custom-entities.md │ ├── 06-translate-text.md │ ├── 07-speech.md │ ├── 08-translate-speech.md │ ├── 09-audio-chat.md │ ├── 10-voice-live-api.md │ └── 11-voice-live-agent-web.md ├── LICENSE ├── Labfiles/ │ ├── 01-analyze-text/ │ │ └── Python/ │ │ ├── readme.txt │ │ └── text-analysis/ │ │ ├── requirements.txt │ │ ├── reviews/ │ │ │ ├── review1.txt │ │ │ ├── review2.txt │ │ │ ├── review3.txt │ │ │ ├── review4.txt │ │ │ └── review5.txt │ │ └── text-analysis.py │ ├── 02-language-agent/ │ │ └── Python/ │ │ └── text-agent/ │ │ ├── requirements.txt │ │ └── text-agent.py │ ├── 02-qna/ │ │ ├── Python/ │ │ │ ├── qna-app/ │ │ │ │ ├── qna-app.py │ │ │ │ └── requirements.txt │ │ │ └── readme.txt │ │ └── ask-question.sh │ ├── 03-gen-ai-speech/ │ │ └── Python/ │ │ ├── generate-speech/ │ │ │ ├── generate-speech.py │ │ │ └── requirements.txt │ │ └── transcribe-speech/ │ │ ├── requirements.txt │ │ └── transcribe-speech.py │ ├── 03-language/ │ │ ├── Clock.json │ │ ├── Python/ │ │ │ ├── clock-client/ │ │ │ │ ├── clock-client.py │ │ │ │ └── requirements.txt │ │ │ └── readme.txt │ │ └── send-call.sh │ ├── 04-azure-speech/ │ │ └── Python/ │ │ └── voice-mail/ │ │ ├── requirements.txt │ │ └── voice-mail.py │ ├── 04-text-classification/ │ │ ├── Python/ │ │ │ ├── classify-text/ │ │ │ │ ├── articles/ │ │ │ │ │ ├── test1.txt │ │ │ │ │ └── test2.txt │ │ │ │ ├── classify-text.py │ │ │ │ └── requirements.txt │ │ │ └── readme.txt │ │ ├── classify-text.ps1 │ │ ├── test1.txt │ │ └── test2.txt │ ├── 05-custom-entity-recognition/ │ │ ├── Python/ │ │ │ ├── custom-entities/ │ │ │ │ ├── ads/ │ │ │ │ │ ├── test1.txt │ │ │ │ │ └── test2.txt │ │ │ │ ├── custom-entities.py │ │ │ │ └── requirements.txt │ │ │ └── readme.txt │ │ ├── extract-entities.ps1 │ │ ├── test1.txt │ │ └── test2.txt │ ├── 05-speech-tool/ │ │ └── Python/ │ │ └── speech-client/ │ │ ├── requirements.txt │ │ └── speech-client.py │ ├── 06-translator-sdk/ │ │ └── Python/ │ │ ├── readme.txt │ │ └── translate-text/ │ │ ├── requirements.txt │ │ └── translate.py │ ├── 06-voice-live/ │ │ └── Python/ │ │ └── chat-client/ │ │ ├── chat-client.py │ │ └── requirements.txt │ ├── 07-speech/ │ │ └── Python/ │ │ ├── readme.txt │ │ └── speaking-clock/ │ │ ├── requirements.txt │ │ └── speaking-clock.py │ ├── 07-translation/ │ │ └── Python/ │ │ ├── readme.txt │ │ └── translators/ │ │ ├── requirements.txt │ │ ├── translate-speech.py │ │ └── translate-text.py │ ├── 08-speech-translation/ │ │ └── Python/ │ │ ├── readme.txt │ │ └── translator/ │ │ ├── requirements.txt │ │ └── translator.py │ ├── 09-audio-chat/ │ │ └── Python/ │ │ ├── audio-chat.py │ │ └── requirements.txt │ └── 11-voice-live-agent/ │ └── python/ │ ├── .dockerignore │ ├── .gitignore │ ├── .python-version │ ├── Dockerfile │ ├── README.md │ ├── azdeploy.sh │ ├── azure.yaml │ ├── infra/ │ │ ├── ai-foundry.bicep │ │ ├── main.bicep │ │ └── main.parameters.json │ ├── pyproject.toml │ ├── requirements.txt │ └── src/ │ ├── __init__.py │ ├── flask_app.py │ ├── static/ │ │ ├── app.js │ │ └── style.css │ └── templates/ │ └── index.html ├── README.md ├── _build.yml ├── _config.yml ├── downloads/ │ └── python/ │ └── readme.md └── index.md