@langchain/langgraph-sdk 0.0.75 → 0.0.76
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/react/stream.cjs +1 -0
- package/dist/react/stream.d.ts +6 -0
- package/dist/react/stream.js +1 -0
- package/package.json +1 -1
- package/react-ui/client.cjs +1 -0
- package/react-ui/client.d.cts +1 -0
- package/react-ui/client.d.ts +1 -0
- package/react-ui/client.js +1 -0
package/dist/react/stream.cjs
CHANGED
package/dist/react/stream.d.ts
CHANGED
|
@@ -207,6 +207,12 @@ interface SubmitOptions<StateType extends Record<string, unknown> = Record<strin
|
|
|
207
207
|
feedbackKeys?: string[];
|
|
208
208
|
streamMode?: Array<StreamMode>;
|
|
209
209
|
optimisticValues?: Partial<StateType> | ((prev: StateType) => Partial<StateType>);
|
|
210
|
+
/**
|
|
211
|
+
* Whether or not to stream the nodes of any subgraphs called
|
|
212
|
+
* by the assistant.
|
|
213
|
+
* @default false
|
|
214
|
+
*/
|
|
215
|
+
streamSubgraphs?: boolean;
|
|
210
216
|
}
|
|
211
217
|
export declare function useStream<StateType extends Record<string, unknown> = Record<string, unknown>, Bag extends {
|
|
212
218
|
ConfigurableType?: Record<string, unknown>;
|
package/dist/react/stream.js
CHANGED
package/package.json
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/react-ui/client.cjs');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/react-ui/client.js'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/react-ui/client.js'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/react-ui/client.js'
|