MCPcopy Create free account
hub / github.com/Tron521/codex-console-temp / api_get_selfcheck_run

Function api_get_selfcheck_run

src/web/routes/selfcheck.py:188–192  ·  view source on GitHub ↗
(run_id: int)

Source from the content-addressed store, hash-verified

186
187@router.get("/runs/{run_id}")
188def api_get_selfcheck_run(run_id: int):
189 run = get_selfcheck_run(run_id)
190 if not run:
191 raise HTTPException(status_code=404, detail="自检任务不存在")
192 return run
193
194
195@router.post("/runs/{run_id}/cancel")

Callers

nothing calls this directly

Calls 1

get_selfcheck_runFunction · 0.85

Tested by

no test coverage detected