@wix/auto_sdk_ai-gateway_prompts 1.0.32 → 1.0.33

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.
@@ -188,6 +188,11 @@ interface TextContent {
188
188
  * @maxLength 1000000
189
189
  */
190
190
  generatedText?: string | null;
191
+ /**
192
+ * Optional. An opaque signature for the thought so it can be reused in subsequent requests. A base64-encoded string.
193
+ * @maxLength 10000000
194
+ */
195
+ thoughtSignature?: string | null;
191
196
  }
192
197
  interface MediaContent {
193
198
  /**
@@ -200,6 +205,11 @@ interface MediaContent {
200
205
  * @maxLength 5000
201
206
  */
202
207
  url?: string;
208
+ /**
209
+ * Optional. An opaque signature for the thought so it can be reused in subsequent requests. A base64-encoded string.
210
+ * @maxLength 10000000
211
+ */
212
+ thoughtSignature?: string | null;
203
213
  }
204
214
  interface ThinkingTextContent {
205
215
  /**
@@ -207,6 +217,11 @@ interface ThinkingTextContent {
207
217
  * @maxLength 1000000
208
218
  */
209
219
  thoughtText?: string | null;
220
+ /**
221
+ * Optional. An opaque signature for the thought so it can be reused in subsequent requests. A base64-encoded string.
222
+ * @maxLength 10000000
223
+ */
224
+ thoughtSignature?: string | null;
210
225
  }
211
226
  interface ToolUseContent {
212
227
  /**
@@ -221,6 +236,11 @@ interface ToolUseContent {
221
236
  name?: string;
222
237
  /** Tool use input */
223
238
  input?: Record<string, any> | null;
239
+ /**
240
+ * Optional. An opaque signature for the thought so it can be reused in subsequent requests. A base64-encoded string.
241
+ * @maxLength 10000000
242
+ */
243
+ thoughtSignature?: string | null;
224
244
  }
225
245
  interface V1TokenUsage {
226
246
  /** Number of input tokens used in the request. */
@@ -944,7 +964,7 @@ interface CandidateContentPart {
944
964
  thought?: boolean | null;
945
965
  /**
946
966
  * Optional. An opaque signature for the thought so it can be reused in subsequent requests. A base64-encoded string.
947
- * @maxLength 1000000
967
+ * @maxLength 10000000
948
968
  */
949
969
  thoughtSignature?: string | null;
950
970
  }
@@ -4961,7 +4981,7 @@ interface V1ContentPart {
4961
4981
  thought?: boolean | null;
4962
4982
  /**
4963
4983
  * Optional. An opaque signature for the thought so it can be reused in subsequent requests. A base64-encoded string.
4964
- * @maxLength 1000000
4984
+ * @maxLength 10000000
4965
4985
  */
4966
4986
  thoughtSignature?: string | null;
4967
4987
  }