Compare commits

...

18 Commits

Author SHA1 Message Date
Dave Horton
3369517364 0.1.9 2026-04-02 09:07:23 -04:00
Dave Horton
aedbbb028f add speechmaticsOptions.profile 2026-04-02 09:07:18 -04:00
Dave Horton
9d426de535 0.1.8 2026-04-01 13:06:17 -04:00
Dave Horton
49bce96c82 add mcpServers to pipeline 2026-04-01 13:06:11 -04:00
Dave Horton
0bb1313b5b 0.1.7 2026-04-01 12:36:22 -04:00
Dave Horton
f92c3429d2 add noiseIsolation to pipeline verb 2026-04-01 12:36:11 -04:00
Dave Horton
bb21d7d71f 0.1.6 2026-03-26 14:38:16 -04:00
Dave Horton
d0f77421fe add config.trackTtsPlayout to track what is actually spoken (only available for elevenlabs) 2026-03-26 14:38:08 -04:00
Dave Horton
161695ed43 0.1.5 2026-03-23 15:29:09 -04:00
Dave Horton
b46cfe0c55 adding greeting and earlyGeneration properties to pipeline 2026-03-23 15:29:03 -04:00
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
Dave Horton
11a0dce5ba 0.1.2 2026-03-15 21:32:54 -04:00
Dave Horton
ecf59041c5 add autogeneratePrompt to recognizer, new assemblyai v3 options 2026-03-15 21:32:54 -04:00
Dave Horton
abcb3ffa5d 0.1.1 2026-03-15 19:53:53 -04:00
Dave Horton
f5e7adcf66 update assemblyai 2026-03-15 19:53:36 -04:00
3 changed files with 45 additions and 21 deletions

4
package-lock.json generated
View File

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

View File

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

View File

@@ -77,6 +77,7 @@
"earlyMedia": "boolean",
"autoStreamTts": "boolean",
"disableTtsCache": "boolean",
"trackTtsPlayout": "boolean",
"noiseIsolation": "#noiseIsolation",
"turnTaking": "#turnTaking"
},
@@ -663,6 +664,7 @@
"fallbackLabel": "string",
"fallbackLanguage": "string",
"vad": "#vad",
"autogeneratePrompt": "boolean",
"hints": "array",
"hintsBoost": "number",
"altLanguages": "array",
@@ -1048,6 +1050,16 @@
},
"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"
@@ -1211,10 +1223,17 @@
"v3"
]
},
"speechModel": "string",
"formatTurns": "boolean",
"endOfTurnConfidenceThreshold": "number",
"minEndOfTurnSilenceWhenConfident": "number",
"maxTurnSilence": "number"
"maxTurnSilence": "number",
"minTurnSilence": "number",
"keyterms": "array",
"prompt": "string",
"languageDetection": "boolean",
"vadThreshold": "number",
"inactivityTimeout": "number"
}
},
"resource": {
@@ -1351,32 +1370,37 @@
"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"
"toolHook": "object|string",
"greeting": "boolean",
"earlyGeneration": "boolean",
"noiseIsolation": "string|#noiseIsolationPipeline",
"mcpServers": ["#mcpServer"]
},
"required": [
"stt",
"llm",
"tts"
"llm"
]
},
"turnDetectionPipeline": {
"bargeInPipeline": {
"properties": {
"vendor": {
"type": "string",
"enum": ["krisp"]
"enable": "boolean",
"minSpeechDuration": "number",
"sticky": "boolean"
}
},
"noiseIsolationPipeline": {
"properties": {
"mode": "string",
"level": "number",
"direction": {
"enum": ["read", "write"]
},
"threshold": "number",
"eagerEotThreshold": "number"
},
"required": [
"vendor"
]
"model": "string"
}
},
"noiseIsolation" : {
"properties": {