@smartytalent/mcp-tools 0.1.33-dev.57 → 0.1.33-dev.59
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/tools.json +16 -1
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -15422,9 +15422,24 @@
|
|
|
15422
15422
|
"title": "MeetingAiSessionSettingsSchema",
|
|
15423
15423
|
"type": "object",
|
|
15424
15424
|
"properties": {
|
|
15425
|
+
"mode": {
|
|
15426
|
+
"type": "string",
|
|
15427
|
+
"enum": [
|
|
15428
|
+
"assistant",
|
|
15429
|
+
"assistant-openai",
|
|
15430
|
+
"transcription",
|
|
15431
|
+
"translator-openai"
|
|
15432
|
+
],
|
|
15433
|
+
"default": "assistant",
|
|
15434
|
+
"description": "Picks the provider + session.type baked into the ephemeral\ntoken.\n'assistant' = Azure eu00, sm-gpt-realtime-1.5,\n session.type=realtime (browser-side Boe).\n'assistant-openai' = OpenAI direct, gpt-realtime-2,\n session.type=realtime. Same FE wiring as 'assistant', just\n routed through OpenAI's GA realtime model instead of\n Azure's 1.5 fork. Pick per-call.\n'transcription' = Azure eu01, sm-gpt-realtime-whisper,\n session.type=transcription (live captions, audio-in /\n text-out only).\n'translator-openai' = OpenAI direct, gpt-realtime-translate,\n session.type=translation (audio-in, translated audio +\n source-language transcript fanned out on data channel).\n Requires targetLanguage."
|
|
15435
|
+
},
|
|
15425
15436
|
"language": {
|
|
15426
15437
|
"type": "string",
|
|
15427
|
-
"description": "Reply language for Boe's assistant behaviour (e.g. English)"
|
|
15438
|
+
"description": "Reply language for Boe's assistant behaviour (e.g. English). Only applies when mode=assistant."
|
|
15439
|
+
},
|
|
15440
|
+
"targetLanguage": {
|
|
15441
|
+
"type": "string",
|
|
15442
|
+
"description": "BCP-47 code for the language the translator should produce (e.g. 'pl', 'es', 'en'). Required when mode=translator-openai; ignored otherwise. Defaults to 'en' if omitted."
|
|
15428
15443
|
}
|
|
15429
15444
|
}
|
|
15430
15445
|
}
|