feat: sync openclaw and proxy bot configs to use new qwen3.5-27b-heretic model

This commit is contained in:
SiriusClaw 2026-04-18 22:48:48 +00:00
parent d3d18ab28a
commit 9b15b09eed
2 changed files with 2 additions and 2 deletions

View file

@ -49,7 +49,7 @@ data:
"agents": { "agents": {
"defaults": { "defaults": {
"model": { "model": {
"primary": "openai/Jiunsong/supergemma4-26b-abliterated-multimodal", "primary": "openai/coder3101/Qwen3.5-27B-heretic",
"fallbacks": ["google/gemini-3.1-pro-preview"] "fallbacks": ["google/gemini-3.1-pro-preview"]
}, },
"workspace": "~/.openclaw/workspace" "workspace": "~/.openclaw/workspace"

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 = 'Jiunsong/supergemma4-26b-abliterated-multimodal' MODEL_NAME = 'coder3101/Qwen3.5-27B-heretic'
bot = telebot.TeleBot(TOKEN) bot = telebot.TeleBot(TOKEN)