(checkpoint_name: str, req: RegisterRequest, raw: Request)
| 66 | |
| 67 | @app.post("/v1/checkpoints/{checkpoint_name}/files") |
| 68 | async def register_files(checkpoint_name: str, req: RegisterRequest, raw: Request) -> Response: |
| 69 | return wrap_exception(lambda: ps.register_checkpoint(checkpoint_name, files=req.files)) |
| 70 | |
| 71 | @app.delete("/v1/checkpoints/{checkpoint_name}") |
| 72 | async def unregister_checkpoint(checkpoint_name: str) -> Response: |
nothing calls this directly
no test coverage detected