Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion aai_cli/commands/dub/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def dub(
),
json_out: bool = options.json_option("Emit JSON describing the dubbed file."),
) -> None:
"""[sandbox] Dub a video or audio file into another language.
r"""\[sandbox] Dub a video or audio file into another language.

The whole platform in one command: the media is transcribed with diarized
utterance timestamps, each utterance is translated by an LLM Gateway model,
Expand Down
2 changes: 1 addition & 1 deletion aai_cli/commands/speak/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def speak(
),
json_out: bool = options.json_option("Emit JSON metadata about the synthesized audio."),
) -> None:
"""[sandbox] Synthesize speech from text with AssemblyAI streaming TTS.
r"""\[sandbox] Synthesize speech from text with AssemblyAI streaming TTS.

Plays the audio through your speakers by default, or writes a WAV with
--out. Speaker-labeled input (from 'assembly transcribe
Expand Down
5 changes: 3 additions & 2 deletions tests/__snapshots__/test_snapshots_help_root.ambr
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,13 @@
│ instantly. │
│ agent Have a live two-way voice conversation with an AssemblyAI voice │
│ agent. │
│ speak Synthesize speech from text with AssemblyAI streaming TTS. │
│ speak [sandbox] Synthesize speech from text with AssemblyAI streaming │
│ TTS. │
│ llm Send a prompt to AssemblyAI's LLM Gateway and print the │
│ response. │
│ clip Cut clips out of a media file by speaker, text match, LLM pick, │
│ or time range. │
│ dub Dub a video or audio file into another language.
│ dub [sandbox] Dub a video or audio file into another language. │
│ caption Burn always-visible captions into a video. │
│ eval Transcribe an evaluation dataset and score WER against its │
│ reference texts. │
Expand Down
4 changes: 2 additions & 2 deletions tests/__snapshots__/test_snapshots_help_run.ambr
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@

Usage: assembly dub [OPTIONS] MEDIA

Dub a video or audio file into another language.
[sandbox] Dub a video or audio file into another language.

The whole platform in one command: the media is transcribed with diarized
utterance timestamps, each utterance is translated by an LLM Gateway model,
Expand Down Expand Up @@ -504,7 +504,7 @@

Usage: assembly speak [OPTIONS] [TEXT]

Synthesize speech from text with AssemblyAI streaming TTS.
[sandbox] Synthesize speech from text with AssemblyAI streaming TTS.

Plays the audio through your speakers by default, or writes a WAV with
--out. Speaker-labeled input (from 'assembly transcribe
Expand Down
Loading