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