Implement AI solutions for text and speech by using Foundry
Unlock the complete study guide + 1,040 practice questions across 16 full exams.
Bundled into the existing Microsoft Azure AI Fundamentals premium course — no separate purchase.
14-day money-back guarantee — no questions asked.
Included in this chapter:
- Three clients, and this objective is choosing between them
- Building the text-analysis client
- What each core text capability returns
- Speech to text: pick the mode, then build the recognizer
- One config, one audio object, and the class that names the direction
- Answering out loud with a deployed realtime model
- Telling the three paths apart under pressure
Which of the three build paths a requirement lands on
| Decision point | Azure Language in Foundry Tools | Azure Speech in Foundry Tools | Deployed realtime Foundry model |
|---|---|---|---|
| What you send | A list of written text documents | Spoken audio, or the text you want spoken | Live streamed audio, plus optional text and images |
| What comes back | Structured findings: categorized entities, confidence scores, redacted text, detected language | Transcribed text, synthesized audio, or translated text | Streamed audio replies with matching transcript events |
| Python surface | TextAnalyticsClient | SpeechRecognizer, SpeechSynthesizer, TranslationRecognizer | A GPT Realtime API session over WebRTC, WebSocket, or SIP |
| Representative call | recognize_entities(documents) | recognize_once_async(), speak_text_async() | session.update to configure, then response.create to answer |
| Signature scenario | Flag people and organizations named in support email | Transcribe stored call recordings, or read a notification aloud | Answer a caller's spoken question in speech, in real time |
| Wrong pick when | The content arrives as sound | The app must compose a spoken answer, not just convert | The job is bulk transcription of recordings already in storage |
Decision tree
Cheat sheet
Unlock with Premium — includes all practice exams and the complete study guide.
Also tested in
References
- What is Azure Language in Foundry Tools?
- What is Azure Speech in Foundry Tools?
- Use the GPT Realtime API for speech and audio with Azure OpenAI
- What is named entity recognition (NER) in Azure Language?
- Azure Text Analytics client library for Python
- What is key phrase extraction in Azure Language in Foundry Tools?
- What is summarization in Azure Language?
- What is PII detection in Azure Language?
- What is language detection in Azure Language?
- What is Text analytics for health in Azure Language?
- Batch transcription overview - Azure Speech
- Quickstart: Recognize and convert speech to text
- Quickstart: Convert text to speech
- Quickstart: Translate speech into another language