(self, request: Request, chat_id: str)
| 152 | tags=[_('Application')] # type: ignore |
| 153 | ) |
| 154 | def post(self, request: Request, chat_id: str): |
| 155 | return DebugChatSerializers(data={'chat_id': chat_id}).chat(request.data) |
| 156 | |
| 157 | class PromptGenerateView(APIView): |
| 158 | authentication_classes = [TokenAuth] |
nothing calls this directly
no test coverage detected