@smartytalent/mcp-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.
Files changed (2) hide show
  1. package/dist/tools.json +8 -2
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -15426,14 +15426,20 @@
15426
15426
  "type": "string",
15427
15427
  "enum": [
15428
15428
  "assistant",
15429
- "transcription"
15429
+ "assistant-openai",
15430
+ "transcription",
15431
+ "translator-openai"
15430
15432
  ],
15431
15433
  "default": "assistant",
15432
- "description": "Picks the Azure realtime resource + session.type baked into the\nephemeral token. 'assistant' = eu00, sm-gpt-realtime-1.5,\nsession.type=realtime (browser-side Boe). 'transcription' = eu01,\nsm-gpt-realtime-whisper, session.type=transcription (live captions,\naudio-in / text-out only)."
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."
15433
15435
  },
15434
15436
  "language": {
15435
15437
  "type": "string",
15436
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."
15437
15443
  }
15438
15444
  }
15439
15445
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/mcp-tools",
3
- "version": "0.1.33-dev.58",
3
+ "version": "0.1.33-dev.59",
4
4
  "description": "MCP tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",