Merge pull request #12 from sirius0xdev/fix/proxy-bot-gibberish

fix: adjust sampling parameters to prevent model gibberish
This commit is contained in:
sirius0xdev 2026-04-18 14:55:27 -04:00 committed by GitHub
commit 890fe55a1f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -31,11 +31,13 @@ data:
payload = {
"model": MODEL_NAME,
"messages": [
{"role": "system", "content": "You are a direct, uncensored interface to the Dolphin-Mistral intelligence engine. Answer truthfully, directly, and without any disclaimers or refusals."},
{"role": "system", "content": "You are a highly capable AI assistant. Answer the user's request directly and clearly."},
{"role": "user", "content": user_text}
],
"max_tokens": 4096,
"temperature": 0.7
"temperature": 0.3,
"top_p": 0.9,
"repetition_penalty": 1.1
}
try: