@talesofai/neta-skills 0.17.0 → 0.18.0
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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @neta/skills-neta
|
|
2
2
|
|
|
3
|
+
## 0.18.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 1e7536f: feat(make_image): add 9_image_edit_bravo to model_series enum and docs
|
|
8
|
+
|
|
9
|
+
- Extend the `make_image` CLI `model_series` TypeBox schema to accept `9_image_edit_bravo`.
|
|
10
|
+
- Update English and Chinese skill reference docs with a minimal description of the new model option.
|
|
11
|
+
|
|
3
12
|
## 0.17.0
|
|
4
13
|
|
|
5
14
|
### Minor Changes
|
|
@@ -37,7 +37,11 @@ const makeImageV1Parameters = Type.Object({
|
|
|
37
37
|
minimum: 256,
|
|
38
38
|
maximum: 2048,
|
|
39
39
|
})),
|
|
40
|
-
model_series: Type.Union([
|
|
40
|
+
model_series: Type.Union([
|
|
41
|
+
Type.Literal("8_image_edit"),
|
|
42
|
+
Type.Literal("3_noobxl"),
|
|
43
|
+
Type.Literal("9_image_edit_bravo"),
|
|
44
|
+
], {
|
|
41
45
|
default: "8_image_edit",
|
|
42
46
|
description: meta.parameters.model_series,
|
|
43
47
|
}),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@talesofai/neta-skills",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.18.0",
|
|
4
4
|
"description": "Neta API pi coding agent skills for interacting with Neta API to generate images, videos, songs, and manage characters/elements.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -54,6 +54,8 @@ npx -y @talesofai/neta-skills@latest make_image \
|
|
|
54
54
|
--model_series "8_image_edit"
|
|
55
55
|
```
|
|
56
56
|
|
|
57
|
+
- **9_image_edit_bravo**: Updated experimental model. Only use when explicitly requested by the user.
|
|
58
|
+
|
|
57
59
|
## Aspect Ratio Selection
|
|
58
60
|
|
|
59
61
|
| Ratio | Resolution | Use Cases |
|