@aigne/ideogram 0.2.0 → 0.3.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,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.3.0](https://github.com/AIGNE-io/aigne-framework/compare/ideogram-v0.2.0...ideogram-v0.3.0) (2025-08-27)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **models:** support aigne hub models ([#416](https://github.com/AIGNE-io/aigne-framework/issues/416)) ([b4f014c](https://github.com/AIGNE-io/aigne-framework/commit/b4f014cf5ed08ef930d3ddfc278d3610e64c6af3))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @aigne/core bumped to 1.56.0
|
|
16
|
+
|
|
3
17
|
## [0.2.0](https://github.com/AIGNE-io/aigne-framework/compare/ideogram-v0.1.0...ideogram-v0.2.0) (2025-08-27)
|
|
4
18
|
|
|
5
19
|
|
|
@@ -11,7 +11,6 @@ const ideogramImageModelOptionsSchema = zod_1.z.object({
|
|
|
11
11
|
apiKey: zod_1.z.string().optional(),
|
|
12
12
|
baseURL: zod_1.z.string().optional(),
|
|
13
13
|
modelOptions: zod_1.z.object({}).optional(),
|
|
14
|
-
clientOptions: zod_1.z.object({}).optional(),
|
|
15
14
|
});
|
|
16
15
|
class IdeogramImageModel extends core_1.ImageModel {
|
|
17
16
|
options;
|
|
@@ -8,7 +8,6 @@ const ideogramImageModelOptionsSchema = z.object({
|
|
|
8
8
|
apiKey: z.string().optional(),
|
|
9
9
|
baseURL: z.string().optional(),
|
|
10
10
|
modelOptions: z.object({}).optional(),
|
|
11
|
-
clientOptions: z.object({}).optional(),
|
|
12
11
|
});
|
|
13
12
|
export class IdeogramImageModel extends ImageModel {
|
|
14
13
|
options;
|
package/package.json
CHANGED
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
}
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@aigne/core": "1.
|
|
37
|
+
"@aigne/core": "1.56.0"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@types/bun": "^1.2.18",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"typescript": "^5.8.3",
|
|
47
47
|
"zod": "3.25.67"
|
|
48
48
|
},
|
|
49
|
-
"version": "0.
|
|
49
|
+
"version": "0.3.0",
|
|
50
50
|
"scripts": {
|
|
51
51
|
"lint": "tsc --noEmit",
|
|
52
52
|
"build": "tsc --build scripts/tsconfig.build.json",
|