@shenghuabi/workflow 1.0.10 → 1.0.12
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/index.js +8 -0
- package/index.js.map +2 -2
- package/index.mjs +10 -1
- package/index.mjs.map +3 -3
- package/inline/node/chat/chat.node.define.d.ts +4 -0
- package/inline/node/chat/main/index.d.ts +4 -0
- package/package.json +2 -2
- package/share/common/llm.define.d.ts +4 -0
- package/share/index.js +8 -0
- package/share/index.js.map +2 -2
- package/share/index.mjs +10 -1
- package/share/index.mjs.map +3 -3
- package/webview/index.js +8 -0
- package/webview/index.js.map +2 -2
- package/webview/index.mjs +10 -1
- package/webview/index.mjs.map +3 -3
package/index.mjs
CHANGED
|
@@ -252,7 +252,8 @@ var INLINE_Template2 = v3.pipe(
|
|
|
252
252
|
import {
|
|
253
253
|
asVirtualGroup,
|
|
254
254
|
actions as actions4,
|
|
255
|
-
setComponent as setComponent2
|
|
255
|
+
setComponent as setComponent2,
|
|
256
|
+
renderConfig as renderConfig3
|
|
256
257
|
} from "@piying/view-angular-core";
|
|
257
258
|
import { condition as condition3 } from "@piying/valibot-visit";
|
|
258
259
|
import * as v4 from "valibot";
|
|
@@ -289,6 +290,14 @@ function llmModelConfig(item) {
|
|
|
289
290
|
environments: ["display", "config"],
|
|
290
291
|
actions: [asVirtualGroup()]
|
|
291
292
|
}),
|
|
293
|
+
condition3({
|
|
294
|
+
environments: ["display"],
|
|
295
|
+
actions: [
|
|
296
|
+
renderConfig3({
|
|
297
|
+
hidden: true
|
|
298
|
+
})
|
|
299
|
+
]
|
|
300
|
+
}),
|
|
292
301
|
setComponent2("accordion")
|
|
293
302
|
);
|
|
294
303
|
}
|