Skip to content

Commit c77f643

Browse files
committed
change file
1 parent 25d031a commit c77f643

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tests/integration/resources/test_transcriptions.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def test_basic_transcription_url(self, sync_together_client):
2222
"""
2323
Test basic transcription with URL audio file
2424
"""
25-
audio_url = "https://www.soundjay.com/misc/sounds/bell-ringing-05.wav"
25+
audio_url = "https://ia801605.us.archive.org/28/items/jfks19630626/jfk_1963_0626_berliner.wav"
2626

2727
response = sync_together_client.audio.transcriptions.create(
2828
file=audio_url, model="openai/whisper-large-v3"
@@ -36,7 +36,7 @@ def test_transcription_with_language(self, sync_together_client):
3636
"""
3737
Test transcription with language parameter
3838
"""
39-
audio_url = "https://www.soundjay.com/misc/sounds/bell-ringing-05.wav"
39+
audio_url = "https://ia801605.us.archive.org/28/items/jfks19630626/jfk_1963_0626_berliner.wav"
4040

4141
response = sync_together_client.audio.transcriptions.create(
4242
file=audio_url, model="openai/whisper-large-v3", language="en"
@@ -50,7 +50,7 @@ def test_transcription_verbose_json(self, sync_together_client):
5050
"""
5151
Test transcription with verbose JSON format and timestamps
5252
"""
53-
audio_url = "https://www.soundjay.com/misc/sounds/bell-ringing-05.wav"
53+
audio_url = "https://ia801605.us.archive.org/28/items/jfks19630626/jfk_1963_0626_berliner.wav"
5454

5555
response = sync_together_client.audio.transcriptions.create(
5656
file=audio_url,
@@ -68,7 +68,7 @@ def test_transcription_with_temperature(self, sync_together_client):
6868
"""
6969
Test transcription with temperature parameter
7070
"""
71-
audio_url = "https://www.soundjay.com/misc/sounds/bell-ringing-05.wav"
71+
audio_url = "https://ia801605.us.archive.org/28/items/jfks19630626/jfk_1963_0626_berliner.wav"
7272

7373
response = sync_together_client.audio.transcriptions.create(
7474
file=audio_url, model="openai/whisper-large-v3", temperature=0.2
@@ -91,7 +91,7 @@ def test_transcription_missing_model(self, sync_together_client):
9191
"""
9292
Test transcription with missing model parameter - should use default model
9393
"""
94-
audio_url = "https://www.soundjay.com/misc/sounds/bell-ringing-05.wav"
94+
audio_url = "https://ia801605.us.archive.org/28/items/jfks19630626/jfk_1963_0626_berliner.wav"
9595

9696
response = sync_together_client.audio.transcriptions.create(file=audio_url)
9797

0 commit comments

Comments
 (0)