You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: fix stale README examples and align model IDs with the SDKs
Replaces the removed elevenlabs:1@1 music example with minimax:music@2.6, documents the previously-missing model upload command, aligns example model IDs with the SDK READMEs (runware:400@1, google:3@3, google:gemma@4-31b, alibaba voicedesign TTS) across the run examples and completion demo, adds the -F shorthand to --format, and expands --task-type to cover 3dInference and operations.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: README.md
+31-18Lines changed: 31 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,7 +41,7 @@ runware auth login
41
41
runware ping
42
42
43
43
# Generate an image
44
-
runware run runware:101@1 positivePrompt="a chess match in the park" width=1024 height=1024
44
+
runware run runware:400@1 positivePrompt="a chess match in the park" width=1024 height=1024
45
45
46
46
# Check your account details
47
47
runware account details
@@ -64,7 +64,7 @@ runware run <model> [key=value ...] [flags]
64
64
| Flag | Description |
65
65
|------|-------------|
66
66
|`--preset`| Load parameters from a saved preset (model and params used as defaults; `<model>` may be omitted when the preset provides one) |
67
-
|`--task-type`| Override detected task type (e.g. `imageInference`, `videoInference`, `audioInference`, `textInference`)|
67
+
|`--task-type`| Override the detected task type. Accepts any API task type, e.g. `imageInference`, `videoInference`, `audioInference`, `textInference`, `3dInference`, or an operation like `removeBackground`|
68
68
|`--output-dir`| Directory to save downloaded output files (default `./outputs`) |
69
69
|`--no-download`| Skip auto-downloading media files |
70
70
|`--delivery-method`| Delivery method (`sync` or `async`) (default `async`) |
@@ -75,13 +75,13 @@ runware run <model> [key=value ...] [flags]
75
75
76
76
```shell
77
77
# Text-to-image
78
-
runware run runware:101@1 positivePrompt="A serene mountain landscape" width=1024 height=1024
78
+
runware run runware:400@1 positivePrompt="A serene mountain landscape" width=1024 height=1024
79
79
80
80
# Save to a specific directory
81
-
runware run runware:101@1 positivePrompt="Abstract art" --output-dir ./my-images width=1024 height=1024
81
+
runware run runware:400@1 positivePrompt="Abstract art" --output-dir ./my-images width=1024 height=1024
82
82
83
83
# Get the URL without downloading
84
-
runware run runware:101@1 positivePrompt="Abstract art" --format json --no-download
84
+
runware run runware:400@1 positivePrompt="Abstract art" --format json --no-download
85
85
86
86
# Community model — specify task type explicitly
87
87
runware run civitai:305149@392545 --task-type imageInference positivePrompt="A portrait" width=1024 height=1024
@@ -90,27 +90,27 @@ runware run civitai:305149@392545 --task-type imageInference positivePrompt="A p
90
90
#### Video generation
91
91
92
92
```shell
93
-
runware run klingai:5@3 positivePrompt="Ocean waves at sunset"width=1920 height=1080 duration=10
93
+
runware run google:3@3 positivePrompt="Ocean waves at sunset" duration=8
94
94
```
95
95
96
96
#### Audio generation
97
97
98
98
```shell
99
99
# Music generation
100
-
runware run elevenlabs:1@1 positivePrompt="Upbeat electronic dance music with driving bass and synth leads" duration=30
100
+
runware run minimax:music@2.6 positivePrompt="Upbeat electronic dance music with driving bass and synth leads"
101
101
102
-
# Text-to-speech
103
-
runware run minimax:speech@2.8 speech.text="Hello, this is a text-to-speech example." speech.voice=English_expressive_narrator
102
+
# Text-to-speech (the voice is designed from the prompt)
103
+
runware run alibaba:qwen@3-tts-1.7b-voicedesign positivePrompt="A calm, friendly young woman with a soft tone"speech.text="Hello, this is a text-to-speech example." speech.voice=design
104
104
```
105
105
106
106
#### Text inference (LLM)
107
107
108
108
```shell
109
109
# Single message
110
-
runware run minimax:m3@0 messages.0.role=user messages.0.content="Explain quantum computing"
110
+
runware run google:gemma@4-31b messages.0.role=user messages.0.content="Explain quantum computing"
111
111
112
112
# Multi-turn conversation
113
-
runware run minimax:m3@0 \
113
+
runware run google:gemma@4-31b \
114
114
messages.0.role=user messages.0.content="What is Go?" \
Run `runware model upload --help` for the full flag set (LoRA trigger words, default scheduler and steps, visibility, and more). Your AIR source is shown by `runware account details`.
0 commit comments