@mindstudio-ai/agent 0.1.21 → 0.1.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -0
- package/dist/cli.js +278 -13
- package/dist/index.d.ts +90 -15
- package/dist/index.js +246 -7
- package/dist/index.js.map +1 -1
- package/dist/postinstall.js +278 -13
- package/llms.txt +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -87,6 +87,15 @@ mindstudio info generate-image
|
|
|
87
87
|
echo '{"query": "TypeScript best practices"}' | mindstudio search-google
|
|
88
88
|
```
|
|
89
89
|
|
|
90
|
+
Steps stream real-time progress when run from a terminal:
|
|
91
|
+
|
|
92
|
+
```
|
|
93
|
+
$ mindstudio generate-image --prompt "A mountain landscape at sunset"
|
|
94
|
+
⟡ Generating image with DALL·E 3...
|
|
95
|
+
⟡ Image generated successfully
|
|
96
|
+
{"imageUrl":"https://...","$billingCost":5000000}
|
|
97
|
+
```
|
|
98
|
+
|
|
90
99
|
Run via `npx` without installing:
|
|
91
100
|
|
|
92
101
|
```bash
|