From 215da9dc154e1a28c6d959bdee28f633d81ccd96 Mon Sep 17 00:00:00 2001 From: Rick Staa Date: Thu, 20 Aug 2026 13:41:46 +0200 Subject: [PATCH] docs: say what each client does instead of "run the demo" "Run the X Live Runner demo" repeats the command the reader just typed. Lead with the verb and name the outcome, so --help answers what is about to happen. Wording follows each app: tiles stylizes, api-proxy saves the bytes it gets back. Co-Authored-By: Claude Opus 5 (1M context) --- api-proxy/client.py | 4 +++- echo/client.py | 2 +- hello-world/client.py | 2 +- tiles/client.py | 2 +- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/api-proxy/client.py b/api-proxy/client.py index 86144bd..9896352 100644 --- a/api-proxy/client.py +++ b/api-proxy/client.py @@ -37,7 +37,9 @@ def _parse_args() -> argparse.Namespace: - parser = argparse.ArgumentParser(description="Run the api-proxy Live Runner demo.") + parser = argparse.ArgumentParser( + description="Send a prompt to an api-proxy Live Runner and save the image." + ) parser.add_argument( "--prompt", default="a watercolor painting of a llama writing code" ) diff --git a/echo/client.py b/echo/client.py index c995655..09c67f4 100644 --- a/echo/client.py +++ b/echo/client.py @@ -55,7 +55,7 @@ def _parse_args() -> argparse.Namespace: parser = argparse.ArgumentParser( - description="Run the proxied echo Live Runner demo." + description="Send video through an echo Live Runner and read it back." ) parser.add_argument( "input", diff --git a/hello-world/client.py b/hello-world/client.py index 61f98c5..d9e6fee 100644 --- a/hello-world/client.py +++ b/hello-world/client.py @@ -27,7 +27,7 @@ def _parse_args() -> argparse.Namespace: parser = argparse.ArgumentParser( - description="Run the hello-world Live Runner demo." + description="Call a hello-world Live Runner and print the reply." ) parser.add_argument("--discovery", default=DEFAULT_DISCOVERY) parser.add_argument("--name", default="livepeer") diff --git a/tiles/client.py b/tiles/client.py index a317795..014dcde 100644 --- a/tiles/client.py +++ b/tiles/client.py @@ -48,7 +48,7 @@ def _parse_args() -> argparse.Namespace: parser = argparse.ArgumentParser( - description="Run the tiles Live Runner demo (capacity showcase)." + description="Split an image, stylize each tile on a Live Runner, stitch it back." ) parser.add_argument("input", help="input image file (png/jpg)") parser.add_argument("--output", default=DEFAULT_OUTPUT, help="output image path")