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": { "agents": {
"defaults": { "defaults": {
"model": { "model": {
"primary": "openai/dphn/Dolphin-Mistral-24B-Venice-Edition", "primary": "openai/Jiunsong/supergemma4-26b-abliterated-multimodal",
"fallbacks": ["google/gemini-3.1-pro-preview"] "fallbacks": ["google/gemini-3.1-pro-preview"]
}, },
"workspace": "~/.openclaw/workspace" "workspace": "~/.openclaw/workspace"

View file

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

View file

@ -16,7 +16,7 @@ data:
TOKEN = os.environ.get('TELEGRAM_BOT_TOKEN') TOKEN = os.environ.get('TELEGRAM_BOT_TOKEN')
# Use the internal DNS of the vLLM service # Use the internal DNS of the vLLM service
VLLM_URL = 'http://openclaw-brain-service.customer1.svc.cluster.local:8000/v1/chat/completions' 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) bot = telebot.TeleBot(TOKEN)