(request: Request)
| 206 | |
| 207 | @app.post("/get_score") |
| 208 | async def get_score(request: Request) -> Response: |
| 209 | try: |
| 210 | return await lightllm_get_score(request, g_objs.httpserver_manager) |
| 211 | except Exception as e: |
| 212 | return create_error_response(HTTPStatus.EXPECTATION_FAILED, str(e)) |
| 213 | |
| 214 | |
| 215 | @app.post("/") |
nothing calls this directly
no test coverage detected