forked from phoenix/litellm-mirror
test: fix test
This commit is contained in:
parent
4ddbf1395f
commit
f6ebba7538
1 changed files with 4 additions and 2 deletions
|
@ -51,9 +51,11 @@ from litellm import Router
|
|||
),
|
||||
],
|
||||
)
|
||||
@pytest.mark.parametrize("response_format", ["json", "vtt"])
|
||||
@pytest.mark.parametrize(
|
||||
"response_format, timestamp_granularities",
|
||||
[("json", None), ("vtt", None), ("verbose_json", ["word"])],
|
||||
)
|
||||
@pytest.mark.parametrize("sync_mode", [True, False])
|
||||
@pytest.mark.parametrize("timestamp_granularities", [None, ["word"], ["segment"]])
|
||||
@pytest.mark.asyncio
|
||||
async def test_transcription(
|
||||
model, api_key, api_base, response_format, sync_mode, timestamp_granularities
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue