From 6fc4ab020cb14149461dfe050147d6f6a80fe720 Mon Sep 17 00:00:00 2001 From: retoor Date: Sat, 13 Dec 2025 14:12:22 +0100 Subject: [PATCH] Upgraded to retoor/code. --- CHANGELOG.md | 2 +- rgithook.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 068bb4d..652b525 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,7 +13,7 @@ ## Version 0.10.0 - 2025-12-13 -update model to "openai/gpt-4.1-nano" and API url +Updates the model in the Git hook to x-ai/grok-code-fast-1, enhancing code generation capabilities. **Changes:** 1 files, 2 lines **Languages:** Python (2 lines) diff --git a/rgithook.py b/rgithook.py index d932de9..19786fc 100755 --- a/rgithook.py +++ b/rgithook.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 API_URL = "https://static.molodetz.nl/rp.cgi/api/v1/chat/completions" -MODEL = "retoor/fast" +MODEL = "retoor/code" TEMPERATURE = 0.1 MAX_TOKENS = None HOOK_PATH_PRECOMMIT = ".git/hooks/pre-commit"