Skip to content

Commit

Permalink
Update gitignore to ignore pycache directory
Browse files Browse the repository at this point in the history
  • Loading branch information
ket0x4 committed Jun 15, 2024
1 parent ec8fd3d commit b92ff00
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@ Ket.ai.session-journal
whisper/ggml-large-v3.bin
whisper/whisper.exe
test2.py
__pycache__/
1 change: 0 additions & 1 deletion ketard.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion settings.json.example
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit b92ff00

Please sign in to comment.