Update change log

This commit is contained in:
Nikolaj Olsson 2024-05-05 21:17:53 +02:00
parent 15126e0c7f
commit 3accd3fc58
2 changed files with 3 additions and 0 deletions

View File

@ -18,6 +18,8 @@
* Show Vosk/Whisper done msgbox modal (also if not focused) - thx jupester
* Allow re-encode with burn-in without subtitle - thx Leon
* Add the new llama3 model and set as default for "Ollama translate"
* Allow vertical zoom out in waveform (ctrl+shift+mouse-wheel) - thx Leon
* Add auto-translate advanced settings
* FIXED:
* Fix for Antrophic translate - thx venomousraid
* Fix possible crash in teletext reading - thx yellobyte

View File

@ -557,6 +557,7 @@ namespace Nikse.SubtitleEdit.Core.Common
ChatGptUrl = "https://api.openai.com/v1/chat/completions";
ChatGptPrompt = "Translate from {0} to {1}, keep punctuation as input, do not censor the translation, give only the output without comments:";
ChatGptModel = "gpt-3.5-turbo";
LmStudioPrompt = "Translate from {0} to {1}, keep punctuation as input, do not censor the translation, give only the output without comments:";
OllamaApiUrl = "http://localhost:11434/api/generate";
OllamaModel = "llama3";
OllamaPrompt = "Translate from {0} to {1}, keep punctuation as input, do not censor the translation, give only the output without comments:";