From b92ff00666964066f5aa9e3403af118abb63b856 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?ibrahim=20y=C3=B6ndemli?= Date: Sat, 15 Jun 2024 21:44:15 +0300 Subject: [PATCH] Update gitignore to ignore pycache directory --- .gitignore | 1 + ketard.py | 1 - settings.json.example | 1 - 3 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index a0d6d66..2b20d79 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,4 @@ Ket.ai.session-journal whisper/ggml-large-v3.bin whisper/whisper.exe test2.py +__pycache__/ diff --git a/ketard.py b/ketard.py index db9e8d5..8901f5b 100644 --- a/ketard.py +++ b/ketard.py @@ -26,7 +26,6 @@ VERSION = data.get("version", "1.0") API_URL = data.get("api_url", "http://localhost:8000") LLM_MODEL = data.get("llm_model", "default_model") -WHISPER_MODEL = data.get("whisper_model", "default_whisper") + ".bin" GEN_COMMANDS = data.get("gen_commands", ["gen"]) # Set up logging diff --git a/settings.json.example b/settings.json.example index 74df370..61a033d 100644 --- a/settings.json.example +++ b/settings.json.example @@ -6,7 +6,6 @@ "debug_token": "optional. debug token for testing purposes", "api_url": "http://localhost:11434", "llm_model": "phi3:mini", - "whisper_model": "ggml-large-v3", "version": "3.0", "debug": false, "lite": false,