Merge pull request #21 from sirius0xdev/feat/supergemma-26b-abliterated

feat: switch brain to supergemma4-26b-abliterated-multimodal
This commit is contained in:
sirius0xdev 2026-04-18 17:19:03 -04:00 committed by GitHub
commit 4a6b30101b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 4 additions and 4 deletions

View file

@ -49,7 +49,7 @@ data:
"agents": {
"defaults": {
"model": {
"primary": "openai/dphn/Dolphin-Mistral-24B-Venice-Edition",
"primary": "openai/Jiunsong/supergemma4-26b-abliterated-multimodal",
"fallbacks": ["google/gemini-3.1-pro-preview"]
},
"workspace": "~/.openclaw/workspace"

View file

@ -33,9 +33,9 @@ spec:
value: "auto"
args:
- "--model"
- "dphn/Dolphin-Mistral-24B-Venice-Edition" # Uncensored 24B (Native)
- "Jiunsong/supergemma4-26b-abliterated-multimodal" # Uncensored Abliterated Gemma 26B (Native)
- "--dtype"
- "auto"
- "bfloat16"
- "--max-model-len"
- "8192"
- "--trust-remote-code"

View file

@ -16,7 +16,7 @@ data:
TOKEN = os.environ.get('TELEGRAM_BOT_TOKEN')
# Use the internal DNS of the vLLM service
VLLM_URL = 'http://openclaw-brain-service.customer1.svc.cluster.local:8000/v1/chat/completions'
MODEL_NAME = 'dphn/Dolphin-Mistral-24B-Venice-Edition'
MODEL_NAME = 'Jiunsong/supergemma4-26b-abliterated-multimodal'
bot = telebot.TeleBot(TOKEN)