Skip to content

Commit a406fab

Browse files
committed
copilot comments
1 parent b1d97c0 commit a406fab

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ runware run <model> [key=value ...] [flags]
6363

6464
| Flag | Description |
6565
|------|-------------|
66-
| `--preset` | Load parameters from a saved preset (model and params used as defaults) |
66+
| `--preset` | Load parameters from a saved preset (model and params used as defaults; `<model>` may be omitted when the preset provides one) |
6767
| `--task-type` | Override detected task type (e.g. `imageInference`, `videoInference`, `audioInference`, `textInference`) |
6868
| `--output-dir` | Directory to save downloaded output files (default `./outputs`) |
6969
| `--no-download` | Skip auto-downloading media files |
@@ -180,7 +180,7 @@ Config is stored at `~/.runware/config.yaml`.
180180
runware upload <file|url> # Upload an image asset; prints imageUUID (and taskUUID) for use in run params
181181
```
182182

183-
Accepts a local file path, public URL, or data URI. The returned imageUUID can be passed to parameters like `inputs.seedImage=` on the `run` command. The taskUUID can be used with `runware result`.
183+
Accepts a local file path, public URL, or data URI. The returned imageUUID can be passed to parameters like `inputs.seedImage=<imageUUID>` on the `run` command. The taskUUID can be used with `runware result`.
184184

185185
### Result
186186

docs/runware.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ CLI tool for the Runware inference API
77
A command-line tool for interacting with the Runware inference API.
88
Generate images, search models, manage your account, and more.
99

10-
By creating an account, you agree to our Terms of Service (https://runware.ai/terms) and Privacy Policy (https://runware.ai/privacy).
10+
Use of Runware services is subject to our Terms of Service (https://runware.ai/terms) and Privacy Policy (https://runware.ai/privacy).
1111

1212
### Options
1313

internal/cmd/root.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ func NewRootCmd(logger *log.Logger) *cobra.Command {
4343
Long: `A command-line tool for interacting with the Runware inference API.
4444
Generate images, search models, manage your account, and more.
4545
46-
By creating an account, you agree to our Terms of Service (https://runware.ai/terms) and Privacy Policy (https://runware.ai/privacy).`,
46+
Use of Runware services is subject to our Terms of Service (https://runware.ai/terms) and Privacy Policy (https://runware.ai/privacy).`,
4747
PersistentPreRunE: func(cmd *cobra.Command, args []string) error {
4848
if verbose, _ := cmd.Root().PersistentFlags().GetBool("verbose"); verbose {
4949
logger.SetLevel(log.DebugLevel)

0 commit comments

Comments
 (0)