vorqard-ai-sdk 1.0.5 → 1.0.6
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/package.json +3 -5
- package/src/components/ChatComponents.js +4 -4
- package/src/components/UICards.js +599 -599
- package/src/components/VoiceInputPanel.js +180 -80
- package/src/hooks/useRealtimeVoice.js +16 -6
- package/src/screens/AIHealthChatScreen.js +34 -6
- package/src/screens/AIVoiceAssistantScreen.js +4 -168
- package/src/hooks/useVoiceChat.js +0 -373
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vorqard-ai-sdk",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"description": "Standalone React Native SDK for VORQARD AI Health Assistant and Report Analyzer",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"repository": {
|
|
@@ -19,9 +19,7 @@
|
|
|
19
19
|
"react-native-linear-gradient": "*",
|
|
20
20
|
"react-native-safe-area-context": "*",
|
|
21
21
|
"react-native-vector-icons": "*",
|
|
22
|
-
"react-native-webrtc": "*"
|
|
23
|
-
"expo-av": "*",
|
|
24
|
-
"react-native-live-audio-stream": "*"
|
|
22
|
+
"react-native-webrtc": "*"
|
|
25
23
|
},
|
|
26
24
|
"keywords": [
|
|
27
25
|
"vorqard",
|
|
@@ -32,4 +30,4 @@
|
|
|
32
30
|
],
|
|
33
31
|
"author": "VORQARD Developer",
|
|
34
32
|
"license": "Abhivorn Technologies"
|
|
35
|
-
}
|
|
33
|
+
}
|
|
@@ -233,11 +233,11 @@ export const InputPanel = ({ value = '', onChangeText, onSend, onVoicePress, loa
|
|
|
233
233
|
</TouchableOpacity>
|
|
234
234
|
)}
|
|
235
235
|
|
|
236
|
-
{!hasText && (
|
|
237
|
-
<
|
|
236
|
+
{/* {!hasText && (
|
|
237
|
+
<View style={styles.iconBtn}>
|
|
238
238
|
<Ionicons name="mic" size={20} color="#94A3B8" />
|
|
239
|
-
</
|
|
240
|
-
)}
|
|
239
|
+
</View>
|
|
240
|
+
)} */}
|
|
241
241
|
|
|
242
242
|
<TouchableOpacity
|
|
243
243
|
onPress={() => onSend(value)}
|