router.post(
"/v1/completions",
summary="Completion",
dependencies=[Depends(authenticate)],
response_model=Union[
llama_cpp.CreateCompletionResponse,
str,
],
re
| 1 | from __future__ import annotations |
| 2 | |
| 3 | import os |
| 4 | import json |
nothing calls this directly
no outgoing calls
no test coverage detected