@domu-ai/kiban-sdk 1.177.0 → 1.178.0

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.
@@ -522,11 +522,22 @@ export type InternalToolsPostBodyMessageToolCallsItem = {
522
522
  function: InternalToolsPostBodyMessageToolCallsItemFunction;
523
523
  [key: string]: unknown;
524
524
  };
525
+ export type InternalToolsPostBodyMessageArtifactMessagesItem = {
526
+ role: string;
527
+ message?: string;
528
+ content?: string;
529
+ [key: string]: unknown;
530
+ };
531
+ export type InternalToolsPostBodyMessageArtifact = {
532
+ messages?: InternalToolsPostBodyMessageArtifactMessagesItem[];
533
+ [key: string]: unknown;
534
+ };
525
535
  export type InternalToolsPostBodyMessage = {
526
536
  type: string;
527
537
  call?: InternalToolsPostBodyMessageCall;
528
538
  toolCallList?: InternalToolsPostBodyMessageToolCallListItem[];
529
539
  toolCalls?: InternalToolsPostBodyMessageToolCallsItem[];
540
+ artifact?: InternalToolsPostBodyMessageArtifact;
530
541
  [key: string]: unknown;
531
542
  };
532
543
  export type InternalToolsPostBody = {