We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3334a0b commit bb2d2cfCopy full SHA for bb2d2cf
tests/e2e/test_document_to_podcast.py
@@ -29,7 +29,9 @@ def test_document_to_podcast(tmp_path):
29
input_file = tmp_path / "input_file.md"
30
input_file.write_text(EXAMPLE_INPUT)
31
document_to_podcast(
32
- input_file=str(input_file), output_folder=str(tmp_path / "output")
+ 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",
35
)
36
assert (tmp_path / "output" / "podcast.txt").exists()
37
assert (tmp_path / "output" / "podcast.wav").exists()
0 commit comments