@goodandready/dsh-image-gen 0.10.29 → 0.10.30
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/lib/client.js +2 -2
- package/package.json +4 -3
package/lib/client.js
CHANGED
|
@@ -2021,7 +2021,7 @@ window.__ModuleLoader__.load({
|
|
|
2021
2021
|
}
|
|
2022
2022
|
|
|
2023
2023
|
// -------------------------------------------------------------- Registration & Apply
|
|
2024
|
-
const inject = ['slots', '
|
|
2024
|
+
const inject = ['slots', 'configForms', 'locale', 'sessions']
|
|
2025
2025
|
|
|
2026
2026
|
function apply(ctx) {
|
|
2027
2027
|
if (ctx.locale && typeof ctx.locale.define === 'function') {
|
|
@@ -2032,7 +2032,7 @@ window.__ModuleLoader__.load({
|
|
|
2032
2032
|
let card
|
|
2033
2033
|
const cardOnce = () => {
|
|
2034
2034
|
if (card === undefined) {
|
|
2035
|
-
const scope = ((ctx.get && ctx.get('lanSettings')) || ctx.
|
|
2035
|
+
const scope = ((ctx.get && ctx.get('lanSettings')) || ctx.configForms).get(SETTINGS_NS)
|
|
2036
2036
|
card = new FalSettingsCardController(scope)
|
|
2037
2037
|
}
|
|
2038
2038
|
return card
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@goodandready/dsh-image-gen",
|
|
3
|
-
"version": "0.10.
|
|
4
|
-
"description": "Image generation for DeepSeek Harness: a generate_image tool with pluggable providers
|
|
3
|
+
"version": "0.10.30",
|
|
4
|
+
"description": "Image generation for DeepSeek Harness: a generate_image tool with pluggable providers \u2014 the FAL queue, any OpenAI-compatible images API, or a ChatGPT/Grok subscription with no API key at all. The picture is shown inline in the conversation; the model receives either a link (works with any chat model) or the image itself (needs dsh-vision-bridge or a vision-capable model).",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"deepseek-harness",
|
|
7
7
|
"dsh",
|
|
@@ -52,7 +52,8 @@
|
|
|
52
52
|
"platform": "web",
|
|
53
53
|
"inject": [
|
|
54
54
|
"@deepseek-ai/dsh-client-locale",
|
|
55
|
-
"@deepseek-ai/dsh-client-ui-settings"
|
|
55
|
+
"@deepseek-ai/dsh-client-ui-settings",
|
|
56
|
+
"@deepseek-ai/dsh-client-ui-slots"
|
|
56
57
|
]
|
|
57
58
|
}
|
|
58
59
|
},
|