@vegintech/langchain-react-agent 0.0.26 → 0.0.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/dist/index.mjs +3 -2
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -374,7 +374,8 @@ const roleConfig = {
|
|
|
374
374
|
variant: "borderless",
|
|
375
375
|
style: {
|
|
376
376
|
paddingInlineEnd: 0,
|
|
377
|
-
paddingBlock: "8px"
|
|
377
|
+
paddingBlock: "8px",
|
|
378
|
+
width: "100%"
|
|
378
379
|
}
|
|
379
380
|
}
|
|
380
381
|
};
|
|
@@ -932,7 +933,7 @@ const AgentChat = forwardRef(({ stream, className = "", tools, contexts, message
|
|
|
932
933
|
}
|
|
933
934
|
}, {
|
|
934
935
|
streamSubgraphs: true,
|
|
935
|
-
streamResumable:
|
|
936
|
+
streamResumable: false,
|
|
936
937
|
config: { recursion_limit: 1e3 },
|
|
937
938
|
optimisticValues(prev) {
|
|
938
939
|
const newMessages = [...prev.messages ?? [], ...submitMessages];
|