Skip to content

Commit f0878e6

Browse files
committed
added enablemicrophone parameter
1 parent 34fa6ff commit f0878e6

File tree

4 files changed

+49
-29
lines changed

4 files changed

+49
-29
lines changed

README.md

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,21 +79,37 @@ const props = defineProps({
7979
default: "SpecialInitPayLoadDoNotTouch",
8080
},
8181
zIndex: {
82+
type: Number,
83+
default: 1000,
84+
},
85+
width: {
86+
type: String,
87+
default: "364px",
88+
},
89+
height: {
8290
type: String,
83-
default: "1000",
91+
default: "620px",
8492
},
8593
asrChunk: {
8694
type: Number,
8795
default: 800,
8896
},
8997
asrLanguage: {
9098
type: String,
91-
default: "en",
99+
default: "none",
92100
},
93101
minimumSilentSecond: {
94102
type: Number,
95103
default: 1.5,
96104
},
105+
branding: {
106+
type: String,
107+
default: "Powered by Nous",
108+
},
109+
enableMicrophone: {
110+
type: Boolean,
111+
default: true,
112+
},
97113
});
98114
```
99115

0 commit comments

Comments
 (0)