(human_query: str)
| 110 | |
| 111 | @cl.step(type="run") |
| 112 | async def chain(human_query: str): |
| 113 | sql_query = await gen_query(human_query) |
| 114 | table = await execute_query(sql_query) |
| 115 | analysis = await analyze(table) |
| 116 | return analysis |
| 117 | |
| 118 | |
| 119 | @cl.on_message |
no test coverage detected