gen-cards: regenerate Use-it block
Browse files
README.md
CHANGED
|
@@ -32,6 +32,15 @@ waveform. Distilled (ARC) for few-step generation, so it's fast.
|
|
| 32 |
|
| 33 |
## Use it
|
| 34 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 35 |
▶️ **Run it (source)** — the [Music runner](https://github.com/john-rocky/coreai-kit/tree/main/Examples/Music)
|
| 36 |
(GUI + CLI, one app for every text-to-music model in the catalog):
|
| 37 |
|
|
|
|
| 32 |
|
| 33 |
## Use it
|
| 34 |
|
| 35 |
+
⚡ **One line** — this model is the default behind the kit's task op
|
| 36 |
+
(`import CoreAIOps`; no session, no model plumbing, downloads on first use):
|
| 37 |
+
|
| 38 |
+
```swift
|
| 39 |
+
let audio = try await CoreAI.compose(prompt)
|
| 40 |
+
```
|
| 41 |
+
|
| 42 |
+
Twenty ops, one shape — [Cookbook](https://github.com/john-rocky/coreai-kit/blob/main/docs/COOKBOOK.md).
|
| 43 |
+
|
| 44 |
▶️ **Run it (source)** — the [Music runner](https://github.com/john-rocky/coreai-kit/tree/main/Examples/Music)
|
| 45 |
(GUI + CLI, one app for every text-to-music model in the catalog):
|
| 46 |
|