Error from sandbox: [bad_request] python-3.14.4 runtime is unknown #10
-
|
Hi, Looking for guidance here as I might be doing something wrong... Tried the same prompt from the introduction video available here: https://www.librechat.ai/docs/features/code_interpreter#introduction
My LibreChat My CodeInterpreter has the following configured: When running the prompt from LibreChat, I get the following error on the CodeInterpreter API: I'm running both LibreChat and CodeInterpreter through Docker Desktop with WSL2. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
Hi @luis-silva-idb, your LibreChat URL/token config looks fine. The error means the sandbox runner does not have the Python runtime installed/registered. The Code Interpreter maps Python requests to For local Docker Compose, populate cd /path/to/code-interpreter
./build-packages.sh
docker compose up --build |
Beta Was this translation helpful? Give feedback.
Hi @luis-silva-idb, your LibreChat URL/token config looks fine. The error means the sandbox runner does not have the Python runtime installed/registered.
The Code Interpreter maps Python requests to
pythonversion3.14.4, and the sandbox only discovers runtimes from/pkgs. The README/troubleshooting notes that"runtime is unknown"usually means the language packages volume is empty because the package-init step did not run.For local Docker Compose, populate
./data/pkgsfirst, then restart the stack:cd /path/to/code-interpreter ./build-packages.sh docker compose up --build