Upgraded to retoor/code.

This commit is contained in:
retoor 2025-12-13 14:12:22 +01:00
parent a4cad80f16
commit 6fc4ab020c
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@
## Version 0.10.0 - 2025-12-13 ## 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 **Changes:** 1 files, 2 lines
**Languages:** Python (2 lines) **Languages:** Python (2 lines)

View File

@ -1,7 +1,7 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
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 = "retoor/fast" MODEL = "retoor/code"
TEMPERATURE = 0.1 TEMPERATURE = 0.1
MAX_TOKENS = None MAX_TOKENS = None
HOOK_PATH_PRECOMMIT = ".git/hooks/pre-commit" HOOK_PATH_PRECOMMIT = ".git/hooks/pre-commit"