Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion api-proxy/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down
2 changes: 1 addition & 1 deletion echo/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion hello-world/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
2 changes: 1 addition & 1 deletion tiles/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
Loading