@smartytalent/openai-tools 0.1.33-dev.58 → 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 +8 -2
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -14966,14 +14966,20 @@
|
|
|
14966
14966
|
"type": "string",
|
|
14967
14967
|
"enum": [
|
|
14968
14968
|
"assistant",
|
|
14969
|
-
"
|
|
14969
|
+
"assistant-openai",
|
|
14970
|
+
"transcription",
|
|
14971
|
+
"translator-openai"
|
|
14970
14972
|
],
|
|
14971
14973
|
"default": "assistant",
|
|
14972
|
-
"description": "Picks the
|
|
14974
|
+
"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."
|
|
14973
14975
|
},
|
|
14974
14976
|
"language": {
|
|
14975
14977
|
"type": "string",
|
|
14976
14978
|
"description": "Reply language for Boe's assistant behaviour (e.g. English). Only applies when mode=assistant."
|
|
14979
|
+
},
|
|
14980
|
+
"targetLanguage": {
|
|
14981
|
+
"type": "string",
|
|
14982
|
+
"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."
|
|
14977
14983
|
}
|
|
14978
14984
|
}
|
|
14979
14985
|
}
|