@reverbia/sdk 1.0.0-next.20251218224340 → 1.0.0-next.20251219092050

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.
@@ -854,7 +854,7 @@ function useChatStorage(options) {
854
854
  conversationId: convId,
855
855
  role: "assistant",
856
856
  content: assistantContent,
857
- model: responseData.model,
857
+ model: responseData.model || model,
858
858
  usage: convertUsageToStored(responseData.usage),
859
859
  responseDuration
860
860
  });
@@ -818,7 +818,7 @@ function useChatStorage(options) {
818
818
  conversationId: convId,
819
819
  role: "assistant",
820
820
  content: assistantContent,
821
- model: responseData.model,
821
+ model: responseData.model || model,
822
822
  usage: convertUsageToStored(responseData.usage),
823
823
  responseDuration
824
824
  });