live-bench — push benchmark results at the server from anywhere on the LAN.
(ctx: click.Context, server: str, verbose: bool)
| 42 | ) |
| 43 | @click.pass_context |
| 44 | def cli(ctx: click.Context, server: str, verbose: bool) -> None: |
| 45 | """live-bench — push benchmark results at the server from anywhere on the LAN.""" |
| 46 | |
| 47 | ctx.ensure_object(dict) |
| 48 | ctx.obj["server"] = server |
| 49 | ctx.obj["verbose"] = verbose |
| 50 | |
| 51 | |
| 52 | cli.add_command(list_cmd.list_, name="list") |