@ax-llm/ax 14.0.41 → 14.0.43

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.
package/index.d.cts CHANGED
@@ -387,6 +387,11 @@ type AxChatRequest<TModel = string> = {
387
387
  params?: string | object;
388
388
  };
389
389
  }[];
390
+ thoughtBlock?: {
391
+ data: string;
392
+ signature?: string;
393
+ encrypted?: boolean;
394
+ };
390
395
  cache?: boolean;
391
396
  } | {
392
397
  role: 'function';
@@ -1020,6 +1025,11 @@ declare class AxMemory implements AxAIMemory {
1020
1025
  params?: string | object;
1021
1026
  };
1022
1027
  }[];
1028
+ thoughtBlock?: {
1029
+ data: string;
1030
+ signature?: string;
1031
+ encrypted?: boolean;
1032
+ };
1023
1033
  cache?: boolean;
1024
1034
  } | {
1025
1035
  role: "function";
@@ -3673,7 +3683,7 @@ type AxAIGoogleGeminiContent = {
3673
3683
  };
3674
3684
  type AxAIGoogleGeminiContentPart = {
3675
3685
  thought?: boolean;
3676
- thoughtSignature?: string;
3686
+ thought_signature?: string;
3677
3687
  metadata?: {
3678
3688
  videoMetadata: object;
3679
3689
  };
package/index.d.ts CHANGED
@@ -387,6 +387,11 @@ type AxChatRequest<TModel = string> = {
387
387
  params?: string | object;
388
388
  };
389
389
  }[];
390
+ thoughtBlock?: {
391
+ data: string;
392
+ signature?: string;
393
+ encrypted?: boolean;
394
+ };
390
395
  cache?: boolean;
391
396
  } | {
392
397
  role: 'function';
@@ -1020,6 +1025,11 @@ declare class AxMemory implements AxAIMemory {
1020
1025
  params?: string | object;
1021
1026
  };
1022
1027
  }[];
1028
+ thoughtBlock?: {
1029
+ data: string;
1030
+ signature?: string;
1031
+ encrypted?: boolean;
1032
+ };
1023
1033
  cache?: boolean;
1024
1034
  } | {
1025
1035
  role: "function";
@@ -3673,7 +3683,7 @@ type AxAIGoogleGeminiContent = {
3673
3683
  };
3674
3684
  type AxAIGoogleGeminiContentPart = {
3675
3685
  thought?: boolean;
3676
- thoughtSignature?: string;
3686
+ thought_signature?: string;
3677
3687
  metadata?: {
3678
3688
  videoMetadata: object;
3679
3689
  };