@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.
- package/dist/expo/index.cjs +1 -1
- package/dist/expo/index.mjs +1 -1
- package/dist/react/index.cjs +856 -115
- package/dist/react/index.d.mts +697 -31
- package/dist/react/index.d.ts +697 -31
- package/dist/react/index.mjs +857 -112
- package/package.json +1 -1
package/dist/expo/index.cjs
CHANGED
|
@@ -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
|
});
|
package/dist/expo/index.mjs
CHANGED
|
@@ -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
|
});
|