BotConnector
Sign in Workspace Open App

Runtime troubleshooting

warning

Runtime troubleshooting

Start with evidence

powershell
botconnector doctor --json
botconnector runtime status

Capture: backend, runtime release asset, executable path, model path, context size, port, exit code and stderr. Native errors are kept as-is — they are diagnostic gold; do not retry blindly.

Runtime will not start

SymptomLikely causeAction
Process exits immediatelyBroken/incomplete runtime installbotconnector runtime install to re-fetch
"CUDA error" at initDriver/GPU mismatchUpdate driver; try Vulkan; fall back CPU
"vulkan device not found"Driver lacks Vulkan 1.xUpdate GPU driver
Port already in useOld instance still runningbotconnector ps, stop it, or change --port
Antivirus blocks binaryUnknown unsigned binaryWhitelist the runtime path

Model fails at load

  • OOM (out of memory) → smaller quantization or smaller context: Memory problems.
  • Checksum mismatch → corrupted download; delete and re-download: Download problems.
  • Unsupported architecture → runtime too old for this GGUF version; botconnector runtime install to update: Runtime.

API never becomes READY

  1. Confirm state with botconnector ps (STOPPED/STARTING/READY).
  2. Check the log file in %USERPROFILE%\botconnector\logs.
  3. Confirm the port is the expected one: curl http://127.0.0.1:11435/v1/models.
  4. Firewall or AV may block localhost binding — rare, but test with another port.

Logs

Log location: %USERPROFILE%\botconnector\logs. Runtime stderr is preserved per launch — include it when reporting issues.