@smartytalent/openai-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.
Files changed (2) hide show
  1. package/dist/tools.json +16 -1
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -14962,9 +14962,24 @@
14962
14962
  "title": "MeetingAiSessionSettingsSchema",
14963
14963
  "type": "object",
14964
14964
  "properties": {
14965
+ "mode": {
14966
+ "type": "string",
14967
+ "enum": [
14968
+ "assistant",
14969
+ "assistant-openai",
14970
+ "transcription",
14971
+ "translator-openai"
14972
+ ],
14973
+ "default": "assistant",
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."
14975
+ },
14965
14976
  "language": {
14966
14977
  "type": "string",
14967
- "description": "Reply language for Boe's assistant behaviour (e.g. English)"
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."
14968
14983
  }
14969
14984
  }
14970
14985
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/openai-tools",
3
- "version": "0.1.33-dev.57",
3
+ "version": "0.1.33-dev.59",
4
4
  "description": "OpenAI function/tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",