feat(bot): Qwen3-VL 30B als einziges Modell (Text+Vision+Tools lokal)

This commit is contained in:
Cursor 2026-03-20 23:57:15 +01:00
parent c1aaeac263
commit b6d5b982bd

View file

@ -18,8 +18,8 @@ log = logging.getLogger('llm')
OLLAMA_BASE = "http://100.84.255.83:11434"
OPENROUTER_BASE = "https://openrouter.ai/api/v1"
MODEL = "qwen3:30b-a3b"
VISION_MODEL = "openai/gpt-4o"
MODEL = "qwen3-vl:30b"
VISION_MODEL = "qwen3-vl:30b"
MAX_TOOL_ROUNDS = 3
import datetime as _dt