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