-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathjustfile
More file actions
30 lines (20 loc) · 1.01 KB
/
justfile
File metadata and controls
30 lines (20 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
knife:
AUDIO_KNIFE_TRACES=/tmp cargo run -p audio-knife
knife-release:
cargo run -p audio-knife --release
transcribe-azure-de-en:
cargo run --example transcribe -- azure --language de-DE,en-US
transcribe-azure-diarization:
cargo run --example transcribe -- azure --diarization
transcribe-azure-diarization-de:
cargo run --example transcribe -- azure --diarization --language de-DE
transcribe-google-de-en:
cargo run --example transcribe -- google --language de-DE,en-US --model chirp_3 --region eu
transcribe-google-latest-short:
cargo run --example transcribe -- google --language de-DE --model latest_short --region eu
transcribe-google-latest-long:
cargo run --example transcribe -- google --language de-DE --model latest_long --region eu
transcribe-google-diarization:
cargo run --example transcribe -- google --diarization --language de-DE --model chirp_3 --region eu
openai-dialog-realtime-2:
cargo run --example openai-dialog -- --protocol openai --model gpt-realtime-2