@absolutejs/voice-deepgram 0.0.20-beta.96 → 0.0.20-beta.97
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/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -94,7 +94,7 @@ var collectLexiconTerms = (options) => (options.lexicon ?? []).flatMap((entry) =
|
|
|
94
94
|
]);
|
|
95
95
|
var normalizeKeyterms = (value) => value === undefined ? [] : Array.isArray(value) ? value : [value];
|
|
96
96
|
var MAX_KEYTERM_TOKEN_BUDGET = 450;
|
|
97
|
-
var MAX_KEYTERM_COUNT =
|
|
97
|
+
var MAX_KEYTERM_COUNT = 48;
|
|
98
98
|
var MAX_KEYTERM_LENGTH = 48;
|
|
99
99
|
var estimateKeytermTokens = (term) => Math.max(1, Math.ceil(term.trim().length / 4));
|
|
100
100
|
var countScripts = (value) => {
|