@langchain/langgraph-sdk 0.0.83 → 0.0.84
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.messages.d.ts +8 -0
- package/package.json +1 -1
package/dist/types.messages.d.ts
CHANGED
|
@@ -66,6 +66,14 @@ export type ToolMessage = {
|
|
|
66
66
|
tool_call_id: string;
|
|
67
67
|
additional_kwargs?: MessageAdditionalKwargs | undefined;
|
|
68
68
|
response_metadata?: Record<string, unknown> | undefined;
|
|
69
|
+
/**
|
|
70
|
+
* Artifact of the Tool execution which is not meant to be sent to the model.
|
|
71
|
+
*
|
|
72
|
+
* Should only be specified if it is different from the message content, e.g. if only
|
|
73
|
+
* a subset of the full tool output is being passed as message content but the full
|
|
74
|
+
* output is needed in other parts of the code.
|
|
75
|
+
*/
|
|
76
|
+
artifact?: any;
|
|
69
77
|
};
|
|
70
78
|
export type SystemMessage = {
|
|
71
79
|
type: "system";
|