@wix/auto_sdk_ai-gateway_generators 1.0.44 → 1.0.46

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
  }
@@ -5548,10 +5548,13 @@ declare enum V1ResponsesModel {
5548
5548
  GPT_5_1_2025_11_13 = "GPT_5_1_2025_11_13",
5549
5549
  GPT_5_1_CODEX = "GPT_5_1_CODEX",
5550
5550
  GPT_5_1_CODEX_MINI = "GPT_5_1_CODEX_MINI",
5551
- GPT_EXP_RESPONSES = "GPT_EXP_RESPONSES"
5551
+ GPT_EXP_RESPONSES = "GPT_EXP_RESPONSES",
5552
+ GPT_EXP_RESPONSES_2 = "GPT_EXP_RESPONSES_2",
5553
+ GPT_EXP_RESPONSES_3 = "GPT_EXP_RESPONSES_3",
5554
+ GPT_5_1_CODEX_MAX = "GPT_5_1_CODEX_MAX"
5552
5555
  }
5553
5556
  /** @enumType */
5554
- 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';
5557
+ 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';
5555
5558
  interface V1ResponsesInputItem extends V1ResponsesInputItemItemOneOf {
5556
5559
  /**
5557
5560
  * A message input to the model with a role indicating instruction following hierarchy.
@@ -7062,6 +7065,11 @@ interface TextContent {
7062
7065
  * @maxLength 1000000
7063
7066
  */
7064
7067
  generatedText?: string | null;
7068
+ /**
7069
+ * Optional. An opaque signature for the thought so it can be reused in subsequent requests. A base64-encoded string.
7070
+ * @maxLength 10000000
7071
+ */
7072
+ thoughtSignature?: string | null;
7065
7073
  }
7066
7074
  interface MediaContent {
7067
7075
  /**
@@ -7074,6 +7082,11 @@ interface MediaContent {
7074
7082
  * @maxLength 5000
7075
7083
  */
7076
7084
  url?: string;
7085
+ /**
7086
+ * Optional. An opaque signature for the thought so it can be reused in subsequent requests. A base64-encoded string.
7087
+ * @maxLength 10000000
7088
+ */
7089
+ thoughtSignature?: string | null;
7077
7090
  }
7078
7091
  interface ThinkingTextContent {
7079
7092
  /**
@@ -7081,6 +7094,11 @@ interface ThinkingTextContent {
7081
7094
  * @maxLength 1000000
7082
7095
  */
7083
7096
  thoughtText?: string | null;
7097
+ /**
7098
+ * Optional. An opaque signature for the thought so it can be reused in subsequent requests. A base64-encoded string.
7099
+ * @maxLength 10000000
7100
+ */
7101
+ thoughtSignature?: string | null;
7084
7102
  }
7085
7103
  interface ToolUseContent {
7086
7104
  /**
@@ -7095,6 +7113,11 @@ interface ToolUseContent {
7095
7113
  name?: string;
7096
7114
  /** Tool use input */
7097
7115
  input?: Record<string, any> | null;
7116
+ /**
7117
+ * Optional. An opaque signature for the thought so it can be reused in subsequent requests. A base64-encoded string.
7118
+ * @maxLength 10000000
7119
+ */
7120
+ thoughtSignature?: string | null;
7098
7121
  }
7099
7122
  interface V1TokenUsage {
7100
7123
  /** Number of input tokens used in the request. */
@@ -7437,7 +7460,7 @@ interface CandidateContentPart {
7437
7460
  thought?: boolean | null;
7438
7461
  /**
7439
7462
  * Optional. An opaque signature for the thought so it can be reused in subsequent requests. A base64-encoded string.
7440
- * @maxLength 1000000
7463
+ * @maxLength 10000000
7441
7464
  */
7442
7465
  thoughtSignature?: string | null;
7443
7466
  }
@@ -3770,6 +3770,9 @@ var V1ResponsesModel = /* @__PURE__ */ ((V1ResponsesModel2) => {
3770
3770
  V1ResponsesModel2["GPT_5_1_CODEX"] = "GPT_5_1_CODEX";
3771
3771
  V1ResponsesModel2["GPT_5_1_CODEX_MINI"] = "GPT_5_1_CODEX_MINI";
3772
3772
  V1ResponsesModel2["GPT_EXP_RESPONSES"] = "GPT_EXP_RESPONSES";
3773
+ V1ResponsesModel2["GPT_EXP_RESPONSES_2"] = "GPT_EXP_RESPONSES_2";
3774
+ V1ResponsesModel2["GPT_EXP_RESPONSES_3"] = "GPT_EXP_RESPONSES_3";
3775
+ V1ResponsesModel2["GPT_5_1_CODEX_MAX"] = "GPT_5_1_CODEX_MAX";
3773
3776
  return V1ResponsesModel2;
3774
3777
  })(V1ResponsesModel || {});
3775
3778
  var ResponsesInputMessageResponsesMessageRole = /* @__PURE__ */ ((ResponsesInputMessageResponsesMessageRole2) => {