@adminforth/agent 1.43.8 → 1.43.10
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/build.log
CHANGED
|
@@ -60,5 +60,5 @@ custom/speech_recognition_frontend/voiceActivityDetection.ts
|
|
|
60
60
|
custom/speech_recognition_frontend/types/
|
|
61
61
|
custom/speech_recognition_frontend/types/voice-activity-detection.d.ts
|
|
62
62
|
|
|
63
|
-
sent 1,663,
|
|
64
|
-
total size is 1,659,
|
|
63
|
+
sent 1,663,055 bytes received 883 bytes 3,327,876.00 bytes/sec
|
|
64
|
+
total size is 1,659,096 speedup is 1.00
|
package/custom/ChatSurface.vue
CHANGED
|
@@ -173,7 +173,9 @@
|
|
|
173
173
|
</button>
|
|
174
174
|
</div>
|
|
175
175
|
</div>
|
|
176
|
-
<MicrophoneButton
|
|
176
|
+
<MicrophoneButton
|
|
177
|
+
v-if="props.meta.hasAudioAdapter"
|
|
178
|
+
/>
|
|
177
179
|
<template v-if="!agentStore.isAudioChatMode">
|
|
178
180
|
<Button
|
|
179
181
|
v-if="!agentStore.isResponseInProgress"
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div
|
|
2
|
+
<div
|
|
3
|
+
v-show="!agentStore.isResponseInProgress || isAudioChatMode"
|
|
3
4
|
class="absolute bottom-2 flex items-center justify-center z-10 gap-4"
|
|
4
5
|
:class="[!agentStore.isAudioChatMode ? 'right-16': agentStore.isMobile ? 'right-1/2 translate-x-1/2' : 'right-1/2 translate-x-1/2']"
|
|
5
6
|
>
|
|
@@ -173,7 +173,9 @@
|
|
|
173
173
|
</button>
|
|
174
174
|
</div>
|
|
175
175
|
</div>
|
|
176
|
-
<MicrophoneButton
|
|
176
|
+
<MicrophoneButton
|
|
177
|
+
v-if="props.meta.hasAudioAdapter"
|
|
178
|
+
/>
|
|
177
179
|
<template v-if="!agentStore.isAudioChatMode">
|
|
178
180
|
<Button
|
|
179
181
|
v-if="!agentStore.isResponseInProgress"
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div
|
|
2
|
+
<div
|
|
3
|
+
v-show="!agentStore.isResponseInProgress || isAudioChatMode"
|
|
3
4
|
class="absolute bottom-2 flex items-center justify-center z-10 gap-4"
|
|
4
5
|
:class="[!agentStore.isAudioChatMode ? 'right-16': agentStore.isMobile ? 'right-1/2 translate-x-1/2' : 'right-1/2 translate-x-1/2']"
|
|
5
6
|
>
|