@wix/auto_sdk_ai-gateway_prompts 1.0.32 → 1.0.34

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.
@@ -191,6 +191,11 @@ interface TextContent {
191
191
  * @maxLength 1000000
192
192
  */
193
193
  generatedText?: string | null;
194
+ /**
195
+ * Optional. An opaque signature for the thought so it can be reused in subsequent requests. A base64-encoded string.
196
+ * @maxLength 10000000
197
+ */
198
+ thoughtSignature?: string | null;
194
199
  }
195
200
  interface MediaContent {
196
201
  /**
@@ -203,6 +208,11 @@ interface MediaContent {
203
208
  * @maxLength 5000
204
209
  */
205
210
  url?: string;
211
+ /**
212
+ * Optional. An opaque signature for the thought so it can be reused in subsequent requests. A base64-encoded string.
213
+ * @maxLength 10000000
214
+ */
215
+ thoughtSignature?: string | null;
206
216
  }
207
217
  interface ThinkingTextContent {
208
218
  /**
@@ -210,6 +220,11 @@ interface ThinkingTextContent {
210
220
  * @maxLength 1000000
211
221
  */
212
222
  thoughtText?: string | null;
223
+ /**
224
+ * Optional. An opaque signature for the thought so it can be reused in subsequent requests. A base64-encoded string.
225
+ * @maxLength 10000000
226
+ */
227
+ thoughtSignature?: string | null;
213
228
  }
214
229
  interface ToolUseContent {
215
230
  /**
@@ -224,6 +239,11 @@ interface ToolUseContent {
224
239
  name?: string;
225
240
  /** Tool use input */
226
241
  input?: Record<string, any> | null;
242
+ /**
243
+ * Optional. An opaque signature for the thought so it can be reused in subsequent requests. A base64-encoded string.
244
+ * @maxLength 10000000
245
+ */
246
+ thoughtSignature?: string | null;
227
247
  }
228
248
  interface V1TokenUsage {
229
249
  /** Number of input tokens used in the request. */
@@ -947,7 +967,7 @@ interface CandidateContentPart {
947
967
  thought?: boolean | null;
948
968
  /**
949
969
  * Optional. An opaque signature for the thought so it can be reused in subsequent requests. A base64-encoded string.
950
- * @maxLength 1000000
970
+ * @maxLength 10000000
951
971
  */
952
972
  thoughtSignature?: string | null;
953
973
  }
@@ -3438,10 +3458,13 @@ declare enum V1ResponsesModel {
3438
3458
  GPT_5_1_2025_11_13 = "GPT_5_1_2025_11_13",
3439
3459
  GPT_5_1_CODEX = "GPT_5_1_CODEX",
3440
3460
  GPT_5_1_CODEX_MINI = "GPT_5_1_CODEX_MINI",
3441
- GPT_EXP_RESPONSES = "GPT_EXP_RESPONSES"
3461
+ GPT_EXP_RESPONSES = "GPT_EXP_RESPONSES",
3462
+ GPT_EXP_RESPONSES_2 = "GPT_EXP_RESPONSES_2",
3463
+ GPT_EXP_RESPONSES_3 = "GPT_EXP_RESPONSES_3",
3464
+ GPT_5_1_CODEX_MAX = "GPT_5_1_CODEX_MAX"
3442
3465
  }
3443
3466
  /** @enumType */
3444
- type V1ResponsesModelWithLiterals = V1ResponsesModel | 'MODEL_UNSPECIFIED' | 'GPT_5_2025_08_07_RESPONSES' | 'GPT_5_MINI_2025_08_07_RESPONSES' | 'GPT_5_NANO_2025_08_07_RESPONSES' | 'O3_PRO_2025_06_10' | 'O3_DEEP_RESEARCH_2025_06_26' | 'GPT_5_CODEX' | 'GPT_5_1_2025_11_13' | 'GPT_5_1_CODEX' | 'GPT_5_1_CODEX_MINI' | 'GPT_EXP_RESPONSES';
3467
+ type V1ResponsesModelWithLiterals = V1ResponsesModel | 'MODEL_UNSPECIFIED' | 'GPT_5_2025_08_07_RESPONSES' | 'GPT_5_MINI_2025_08_07_RESPONSES' | 'GPT_5_NANO_2025_08_07_RESPONSES' | 'O3_PRO_2025_06_10' | 'O3_DEEP_RESEARCH_2025_06_26' | 'GPT_5_CODEX' | 'GPT_5_1_2025_11_13' | 'GPT_5_1_CODEX' | 'GPT_5_1_CODEX_MINI' | 'GPT_EXP_RESPONSES' | 'GPT_EXP_RESPONSES_2' | 'GPT_EXP_RESPONSES_3' | 'GPT_5_1_CODEX_MAX';
3445
3468
  interface V1ResponsesOutput extends V1ResponsesOutputOutputOneOf {
3446
3469
  /** An output message from the model. */
3447
3470
  outputMessage?: V1ResponsesOutputMessage;
@@ -4964,7 +4987,7 @@ interface V1ContentPart {
4964
4987
  thought?: boolean | null;
4965
4988
  /**
4966
4989
  * Optional. An opaque signature for the thought so it can be reused in subsequent requests. A base64-encoded string.
4967
- * @maxLength 1000000
4990
+ * @maxLength 10000000
4968
4991
  */
4969
4992
  thoughtSignature?: string | null;
4970
4993
  }
@@ -1113,6 +1113,9 @@ var V1ResponsesModel = /* @__PURE__ */ ((V1ResponsesModel2) => {
1113
1113
  V1ResponsesModel2["GPT_5_1_CODEX"] = "GPT_5_1_CODEX";
1114
1114
  V1ResponsesModel2["GPT_5_1_CODEX_MINI"] = "GPT_5_1_CODEX_MINI";
1115
1115
  V1ResponsesModel2["GPT_EXP_RESPONSES"] = "GPT_EXP_RESPONSES";
1116
+ V1ResponsesModel2["GPT_EXP_RESPONSES_2"] = "GPT_EXP_RESPONSES_2";
1117
+ V1ResponsesModel2["GPT_EXP_RESPONSES_3"] = "GPT_EXP_RESPONSES_3";
1118
+ V1ResponsesModel2["GPT_5_1_CODEX_MAX"] = "GPT_5_1_CODEX_MAX";
1116
1119
  return V1ResponsesModel2;
1117
1120
  })(V1ResponsesModel || {});
1118
1121
  var ResponsesModel = /* @__PURE__ */ ((ResponsesModel2) => {