@@ -87,6 +87,46 @@ runware imageInference "a sunset" --no-download
8787runware imageInference " a sunset" --dry-run
8888```
8989
90+ ### Text generation
91+
92+ ``` bash
93+ # Simple question
94+ runware textInference " What is the capital of France?"
95+
96+ # With a system prompt
97+ runware textInference " Write a haiku about coding" --system " You are a poet"
98+
99+ # With options
100+ runware textInference " Explain quantum computing" \
101+ --model runware:qwen3-thinking@1 \
102+ --max-tokens 500 --temperature 0.8
103+
104+ # Get JSON output from the LLM
105+ runware textInference " List 3 facts about Mars" --output-format json
106+
107+ # Pipe-friendly — single result prints text directly to stdout
108+ runware textInference " summarize this" | pbcopy
109+
110+ # Preview the API request without sending it
111+ runware textInference " hello" --dry-run
112+ ```
113+
114+ ### Audio generation
115+
116+ ``` bash
117+ # Text-to-audio
118+ runware audioInference " a jazz piano solo with soft drums" \
119+ --model elevenlabs:1@1 --duration 30
120+
121+ # With audio settings
122+ runware audioInference " ocean waves crashing on rocks" \
123+ --model elevenlabs:1@1 --duration 60 --sample-rate 48000
124+
125+ # Just get the URL, don't download
126+ runware audioInference " upbeat electronic music" \
127+ --model elevenlabs:1@1 --duration 120 --no-download
128+ ```
129+
90130### Authentication
91131
92132``` bash
@@ -106,7 +146,7 @@ runware account credits # Credit balance and usage stats
106146### Model search
107147
108148``` bash
109- runware modelSearch " flux" # Search available models (coming soon)
149+ runware modelSearch " flux" # Search available models
110150```
111151
112152### Presets
0 commit comments