Compare commits

...

4 Commits
v0.1.2 ... main

Author SHA1 Message Date
Dave Horton
6f39ad2e2e 0.1.4 2026-03-17 21:07:30 -04:00
Dave Horton
66b63d8912 stt and tts are not required in pipeline because they can be defined at the application level 2026-03-17 21:07:18 -04:00
Dave Horton
de5a2fdd1c 0.1.3 2026-03-17 17:47:20 -04:00
Dave Horton
8cb79d47cc modifications to pipeline verb (#130) 2026-03-17 17:46:55 -04:00
3 changed files with 11 additions and 20 deletions

4
package-lock.json generated
View File

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

View File

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

View File

@@ -1359,32 +1359,23 @@
"id": "string",
"stt": "#recognizer",
"tts": "#synthesizer",
"vad": "#vad",
"turnDetection": "#turnDetectionPipeline",
"llm": "#llm",
"preflightLlm": "boolean",
"turnDetection": "string|object",
"bargeIn": "#bargeInPipeline",
"actionHook": "object|string",
"eventHook": "object|string",
"toolHook": "object|string"
},
"required": [
"stt",
"llm",
"tts"
"llm"
]
},
"turnDetectionPipeline": {
"bargeInPipeline": {
"properties": {
"vendor": {
"type": "string",
"enum": ["krisp"]
},
"threshold": "number",
"eagerEotThreshold": "number"
},
"required": [
"vendor"
]
"enable": "boolean",
"minSpeechDuration": "number",
"sticky": "boolean"
}
},
"noiseIsolation" : {
"properties": {