opik 1.8.14 → 1.8.16

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.
@@ -2017,9 +2017,10 @@ declare const AssistantMessageRole: {
2017
2017
  interface AssistantMessage {
2018
2018
  role?: AssistantMessageRole;
2019
2019
  content?: string;
2020
+ reasoningContent?: string;
2020
2021
  name?: string;
2021
2022
  toolCalls?: ToolCall[];
2022
- refusal?: boolean;
2023
+ refusal?: string;
2023
2024
  functionCall?: FunctionCall;
2024
2025
  }
2025
2026
 
@@ -2062,6 +2063,7 @@ interface CompletionTokensDetails {
2062
2063
  interface Delta {
2063
2064
  role?: string;
2064
2065
  content?: string;
2066
+ reasoningContent?: string;
2065
2067
  toolCalls?: ToolCall[];
2066
2068
  functionCall?: FunctionCall;
2067
2069
  }
@@ -2017,9 +2017,10 @@ declare const AssistantMessageRole: {
2017
2017
  interface AssistantMessage {
2018
2018
  role?: AssistantMessageRole;
2019
2019
  content?: string;
2020
+ reasoningContent?: string;
2020
2021
  name?: string;
2021
2022
  toolCalls?: ToolCall[];
2022
- refusal?: boolean;
2023
+ refusal?: string;
2023
2024
  functionCall?: FunctionCall;
2024
2025
  }
2025
2026
 
@@ -2062,6 +2063,7 @@ interface CompletionTokensDetails {
2062
2063
  interface Delta {
2063
2064
  role?: string;
2064
2065
  content?: string;
2066
+ reasoningContent?: string;
2065
2067
  toolCalls?: ToolCall[];
2066
2068
  functionCall?: FunctionCall;
2067
2069
  }