()
| 3 | |
| 4 | |
| 5 | def run(): |
| 6 | async_llm = AsyncFlowGenerator(0) |
| 7 | loop = asyncio.get_event_loop() |
| 8 | tasks = [ |
| 9 | loop.create_task(async_llm.generate_concurrently('IyadhKhalfallah', 'aws-lambda_terraform')), |
| 10 | ] |
| 11 | loop.run_until_complete(asyncio.wait(tasks)) |
| 12 | loop.close() |
| 13 | |
| 14 | |
| 15 | if __name__ == '__main__': |
no test coverage detected