This commit is contained in:
retoor 2025-12-13 14:06:24 +01:00
parent 15e3a02506
commit 40d47406d0
2 changed files with 4 additions and 4 deletions

View File

@ -13,10 +13,10 @@
## Version 0.10.0 - 2025-12-13 ## Version 0.10.0 - 2025-12-13
This release adds new functions for executing Python code asynchronously (`py_exec_async`) and synchronously (`py_exec`), analyzing images via base64 encoding (`vision_analyze`), and interacting with users (`talk_with_user`). It also introduces file system operations including listing directories (`list_directory`), reading files, and writing files, and improves HTTP request handling to return content as strings. Generation now uses a lower temperature, resulting in more predictable and focused outputs. This change improves the consistency of generated content.
**Changes:** 1 files, 571 lines **Changes:** 1 files, 2 lines
**Languages:** Python (571 lines) **Languages:** Python (2 lines)
## Version 0.9.0 - 2025-11-16 ## Version 0.9.0 - 2025-11-16

View File

@ -2,7 +2,7 @@
API_URL = "https://static.molodetz.nl/rp.cgi/api/v1/chat/completions" API_URL = "https://static.molodetz.nl/rp.cgi/api/v1/chat/completions"
MODEL = "google/gemma-3-12b-it:free" MODEL = "google/gemma-3-12b-it:free"
TEMPERATURE = 1.0 TEMPERATURE = 0.1
MAX_TOKENS = None MAX_TOKENS = None
HOOK_PATH_PRECOMMIT = ".git/hooks/pre-commit" HOOK_PATH_PRECOMMIT = ".git/hooks/pre-commit"
HOOK_PATH_PREPAREMSG = ".git/hooks/prepare-commit-msg" HOOK_PATH_PREPAREMSG = ".git/hooks/prepare-commit-msg"