MCPcopy Create free account
hub / github.com/ResearAI/DeepScientist / pythonVersionText

Function pythonVersionText

bin/ds.js:961–970  ·  view source on GitHub ↗
(probe)

Source from the content-addressed store, hash-verified

959}
960
961function pythonVersionText(probe) {
962 if (!probe) {
963 return 'unknown';
964 }
965 const version = probe.version || pythonMajorMinor(probe) || 'unknown';
966 if (probe.executable) {
967 return `${version} (${probe.executable})`;
968 }
969 return version;
970}
971
972function renderLaunchHints({ home, url, bindUrl, pythonSelection, yolo, authEnabled, authToken, runnerName }) {
973 const normalizedRunner = normalizeRunnerName(runnerName, 'codex');

Callers 2

renderLaunchHintsFunction · 0.85

Calls 1

pythonMajorMinorFunction · 0.85

Tested by

no test coverage detected