Skip to content

Commit 42dcdad

Browse files
committed
fix(debug): correct debug audio example to use --file/-f flag
1 parent 58808e2 commit 42dcdad

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

  • packages
    • deepctl-cmd-debug-audio/src/deepctl_cmd_debug_audio
    • deepctl-cmd-debug/src/deepctl_cmd_debug

packages/deepctl-cmd-debug-audio/src/deepctl_cmd_debug_audio/command.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ class AudioCommand(BaseCommand):
2929
short_help = "Debug audio issues"
3030

3131
examples = [
32-
"dg debug audio recording.wav",
33-
"dg debug audio https://example.com/audio.mp3",
34-
"dg debug audio podcast.mp3 --verbose",
32+
"dg debug audio -f recording.wav",
33+
"dg debug audio -f https://example.com/audio.mp3",
34+
"dg debug audio -f podcast.mp3 --verbose",
3535
]
3636
agent_help = (
3737
"Analyze audio files for compatibility with Deepgram's transcription "

packages/deepctl-cmd-debug/src/deepctl_cmd_debug/command.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class DebugCommand(BaseGroupCommand):
2424
ci_friendly = True
2525

2626
examples = [
27-
"dg debug audio recording.wav",
27+
"dg debug audio -f recording.wav",
2828
"dg debug network",
2929
"dg debug browser",
3030
"dg debug stream",

0 commit comments

Comments
 (0)