Skip to content

Commit b3692cd

Browse files
committed
refactor(examples): reorganize examples into logical sections
Renumber all examples to group by feature area, with each section starting at multiples of 10: - 01-09: Authentication - 10-19: Transcription (Listen) - 20-29: Text-to-Speech (Speak) - including new TextBuilder streaming example - 30-39: Voice Agent - 40-49: Text Intelligence (Read) - 50-59: Management API - 60-69: On-Premises - 70-79: Configuration & Advanced This makes the examples easier to navigate and leaves room for future additions in each section.
1 parent 042f96a commit b3692cd

24 files changed

+207
-36
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -274,8 +274,8 @@ def main():
274274
print("\n" + "=" * 70)
275275
print(" Demo Complete!")
276276
print("=" * 70)
277-
print("\n For live TTS generation, see: examples/25-text-builder-helper.py")
278-
print(" For documentation, see: docs/TextBuilder-Guide.md")
277+
print("\n REST API generation: examples/23-text-builder-helper.py")
278+
print(" Streaming TTS: examples/24-text-builder-streaming.py")
279279
print("=" * 70 + "\n")
280280

281281

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#!/usr/bin/env python3
22
"""
3-
Example: Using TextBuilder Helper for TTS with Pronunciation and Pause Controls
3+
Example: TextBuilder with REST API TTS
44
5-
This example demonstrates how to use the TextBuilder helper class to construct
6-
TTS text with custom pronunciations and pauses for Deepgram's Text-to-Speech API.
5+
This example demonstrates using TextBuilder with the REST API to generate
6+
complete audio files with custom pronunciations and pauses.
77
"""
88

99
import os

0 commit comments

Comments
 (0)