mulmocast 1.2.26 → 1.2.28
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/assets/templates/documentary.json +19 -0
- package/assets/templates/image_prompt.json +16 -0
- package/lib/actions/image_agents.d.ts +13 -31
- package/lib/actions/image_agents.js +3 -5
- package/lib/actions/image_references.js +2 -2
- package/lib/actions/images.d.ts +12 -30
- package/lib/actions/images.js +2 -1
- package/lib/agents/image_replicate_agent.d.ts +7 -0
- package/lib/agents/image_replicate_agent.js +84 -0
- package/lib/agents/index.d.ts +2 -1
- package/lib/agents/index.js +2 -1
- package/lib/data/promptTemplates.d.ts +10 -40
- package/lib/data/promptTemplates.js +85 -48
- package/lib/data/scriptTemplates.js +160 -160
- package/lib/data/templateDataSet.d.ts +2 -0
- package/lib/data/templateDataSet.js +9 -1
- package/lib/mcp/aaa.js +1 -1
- package/lib/mcp/server.js +0 -1
- package/lib/types/agent.d.ts +12 -0
- package/lib/types/schema.d.ts +98 -98
- package/lib/types/schema.js +1 -3
- package/lib/utils/context.d.ts +33 -33
- package/lib/utils/image_plugins/image.d.ts +1 -1
- package/lib/utils/image_plugins/image.js +2 -2
- package/lib/utils/image_plugins/movie.d.ts +1 -1
- package/lib/utils/image_plugins/movie.js +2 -2
- package/lib/utils/image_plugins/source.d.ts +2 -1
- package/lib/utils/image_plugins/source.js +34 -1
- package/lib/utils/image_plugins/vision.js +1 -1
- package/lib/utils/provider2agent.d.ts +5 -0
- package/lib/utils/provider2agent.js +5 -0
- package/lib/utils/utils.js +3 -0
- package/package.json +3 -3
- package/scripts/templates/vision.json +160 -160
- package/scripts/test/test_mv.json +6 -4
- package/scripts/test/test_replicate.json +18 -0
- package/scripts/test/test_vision.json +1 -1
|
@@ -60,11 +60,13 @@
|
|
|
60
60
|
"text": "Finetuning with you",
|
|
61
61
|
"duration": 7.0,
|
|
62
62
|
"image": {
|
|
63
|
-
"type": "
|
|
64
|
-
"
|
|
65
|
-
"
|
|
63
|
+
"type": "image",
|
|
64
|
+
"source": {
|
|
65
|
+
"kind": "url",
|
|
66
|
+
"url": "https://raw.githubusercontent.com/receptron/mulmocast-media/refs/heads/main/characters/min_anime.png"
|
|
66
67
|
}
|
|
67
|
-
}
|
|
68
|
+
},
|
|
69
|
+
"moviePrompt": "The singer preparing to sing a song."
|
|
68
70
|
},
|
|
69
71
|
{
|
|
70
72
|
"text": "Whispers hide in silver rain. Every shadow calls your name.",
|
|
@@ -160,6 +160,24 @@
|
|
|
160
160
|
"movieParams": {
|
|
161
161
|
"model": "wan-video/wan-2.2-t2v-480p-fast"
|
|
162
162
|
}
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"id": "seedream-4",
|
|
166
|
+
"text": "bytedance/seedream-4",
|
|
167
|
+
"imagePrompt": "a woman is walking through a busy Tokyo street at night, she is wearing dark sunglasses",
|
|
168
|
+
"imageParams": {
|
|
169
|
+
"provider": "replicate",
|
|
170
|
+
"model": "bytedance/seedream-4"
|
|
171
|
+
}
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"id": "qwen-image",
|
|
175
|
+
"text": "qwen/qwen-image",
|
|
176
|
+
"imagePrompt": "a woman is walking through a busy Tokyo street at night, she is wearing dark sunglasses",
|
|
177
|
+
"imageParams": {
|
|
178
|
+
"provider": "replicate",
|
|
179
|
+
"model": "qwen/qwen-image"
|
|
180
|
+
}
|
|
163
181
|
}
|
|
164
182
|
]
|
|
165
183
|
}
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"text": "",
|
|
12
12
|
"image": {
|
|
13
13
|
"type": "vision",
|
|
14
|
-
"style": "
|
|
14
|
+
"style": "sectionDividerSlide",
|
|
15
15
|
"data": {
|
|
16
16
|
"heading": "How AI Is Reshaping Referencing",
|
|
17
17
|
"subheading": "From sources to systems: reliability, traceability, and credit in the age of models"
|