@opentiny/genui-sdk-vue 1.1.1 → 1.1.2-beta.1
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/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -81896,7 +81896,7 @@ const Voe = [
|
|
|
81896
81896
|
},
|
|
81897
81897
|
{
|
|
81898
81898
|
name: "reasoning",
|
|
81899
|
-
match: (e, t) => Nl(e).reasoning_content
|
|
81899
|
+
match: (e, t) => !!Nl(e).reasoning_content,
|
|
81900
81900
|
handler: (e, t) => {
|
|
81901
81901
|
const s = Nl(e);
|
|
81902
81902
|
return t.reasoningMessage = NO(s.reasoning_content, s, t.chatMessage), t.handleReasoning || (kO(t), t.handleReasoning = !0), !0;
|
|
@@ -81936,7 +81936,7 @@ const Voe = [
|
|
|
81936
81936
|
},
|
|
81937
81937
|
{
|
|
81938
81938
|
name: "content",
|
|
81939
|
-
match: (e, t) => Nl(e).content
|
|
81939
|
+
match: (e, t) => !!Nl(e).content,
|
|
81940
81940
|
handler: (e, t) => {
|
|
81941
81941
|
const s = Nl(e);
|
|
81942
81942
|
return t.delta = s, t.patternExtractor.handleContent(s.content), t.chatMessage.content += s.content, !0;
|