(payload: ExportRequest)
| 1280 | |
| 1281 | @app.post("/api/export/stream") |
| 1282 | def api_export_stream(payload: ExportRequest): |
| 1283 | model_path = _export_model_path(payload.model_name) |
| 1284 | return StreamingResponse( |
| 1285 | _stream_export(payload, model_path), |
| 1286 | media_type="text/plain; charset=utf-8", |
| 1287 | ) |
| 1288 | |
| 1289 | |
| 1290 | @app.post("/api/train") |
nothing calls this directly
no test coverage detected