@wix/auto_sdk_ai-gateway_generators 1.0.44 → 1.0.45

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.
@@ -1061,7 +1061,7 @@ interface V1ContentPart {
1061
1061
  thought?: boolean | null;
1062
1062
  /**
1063
1063
  * Optional. An opaque signature for the thought so it can be reused in subsequent requests. A base64-encoded string.
1064
- * @maxLength 1000000
1064
+ * @maxLength 10000000
1065
1065
  */
1066
1066
  thoughtSignature?: string | null;
1067
1067
  }
@@ -7062,6 +7062,11 @@ interface TextContent {
7062
7062
  * @maxLength 1000000
7063
7063
  */
7064
7064
  generatedText?: string | null;
7065
+ /**
7066
+ * Optional. An opaque signature for the thought so it can be reused in subsequent requests. A base64-encoded string.
7067
+ * @maxLength 10000000
7068
+ */
7069
+ thoughtSignature?: string | null;
7065
7070
  }
7066
7071
  interface MediaContent {
7067
7072
  /**
@@ -7074,6 +7079,11 @@ interface MediaContent {
7074
7079
  * @maxLength 5000
7075
7080
  */
7076
7081
  url?: string;
7082
+ /**
7083
+ * Optional. An opaque signature for the thought so it can be reused in subsequent requests. A base64-encoded string.
7084
+ * @maxLength 10000000
7085
+ */
7086
+ thoughtSignature?: string | null;
7077
7087
  }
7078
7088
  interface ThinkingTextContent {
7079
7089
  /**
@@ -7081,6 +7091,11 @@ interface ThinkingTextContent {
7081
7091
  * @maxLength 1000000
7082
7092
  */
7083
7093
  thoughtText?: string | null;
7094
+ /**
7095
+ * Optional. An opaque signature for the thought so it can be reused in subsequent requests. A base64-encoded string.
7096
+ * @maxLength 10000000
7097
+ */
7098
+ thoughtSignature?: string | null;
7084
7099
  }
7085
7100
  interface ToolUseContent {
7086
7101
  /**
@@ -7095,6 +7110,11 @@ interface ToolUseContent {
7095
7110
  name?: string;
7096
7111
  /** Tool use input */
7097
7112
  input?: Record<string, any> | null;
7113
+ /**
7114
+ * Optional. An opaque signature for the thought so it can be reused in subsequent requests. A base64-encoded string.
7115
+ * @maxLength 10000000
7116
+ */
7117
+ thoughtSignature?: string | null;
7098
7118
  }
7099
7119
  interface V1TokenUsage {
7100
7120
  /** Number of input tokens used in the request. */
@@ -7437,7 +7457,7 @@ interface CandidateContentPart {
7437
7457
  thought?: boolean | null;
7438
7458
  /**
7439
7459
  * Optional. An opaque signature for the thought so it can be reused in subsequent requests. A base64-encoded string.
7440
- * @maxLength 1000000
7460
+ * @maxLength 10000000
7441
7461
  */
7442
7462
  thoughtSignature?: string | null;
7443
7463
  }