Compare commits

..

3 Commits

Author SHA1 Message Date
Hoan HL
faa6db9e74 wip 2026-03-16 17:42:48 +07:00
Hoan HL
554354d3c0 Merge branch 'main' of https://github.com/jambonz/verb-specifications into fix/gh_14 2026-03-16 17:00:01 +07:00
Hoan HL
b8523db008 wip 2026-03-16 16:59:42 +07:00
3 changed files with 32 additions and 36 deletions

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "@jambonz/verb-specifications",
"version": "0.1.9",
"version": "0.1.2",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@jambonz/verb-specifications",
"version": "0.1.9",
"version": "0.1.2",
"license": "MIT",
"dependencies": {
"debug": "^4.3.4",

View File

@@ -1,6 +1,6 @@
{
"name": "@jambonz/verb-specifications",
"version": "0.1.9",
"version": "0.1.2",
"description": "Jambonz Verb Specification Utilities",
"main": "index.js",
"scripts": {

View File

@@ -77,7 +77,6 @@
"earlyMedia": "boolean",
"autoStreamTts": "boolean",
"disableTtsCache": "boolean",
"trackTtsPlayout": "boolean",
"noiseIsolation": "#noiseIsolation",
"turnTaking": "#turnTaking"
},
@@ -1050,16 +1049,6 @@
},
"speechmaticsOptions": {
"properties": {
"host": "string",
"profile": {
"type": "string",
"enum": [
"adaptive",
"agile",
"smart",
"external"
]
},
"transcription_config": "#sm_transcriptionConfig",
"translation_config": "#sm_translationConfig",
"audio_events_config_config": "#sm_audioEventsConfig"
@@ -1370,37 +1359,44 @@
"id": "string",
"stt": "#recognizer",
"tts": "#synthesizer",
"vad": "#vad",
"turnDetection": "#turnDetectionPipeline",
"turnGate": "#turnGatePipeline",
"llm": "#llm",
"turnDetection": "string|object",
"bargeIn": "#bargeInPipeline",
"preflightLlm": "boolean",
"actionHook": "object|string",
"eventHook": "object|string",
"toolHook": "object|string",
"greeting": "boolean",
"earlyGeneration": "boolean",
"noiseIsolation": "string|#noiseIsolationPipeline",
"mcpServers": ["#mcpServer"]
"toolHook": "object|string"
},
"required": [
"llm"
"stt",
"llm",
"tts"
]
},
"bargeInPipeline": {
"turnDetectionPipeline": {
"properties": {
"enable": "boolean",
"minSpeechDuration": "number",
"sticky": "boolean"
}
},
"noiseIsolationPipeline": {
"properties": {
"mode": "string",
"level": "number",
"direction": {
"enum": ["read", "write"]
"vendor": {
"type": "string",
"enum": ["krisp"]
},
"model": "string"
}
"threshold": "number",
"eagerEotThreshold": "number"
},
"required": [
"vendor"
]
},
"turnGatePipeline": {
"properties": {
"enabled": "boolean",
"vendor": "string",
"model": "string",
"auth": "object"
},
"required": [
"enabled"
]
},
"noiseIsolation" : {
"properties": {