@langchain/langgraph-sdk 0.0.1-rc.4 → 0.0.1-rc.6
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/client.mjs +1 -0
- package/dist/types.d.mts +5 -0
- package/package.json +1 -1
package/dist/client.mjs
CHANGED
|
@@ -282,6 +282,7 @@ class RunsClient extends BaseClient {
|
|
|
282
282
|
config: payload?.config,
|
|
283
283
|
metadata: payload?.metadata,
|
|
284
284
|
stream_mode: payload?.streamMode,
|
|
285
|
+
feedback_keys: payload?.feedbackKeys,
|
|
285
286
|
assistant_id: assistantId,
|
|
286
287
|
interrupt_before: payload?.interruptBefore,
|
|
287
288
|
interrupt_after: payload?.interruptAfter,
|
package/dist/types.d.mts
CHANGED
|
@@ -37,6 +37,11 @@ export interface RunsStreamPayload extends RunsInvokePayload {
|
|
|
37
37
|
* afterwards using the `client.runs.listEvents()` method.
|
|
38
38
|
*/
|
|
39
39
|
streamMode?: StreamMode | Array<StreamMode>;
|
|
40
|
+
/**
|
|
41
|
+
* Pass one or more feedbackKeys if you want to request short-lived signed URLs
|
|
42
|
+
* for submitting feedback to LangSmith with this key for this run.
|
|
43
|
+
*/
|
|
44
|
+
feedbackKeys?: string[];
|
|
40
45
|
}
|
|
41
46
|
export interface RunsCreatePayload extends RunsInvokePayload {
|
|
42
47
|
/**
|