We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 904f98f commit 601e7e3Copy full SHA for 601e7e3
tests/integration/resources/test_transcriptions.py
@@ -36,19 +36,6 @@ def validate_diarization_response(response_dict):
36
assert "end" in word
37
assert "speaker_id" in word
38
39
- # Validate top-level words field
40
- assert "words" in response_dict
41
- assert isinstance(response_dict["words"], list)
42
- assert len(response_dict["words"]) > 0
43
-
44
- # Validate each word in top-level words
45
- for word in response_dict["words"]:
46
- assert "id" in word
47
- assert "word" in word
48
- assert "start" in word
49
- assert "end" in word
50
- assert "speaker_id" in word
51
52
53
class TestTogetherTranscriptions:
54
@pytest.fixture
0 commit comments