Skip to content

Commit bb2d2cf

Browse files
committed
fix(tests/e2e): Use SmolLM2-1.7B-Instruct-f16.gguf for the test.
1 parent 3334a0b commit bb2d2cf

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/e2e/test_document_to_podcast.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ def test_document_to_podcast(tmp_path):
2929
input_file = tmp_path / "input_file.md"
3030
input_file.write_text(EXAMPLE_INPUT)
3131
document_to_podcast(
32-
input_file=str(input_file), output_folder=str(tmp_path / "output")
32+
input_file=str(input_file),
33+
output_folder=str(tmp_path / "output"),
34+
text_to_text_model="bartowski/SmolLM2-1.7B-Instruct-GGUF/SmolLM2-1.7B-Instruct-f16.gguf",
3335
)
3436
assert (tmp_path / "output" / "podcast.txt").exists()
3537
assert (tmp_path / "output" / "podcast.wav").exists()

0 commit comments

Comments
 (0)