Run workflow in async and return a list of experiences.
(self)
| 148 | raise NotImplementedError |
| 149 | |
| 150 | async def run_async(self) -> List[Experience]: |
| 151 | """Run workflow in async and return a list of experiences.""" |
| 152 | raise NotImplementedError |
| 153 | |
| 154 | |
| 155 | class MultiTurnWorkflow(Workflow): |