@wix/auto_sdk_ai-gateway_generators 1.0.86 → 1.0.87

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.
@@ -7393,6 +7393,11 @@ interface Fireworks_proxyV1ChatCompletionMessage {
7393
7393
  * @maxSize 5
7394
7394
  */
7395
7395
  contentParts?: Fireworks_proxyV1ChatCompletionMessageContentPart[];
7396
+ /**
7397
+ * Model's chain-of-thought / reasoning trace, populated by reasoning-capable models (e.g. Kimi K2, DeepSeek R1).
7398
+ * @maxLength 1000000000
7399
+ */
7400
+ reasoningContent?: string | null;
7396
7401
  }
7397
7402
  interface ChatCompletionMessageFunctionWithArgs {
7398
7403
  /**
@@ -10751,6 +10756,11 @@ interface ChunkChoiceChunkDelta {
10751
10756
  * @maxSize 100
10752
10757
  */
10753
10758
  toolCalls?: ChatCompletionMessageToolCall[];
10759
+ /**
10760
+ * Streamed delta of the model's reasoning content. Concatenate across chunks to reconstruct the full trace.
10761
+ * @maxLength 1000
10762
+ */
10763
+ reasoningContent?: string | null;
10754
10764
  }
10755
10765
  interface ChatCompletionChunkChunkChoice {
10756
10766
  /** A chat completion delta generated by streamed model responses */