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