(operation)
| 54 | |
| 55 | |
| 56 | async def _run(operation): |
| 57 | try: |
| 58 | result = await run_maybe_async(operation) |
| 59 | return ok(result) |
| 60 | except ConversationServiceError as exc: |
| 61 | _raise_conversation_error(exc) |
| 62 | |
| 63 | |
| 64 | def _export_response(export: ConversationExport) -> StreamingResponse: |
no test coverage detected