@jambonz/schema 0.3.4 → 0.3.5
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 +1 -1
- package/verbs/agent.schema.json +5 -2
package/package.json
CHANGED
package/verbs/agent.schema.json
CHANGED
|
@@ -22,8 +22,11 @@
|
|
|
22
22
|
"description": "Text-to-speech configuration for the agent."
|
|
23
23
|
},
|
|
24
24
|
"autoLockLanguage": {
|
|
25
|
-
"
|
|
26
|
-
|
|
25
|
+
"oneOf": [
|
|
26
|
+
{ "type": "boolean" },
|
|
27
|
+
{ "type": "string", "enum": ["always"] }
|
|
28
|
+
],
|
|
29
|
+
"description": "When using Deepgram Flux Multilingual, automatically adjust STT language hints and switch TTS voice based on detected language. Values: false (disabled), true (lock on first utterance), 'always' (continuously adapt on every turn). Default: false.",
|
|
27
30
|
"default": false
|
|
28
31
|
},
|
|
29
32
|
"languageConfig": {
|