├── .github └── workflows │ └── voice-live-web-files.yml ├── .gitignore ├── Instructions ├── 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 └── media │ ├── Output.mp4 │ ├── Output2.mp4 │ ├── Time.mp4 │ ├── ai-foundry-home.png │ ├── ai-foundry-new-home-page.png │ ├── ai-foundry-project-2.png │ ├── ai-foundry-project-page.png │ ├── ai-foundry-project.png │ ├── avocados.mp4 │ ├── cloudshell-launch-portal.png │ ├── fresas.mp4 │ ├── powershell-prompt-small.png │ ├── powershell-prompt.png │ ├── tag-data-add-class-new-small.png │ ├── tag-data-add-class-new.png │ └── voice-live-tile.png ├── LICENSE ├── Labfiles ├── 01-analyze-text │ └── Python │ │ ├── readme.txt │ │ └── text-analysis │ │ ├── .env │ │ ├── requirements.txt │ │ ├── reviews │ │ ├── review1.txt │ │ ├── review2.txt │ │ ├── review3.txt │ │ ├── review4.txt │ │ └── review5.txt │ │ └── text-analysis.py ├── 02-qna │ ├── Python │ │ ├── qna-app │ │ │ ├── .env │ │ │ ├── qna-app.py │ │ │ └── requirements.txt │ │ └── readme.txt │ └── ask-question.sh ├── 03-language │ ├── Clock.json │ ├── Python │ │ ├── clock-client │ │ │ ├── .env │ │ │ ├── clock-client.py │ │ │ └── requirements.txt │ │ └── readme.txt │ └── send-call.sh ├── 04-text-classification │ ├── Python │ │ ├── classify-text │ │ │ ├── .env │ │ │ ├── articles │ │ │ │ ├── test1.txt │ │ │ │ └── test2.txt │ │ │ ├── classify-text.py │ │ │ └── requirements.txt │ │ └── readme.txt │ ├── classify-text.ps1 │ ├── data │ │ └── articles.zip │ ├── test1.txt │ └── test2.txt ├── 05-custom-entity-recognition │ ├── Python │ │ ├── custom-entities │ │ │ ├── .env │ │ │ ├── ads │ │ │ │ ├── test1.txt │ │ │ │ └── test2.txt │ │ │ ├── custom-entities.py │ │ │ └── requirements.txt │ │ └── readme.txt │ ├── data │ │ └── ads.zip │ ├── extract-entities.ps1 │ ├── test1.txt │ └── test2.txt ├── 06-translator-sdk │ └── Python │ │ ├── readme.txt │ │ └── translate-text │ │ ├── .env │ │ ├── requirements.txt │ │ └── translate.py ├── 07-speech │ └── Python │ │ ├── readme.txt │ │ └── speaking-clock │ │ ├── .env │ │ ├── requirements.txt │ │ ├── speaking-clock.py │ │ └── time.wav ├── 08-speech-translation │ └── Python │ │ ├── readme.txt │ │ └── translator │ │ ├── .env │ │ ├── requirements.txt │ │ ├── station.wav │ │ └── translator.py ├── 09-audio-chat │ ├── Python │ │ ├── .env │ │ ├── audio-chat.py │ │ └── requirements.txt │ └── data │ │ ├── avocados.mp3 │ │ └── fresas.mp3 └── 11-voice-live-agent │ └── python │ ├── .dockerignore │ ├── .gitignore │ ├── .python-version │ ├── Dockerfile │ ├── __init__.py │ ├── ai-foundry.bicep │ ├── azdeploy.sh │ ├── azure.yaml │ ├── flask_app.py │ ├── infra │ ├── ai-foundry.bicep │ ├── main.bicep │ └── main.parameters.json │ ├── main.bicep │ ├── main.parameters.json │ ├── pyproject.toml │ ├── readme.md │ ├── requirements.txt │ ├── src │ ├── __init__.py │ ├── flask_app.py │ ├── static │ │ ├── app.js │ │ └── style.css │ └── templates │ │ └── index.html │ ├── static │ ├── app.js │ └── style.css │ ├── templates │ └── index.html │ └── uv.lock ├── README.md ├── _build.yml ├── _config.yml ├── downloads └── python │ ├── readme.md │ └── voice-live-web.zip └── index.md /.github/workflows/voice-live-web-files.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/.github/workflows/voice-live-web-files.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | obj 3 | *.sln 4 | -------------------------------------------------------------------------------- /Instructions/Labs/01-analyze-text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Instructions/Labs/01-analyze-text.md -------------------------------------------------------------------------------- /Instructions/Labs/02-qna.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Instructions/Labs/02-qna.md -------------------------------------------------------------------------------- /Instructions/Labs/03-language-understanding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Instructions/Labs/03-language-understanding.md -------------------------------------------------------------------------------- /Instructions/Labs/04-text-classification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Instructions/Labs/04-text-classification.md -------------------------------------------------------------------------------- /Instructions/Labs/05-extract-custom-entities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Instructions/Labs/05-extract-custom-entities.md -------------------------------------------------------------------------------- /Instructions/Labs/06-translate-text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Instructions/Labs/06-translate-text.md -------------------------------------------------------------------------------- /Instructions/Labs/07-speech.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Instructions/Labs/07-speech.md -------------------------------------------------------------------------------- /Instructions/Labs/08-translate-speech.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Instructions/Labs/08-translate-speech.md -------------------------------------------------------------------------------- /Instructions/Labs/09-audio-chat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Instructions/Labs/09-audio-chat.md -------------------------------------------------------------------------------- /Instructions/Labs/10-voice-live-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Instructions/Labs/10-voice-live-api.md -------------------------------------------------------------------------------- /Instructions/Labs/11-voice-live-agent-web.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Instructions/Labs/11-voice-live-agent-web.md -------------------------------------------------------------------------------- /Instructions/media/Output.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Instructions/media/Output.mp4 -------------------------------------------------------------------------------- /Instructions/media/Output2.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Instructions/media/Output2.mp4 -------------------------------------------------------------------------------- /Instructions/media/Time.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Instructions/media/Time.mp4 -------------------------------------------------------------------------------- /Instructions/media/ai-foundry-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Instructions/media/ai-foundry-home.png -------------------------------------------------------------------------------- /Instructions/media/ai-foundry-new-home-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Instructions/media/ai-foundry-new-home-page.png -------------------------------------------------------------------------------- /Instructions/media/ai-foundry-project-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Instructions/media/ai-foundry-project-2.png -------------------------------------------------------------------------------- /Instructions/media/ai-foundry-project-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Instructions/media/ai-foundry-project-page.png -------------------------------------------------------------------------------- /Instructions/media/ai-foundry-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Instructions/media/ai-foundry-project.png -------------------------------------------------------------------------------- /Instructions/media/avocados.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Instructions/media/avocados.mp4 -------------------------------------------------------------------------------- /Instructions/media/cloudshell-launch-portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Instructions/media/cloudshell-launch-portal.png -------------------------------------------------------------------------------- /Instructions/media/fresas.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Instructions/media/fresas.mp4 -------------------------------------------------------------------------------- /Instructions/media/powershell-prompt-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Instructions/media/powershell-prompt-small.png -------------------------------------------------------------------------------- /Instructions/media/powershell-prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Instructions/media/powershell-prompt.png -------------------------------------------------------------------------------- /Instructions/media/tag-data-add-class-new-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Instructions/media/tag-data-add-class-new-small.png -------------------------------------------------------------------------------- /Instructions/media/tag-data-add-class-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Instructions/media/tag-data-add-class-new.png -------------------------------------------------------------------------------- /Instructions/media/voice-live-tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Instructions/media/voice-live-tile.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/LICENSE -------------------------------------------------------------------------------- /Labfiles/01-analyze-text/Python/readme.txt: -------------------------------------------------------------------------------- 1 | This folder contains Python code -------------------------------------------------------------------------------- /Labfiles/01-analyze-text/Python/text-analysis/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/01-analyze-text/Python/text-analysis/.env -------------------------------------------------------------------------------- /Labfiles/01-analyze-text/Python/text-analysis/requirements.txt: -------------------------------------------------------------------------------- 1 | python-dotenv -------------------------------------------------------------------------------- /Labfiles/01-analyze-text/Python/text-analysis/reviews/review1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/01-analyze-text/Python/text-analysis/reviews/review1.txt -------------------------------------------------------------------------------- /Labfiles/01-analyze-text/Python/text-analysis/reviews/review2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/01-analyze-text/Python/text-analysis/reviews/review2.txt -------------------------------------------------------------------------------- /Labfiles/01-analyze-text/Python/text-analysis/reviews/review3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/01-analyze-text/Python/text-analysis/reviews/review3.txt -------------------------------------------------------------------------------- /Labfiles/01-analyze-text/Python/text-analysis/reviews/review4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/01-analyze-text/Python/text-analysis/reviews/review4.txt -------------------------------------------------------------------------------- /Labfiles/01-analyze-text/Python/text-analysis/reviews/review5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/01-analyze-text/Python/text-analysis/reviews/review5.txt -------------------------------------------------------------------------------- /Labfiles/01-analyze-text/Python/text-analysis/text-analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/01-analyze-text/Python/text-analysis/text-analysis.py -------------------------------------------------------------------------------- /Labfiles/02-qna/Python/qna-app/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/02-qna/Python/qna-app/.env -------------------------------------------------------------------------------- /Labfiles/02-qna/Python/qna-app/qna-app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/02-qna/Python/qna-app/qna-app.py -------------------------------------------------------------------------------- /Labfiles/02-qna/Python/qna-app/requirements.txt: -------------------------------------------------------------------------------- 1 | python-dotenv -------------------------------------------------------------------------------- /Labfiles/02-qna/Python/readme.txt: -------------------------------------------------------------------------------- 1 | This folder contains Python code -------------------------------------------------------------------------------- /Labfiles/02-qna/ask-question.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/02-qna/ask-question.sh -------------------------------------------------------------------------------- /Labfiles/03-language/Clock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/03-language/Clock.json -------------------------------------------------------------------------------- /Labfiles/03-language/Python/clock-client/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/03-language/Python/clock-client/.env -------------------------------------------------------------------------------- /Labfiles/03-language/Python/clock-client/clock-client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/03-language/Python/clock-client/clock-client.py -------------------------------------------------------------------------------- /Labfiles/03-language/Python/clock-client/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/03-language/Python/clock-client/requirements.txt -------------------------------------------------------------------------------- /Labfiles/03-language/Python/readme.txt: -------------------------------------------------------------------------------- 1 | This folder contains Python code -------------------------------------------------------------------------------- /Labfiles/03-language/send-call.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/03-language/send-call.sh -------------------------------------------------------------------------------- /Labfiles/04-text-classification/Python/classify-text/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/04-text-classification/Python/classify-text/.env -------------------------------------------------------------------------------- /Labfiles/04-text-classification/Python/classify-text/articles/test1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/04-text-classification/Python/classify-text/articles/test1.txt -------------------------------------------------------------------------------- /Labfiles/04-text-classification/Python/classify-text/articles/test2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/04-text-classification/Python/classify-text/articles/test2.txt -------------------------------------------------------------------------------- /Labfiles/04-text-classification/Python/classify-text/classify-text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/04-text-classification/Python/classify-text/classify-text.py -------------------------------------------------------------------------------- /Labfiles/04-text-classification/Python/classify-text/requirements.txt: -------------------------------------------------------------------------------- 1 | python-dotenv -------------------------------------------------------------------------------- /Labfiles/04-text-classification/Python/readme.txt: -------------------------------------------------------------------------------- 1 | This folder contains Python code -------------------------------------------------------------------------------- /Labfiles/04-text-classification/classify-text.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/04-text-classification/classify-text.ps1 -------------------------------------------------------------------------------- /Labfiles/04-text-classification/data/articles.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/04-text-classification/data/articles.zip -------------------------------------------------------------------------------- /Labfiles/04-text-classification/test1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/04-text-classification/test1.txt -------------------------------------------------------------------------------- /Labfiles/04-text-classification/test2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/04-text-classification/test2.txt -------------------------------------------------------------------------------- /Labfiles/05-custom-entity-recognition/Python/custom-entities/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/05-custom-entity-recognition/Python/custom-entities/.env -------------------------------------------------------------------------------- /Labfiles/05-custom-entity-recognition/Python/custom-entities/ads/test1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/05-custom-entity-recognition/Python/custom-entities/ads/test1.txt -------------------------------------------------------------------------------- /Labfiles/05-custom-entity-recognition/Python/custom-entities/ads/test2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/05-custom-entity-recognition/Python/custom-entities/ads/test2.txt -------------------------------------------------------------------------------- /Labfiles/05-custom-entity-recognition/Python/custom-entities/custom-entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/05-custom-entity-recognition/Python/custom-entities/custom-entities.py -------------------------------------------------------------------------------- /Labfiles/05-custom-entity-recognition/Python/custom-entities/requirements.txt: -------------------------------------------------------------------------------- 1 | python-dotenv -------------------------------------------------------------------------------- /Labfiles/05-custom-entity-recognition/Python/readme.txt: -------------------------------------------------------------------------------- 1 | This folder contains Python code -------------------------------------------------------------------------------- /Labfiles/05-custom-entity-recognition/data/ads.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/05-custom-entity-recognition/data/ads.zip -------------------------------------------------------------------------------- /Labfiles/05-custom-entity-recognition/extract-entities.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/05-custom-entity-recognition/extract-entities.ps1 -------------------------------------------------------------------------------- /Labfiles/05-custom-entity-recognition/test1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/05-custom-entity-recognition/test1.txt -------------------------------------------------------------------------------- /Labfiles/05-custom-entity-recognition/test2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/05-custom-entity-recognition/test2.txt -------------------------------------------------------------------------------- /Labfiles/06-translator-sdk/Python/readme.txt: -------------------------------------------------------------------------------- 1 | This folder contains Python code -------------------------------------------------------------------------------- /Labfiles/06-translator-sdk/Python/translate-text/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/06-translator-sdk/Python/translate-text/.env -------------------------------------------------------------------------------- /Labfiles/06-translator-sdk/Python/translate-text/requirements.txt: -------------------------------------------------------------------------------- 1 | python-dotenv -------------------------------------------------------------------------------- /Labfiles/06-translator-sdk/Python/translate-text/translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/06-translator-sdk/Python/translate-text/translate.py -------------------------------------------------------------------------------- /Labfiles/07-speech/Python/readme.txt: -------------------------------------------------------------------------------- 1 | This folder contains Python code -------------------------------------------------------------------------------- /Labfiles/07-speech/Python/speaking-clock/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/07-speech/Python/speaking-clock/.env -------------------------------------------------------------------------------- /Labfiles/07-speech/Python/speaking-clock/requirements.txt: -------------------------------------------------------------------------------- 1 | python-dotenv 2 | azure.core -------------------------------------------------------------------------------- /Labfiles/07-speech/Python/speaking-clock/speaking-clock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/07-speech/Python/speaking-clock/speaking-clock.py -------------------------------------------------------------------------------- /Labfiles/07-speech/Python/speaking-clock/time.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/07-speech/Python/speaking-clock/time.wav -------------------------------------------------------------------------------- /Labfiles/08-speech-translation/Python/readme.txt: -------------------------------------------------------------------------------- 1 | This folder contains Python code -------------------------------------------------------------------------------- /Labfiles/08-speech-translation/Python/translator/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/08-speech-translation/Python/translator/.env -------------------------------------------------------------------------------- /Labfiles/08-speech-translation/Python/translator/requirements.txt: -------------------------------------------------------------------------------- 1 | python-dotenv 2 | azure.core -------------------------------------------------------------------------------- /Labfiles/08-speech-translation/Python/translator/station.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/08-speech-translation/Python/translator/station.wav -------------------------------------------------------------------------------- /Labfiles/08-speech-translation/Python/translator/translator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/08-speech-translation/Python/translator/translator.py -------------------------------------------------------------------------------- /Labfiles/09-audio-chat/Python/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/09-audio-chat/Python/.env -------------------------------------------------------------------------------- /Labfiles/09-audio-chat/Python/audio-chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/09-audio-chat/Python/audio-chat.py -------------------------------------------------------------------------------- /Labfiles/09-audio-chat/Python/requirements.txt: -------------------------------------------------------------------------------- 1 | python-dotenv -------------------------------------------------------------------------------- /Labfiles/09-audio-chat/data/avocados.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/09-audio-chat/data/avocados.mp3 -------------------------------------------------------------------------------- /Labfiles/09-audio-chat/data/fresas.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/09-audio-chat/data/fresas.mp3 -------------------------------------------------------------------------------- /Labfiles/11-voice-live-agent/python/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/11-voice-live-agent/python/.dockerignore -------------------------------------------------------------------------------- /Labfiles/11-voice-live-agent/python/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/11-voice-live-agent/python/.gitignore -------------------------------------------------------------------------------- /Labfiles/11-voice-live-agent/python/.python-version: -------------------------------------------------------------------------------- 1 | 3.10 2 | -------------------------------------------------------------------------------- /Labfiles/11-voice-live-agent/python/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/11-voice-live-agent/python/Dockerfile -------------------------------------------------------------------------------- /Labfiles/11-voice-live-agent/python/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/11-voice-live-agent/python/__init__.py -------------------------------------------------------------------------------- /Labfiles/11-voice-live-agent/python/ai-foundry.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/11-voice-live-agent/python/ai-foundry.bicep -------------------------------------------------------------------------------- /Labfiles/11-voice-live-agent/python/azdeploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/11-voice-live-agent/python/azdeploy.sh -------------------------------------------------------------------------------- /Labfiles/11-voice-live-agent/python/azure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/11-voice-live-agent/python/azure.yaml -------------------------------------------------------------------------------- /Labfiles/11-voice-live-agent/python/flask_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/11-voice-live-agent/python/flask_app.py -------------------------------------------------------------------------------- /Labfiles/11-voice-live-agent/python/infra/ai-foundry.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/11-voice-live-agent/python/infra/ai-foundry.bicep -------------------------------------------------------------------------------- /Labfiles/11-voice-live-agent/python/infra/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/11-voice-live-agent/python/infra/main.bicep -------------------------------------------------------------------------------- /Labfiles/11-voice-live-agent/python/infra/main.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/11-voice-live-agent/python/infra/main.parameters.json -------------------------------------------------------------------------------- /Labfiles/11-voice-live-agent/python/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/11-voice-live-agent/python/main.bicep -------------------------------------------------------------------------------- /Labfiles/11-voice-live-agent/python/main.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/11-voice-live-agent/python/main.parameters.json -------------------------------------------------------------------------------- /Labfiles/11-voice-live-agent/python/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/11-voice-live-agent/python/pyproject.toml -------------------------------------------------------------------------------- /Labfiles/11-voice-live-agent/python/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/11-voice-live-agent/python/readme.md -------------------------------------------------------------------------------- /Labfiles/11-voice-live-agent/python/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/11-voice-live-agent/python/requirements.txt -------------------------------------------------------------------------------- /Labfiles/11-voice-live-agent/python/src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/11-voice-live-agent/python/src/__init__.py -------------------------------------------------------------------------------- /Labfiles/11-voice-live-agent/python/src/flask_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/11-voice-live-agent/python/src/flask_app.py -------------------------------------------------------------------------------- /Labfiles/11-voice-live-agent/python/src/static/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/11-voice-live-agent/python/src/static/app.js -------------------------------------------------------------------------------- /Labfiles/11-voice-live-agent/python/src/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/11-voice-live-agent/python/src/static/style.css -------------------------------------------------------------------------------- /Labfiles/11-voice-live-agent/python/src/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/11-voice-live-agent/python/src/templates/index.html -------------------------------------------------------------------------------- /Labfiles/11-voice-live-agent/python/static/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/11-voice-live-agent/python/static/app.js -------------------------------------------------------------------------------- /Labfiles/11-voice-live-agent/python/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/11-voice-live-agent/python/static/style.css -------------------------------------------------------------------------------- /Labfiles/11-voice-live-agent/python/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/11-voice-live-agent/python/templates/index.html -------------------------------------------------------------------------------- /Labfiles/11-voice-live-agent/python/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/Labfiles/11-voice-live-agent/python/uv.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/README.md -------------------------------------------------------------------------------- /_build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/_build.yml -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/_config.yml -------------------------------------------------------------------------------- /downloads/python/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /downloads/python/voice-live-web.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/downloads/python/voice-live-web.zip -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-language/HEAD/index.md --------------------------------------------------------------------------------