From 154a5690ac9a5bd2ce957d489d9e561476886bb8 Mon Sep 17 00:00:00 2001 From: "Max P." Date: Sat, 22 Mar 2025 11:27:24 +0100 Subject: [PATCH] Add sample configuration file for pyvtt settings --- pyvtt.settings.sample.json | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 pyvtt.settings.sample.json diff --git a/pyvtt.settings.sample.json b/pyvtt.settings.sample.json new file mode 100644 index 0000000..46b7285 --- /dev/null +++ b/pyvtt.settings.sample.json @@ -0,0 +1,31 @@ +{ + "audio_file": "/path/to/audio.wav", + "output_file": "/path/to/output.txt", + "whisper_path": "/path/to/whisper-cli", + "language": "en", + "socket_path": "/path/to/socket.sock", + "ollama_url": "http://example.com", + "ollama_port": 12345, + "presets": [ + { + "name": "Default", + "language": "en", + "whisper_model": "/path/to/default-whisper-model.bin", + "ollama_model": "default-model", + "ollama_prompt": "Provide a detailed response to the following text:\n\n" + }, + { + "name": "Quick English", + "whisper_model": "/path/to/quick-whisper-model.bin", + "ollama_model": "quick-model", + "ollama_prompt": "Quickly correct the following English text for grammar and punctuation:\n\n" + }, + { + "name": "German Correction", + "language": "de", + "whisper_model": "/path/to/german-whisper-model.bin", + "ollama_model": "german-model", + "ollama_prompt": "Korrigiere den folgenden deutschen Text für Rechtschreibung und Grammatik:\n\n" + } + ] +} \ No newline at end of file