@langchain/langgraph-sdk 0.0.1-rc.4 → 0.0.1-rc.5
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/types.d.mts +5 -0
- package/package.json +1 -1
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
|
/**
|