(_e: Exception)
| 239 | traceback.print_exc() |
| 240 | |
| 241 | def _err(_e: Exception): |
| 242 | yield 'data:' + orjson.dumps({'content': str(_e), 'type': 'error'}).decode() + '\n\n' |
| 243 | |
| 244 | return StreamingResponse(_err(e), media_type="text/event-stream") |
| 245 |
no outgoing calls
no test coverage detected