Compare commits
2 Commits
d18a9915f9
...
7719cf429d
| Author | SHA1 | Date | |
|---|---|---|---|
|
7719cf429d
|
|||
|
d7f783834f
|
@@ -1,6 +1,6 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "pyvtt"
|
name = "pyvtt"
|
||||||
version = "0.3.2"
|
version = "0.3.3"
|
||||||
description = "Python Voice to Text + LLMA"
|
description = "Python Voice to Text + LLMA"
|
||||||
authors = [{ name = "Max P.", email = "Mail@MPassarello.de" }]
|
authors = [{ name = "Max P.", email = "Mail@MPassarello.de" }]
|
||||||
license = { text = "MIT" }
|
license = { text = "MIT" }
|
||||||
|
|||||||
@@ -96,7 +96,7 @@ class WhisperWorker(QThread):
|
|||||||
print("Kein Ollama Prompt angegeben, nur Whisper Ergebnis verwendet.")
|
print("Kein Ollama Prompt angegeben, nur Whisper Ergebnis verwendet.")
|
||||||
|
|
||||||
# Ergebnis ins Clipboard kopieren
|
# Ergebnis ins Clipboard kopieren
|
||||||
if CURRENT_PRESET["mode"] == "journal":
|
if CURRENT_PRESET.get("mode") == "journal":
|
||||||
today = datetime.date.today().strftime("%Y.%m.%d")
|
today = datetime.date.today().strftime("%Y.%m.%d")
|
||||||
journal_path = os.path.join(CONFIGURATION["journal_path"], f"{today} - {CURRENT_PRESET['journal_name']}.md")
|
journal_path = os.path.join(CONFIGURATION["journal_path"], f"{today} - {CURRENT_PRESET['journal_name']}.md")
|
||||||
now = datetime.datetime.now().strftime("%H:%M:%S")
|
now = datetime.datetime.now().strftime("%H:%M:%S")
|
||||||
|
|||||||
Reference in New Issue
Block a user