@wix/auto_sdk_ai-gateway_generators 1.0.86 → 1.0.88

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.
@@ -7396,6 +7396,11 @@ interface Fireworks_proxyV1ChatCompletionMessage {
7396
7396
  * @maxSize 5
7397
7397
  */
7398
7398
  contentParts?: Fireworks_proxyV1ChatCompletionMessageContentPart[];
7399
+ /**
7400
+ * Model's chain-of-thought / reasoning trace, populated by reasoning-capable models (e.g. Kimi K2, DeepSeek R1).
7401
+ * @maxLength 1000000000
7402
+ */
7403
+ reasoningContent?: string | null;
7399
7404
  }
7400
7405
  interface ChatCompletionMessageFunctionWithArgs {
7401
7406
  /**
@@ -7875,7 +7880,7 @@ interface GatewayContentBlockTypeOneOf {
7875
7880
  interface TextContent {
7876
7881
  /**
7877
7882
  * Generated text
7878
- * @maxLength 1000000
7883
+ * @maxLength 10000000
7879
7884
  */
7880
7885
  generatedText?: string | null;
7881
7886
  /**
@@ -10754,6 +10759,11 @@ interface ChunkChoiceChunkDelta {
10754
10759
  * @maxSize 100
10755
10760
  */
10756
10761
  toolCalls?: ChatCompletionMessageToolCall[];
10762
+ /**
10763
+ * Streamed delta of the model's reasoning content. Concatenate across chunks to reconstruct the full trace.
10764
+ * @maxLength 1000
10765
+ */
10766
+ reasoningContent?: string | null;
10757
10767
  }
10758
10768
  interface ChatCompletionChunkChunkChoice {
10759
10769
  /** A chat completion delta generated by streamed model responses */