@smartytalent/mcp-tools 0.1.33-dev.51 → 0.1.33-dev.53
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 +151 -0
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -6047,6 +6047,10 @@
|
|
|
6047
6047
|
],
|
|
6048
6048
|
"description": "Renderer hint derived from contentType + conversion outputs.\nSet by the file service after conversion. `unknown` for\ncontent types with no preview pipeline."
|
|
6049
6049
|
},
|
|
6050
|
+
"detectedLanguage": {
|
|
6051
|
+
"type": "string",
|
|
6052
|
+
"description": "BCP-47 code for the source content's primary language,\ndetected during AI extraction. Transcript language for\nvideo/audio, document body language for PDF/image.\nStable per-file. Drives the translation pipeline:\nAI extraction outputs canonical en-US, then the file AI\nLambda translates `summary` (and any future fields in\nFile.TRANSLATION_FIELDS) into the tenant's target locale.\nSource content (transcript / rawText) stays verbatim in\nthis language - we only translate AI-derived synthesis text."
|
|
6053
|
+
},
|
|
6050
6054
|
"sizeBytes": {
|
|
6051
6055
|
"type": "integer",
|
|
6052
6056
|
"description": "File size in bytes. Stable post-upload."
|
|
@@ -6230,6 +6234,10 @@
|
|
|
6230
6234
|
],
|
|
6231
6235
|
"description": "Renderer hint derived from contentType + conversion outputs.\nSet by the file service after conversion. `unknown` for\ncontent types with no preview pipeline."
|
|
6232
6236
|
},
|
|
6237
|
+
"detectedLanguage": {
|
|
6238
|
+
"type": "string",
|
|
6239
|
+
"description": "BCP-47 code for the source content's primary language,\ndetected during AI extraction. Transcript language for\nvideo/audio, document body language for PDF/image.\nStable per-file. Drives the translation pipeline:\nAI extraction outputs canonical en-US, then the file AI\nLambda translates `summary` (and any future fields in\nFile.TRANSLATION_FIELDS) into the tenant's target locale.\nSource content (transcript / rawText) stays verbatim in\nthis language - we only translate AI-derived synthesis text."
|
|
6240
|
+
},
|
|
6233
6241
|
"sizeBytes": {
|
|
6234
6242
|
"type": "integer",
|
|
6235
6243
|
"description": "File size in bytes. Stable post-upload."
|
|
@@ -15090,6 +15098,143 @@
|
|
|
15090
15098
|
"operationId": "meetingAiSessionOptions"
|
|
15091
15099
|
}
|
|
15092
15100
|
},
|
|
15101
|
+
{
|
|
15102
|
+
"name": "create_meeting_ai_attendee",
|
|
15103
|
+
"description": "Create Meeting AI Attendee",
|
|
15104
|
+
"inputSchema": {
|
|
15105
|
+
"title": "CreateMeetingAiAttendeeRequestBody",
|
|
15106
|
+
"type": "object",
|
|
15107
|
+
"required": [
|
|
15108
|
+
"data"
|
|
15109
|
+
],
|
|
15110
|
+
"properties": {
|
|
15111
|
+
"data": {
|
|
15112
|
+
"title": "CreateMeetingAiAttendeeRequestBodyData",
|
|
15113
|
+
"type": "object",
|
|
15114
|
+
"required": [
|
|
15115
|
+
"type",
|
|
15116
|
+
"attributes"
|
|
15117
|
+
],
|
|
15118
|
+
"properties": {
|
|
15119
|
+
"type": {
|
|
15120
|
+
"type": "string",
|
|
15121
|
+
"enum": [
|
|
15122
|
+
"ai-attendees"
|
|
15123
|
+
]
|
|
15124
|
+
},
|
|
15125
|
+
"attributes": {
|
|
15126
|
+
"title": "MeetingAiAttendeeSettingsSchema",
|
|
15127
|
+
"type": "object",
|
|
15128
|
+
"properties": {
|
|
15129
|
+
"mode": {
|
|
15130
|
+
"type": "string",
|
|
15131
|
+
"enum": [
|
|
15132
|
+
"assistant",
|
|
15133
|
+
"translator"
|
|
15134
|
+
],
|
|
15135
|
+
"default": "assistant"
|
|
15136
|
+
},
|
|
15137
|
+
"displayName": {
|
|
15138
|
+
"type": "string",
|
|
15139
|
+
"default": "Boe"
|
|
15140
|
+
},
|
|
15141
|
+
"voice": {
|
|
15142
|
+
"type": "string",
|
|
15143
|
+
"default": "alloy"
|
|
15144
|
+
},
|
|
15145
|
+
"language": {
|
|
15146
|
+
"type": "string",
|
|
15147
|
+
"description": "Reply language for assistant mode (e.g. English)"
|
|
15148
|
+
},
|
|
15149
|
+
"sourceLanguage": {
|
|
15150
|
+
"type": "string",
|
|
15151
|
+
"description": "Translator mode: source language (e.g. Polish)"
|
|
15152
|
+
},
|
|
15153
|
+
"targetLanguage": {
|
|
15154
|
+
"type": "string",
|
|
15155
|
+
"description": "Translator mode: target language (e.g. English)"
|
|
15156
|
+
},
|
|
15157
|
+
"persona": {
|
|
15158
|
+
"type": "string",
|
|
15159
|
+
"description": "Optional persona text appended to the base system prompt"
|
|
15160
|
+
}
|
|
15161
|
+
}
|
|
15162
|
+
}
|
|
15163
|
+
}
|
|
15164
|
+
}
|
|
15165
|
+
}
|
|
15166
|
+
},
|
|
15167
|
+
"_meta": {
|
|
15168
|
+
"method": "POST",
|
|
15169
|
+
"path": "/v1/meetings/{meetingId}/ai-attendees",
|
|
15170
|
+
"operationId": "createMeetingAiAttendee"
|
|
15171
|
+
}
|
|
15172
|
+
},
|
|
15173
|
+
{
|
|
15174
|
+
"name": "list_meeting_ai_attendees",
|
|
15175
|
+
"description": "List Meeting AI Attendees",
|
|
15176
|
+
"inputSchema": {
|
|
15177
|
+
"type": "object",
|
|
15178
|
+
"properties": {}
|
|
15179
|
+
},
|
|
15180
|
+
"_meta": {
|
|
15181
|
+
"method": "GET",
|
|
15182
|
+
"path": "/v1/meetings/{meetingId}/ai-attendees",
|
|
15183
|
+
"operationId": "listMeetingAiAttendees"
|
|
15184
|
+
}
|
|
15185
|
+
},
|
|
15186
|
+
{
|
|
15187
|
+
"name": "meeting_ai_attendees_options",
|
|
15188
|
+
"description": "Meeting AI Attendees Options",
|
|
15189
|
+
"inputSchema": {
|
|
15190
|
+
"type": "object",
|
|
15191
|
+
"properties": {}
|
|
15192
|
+
},
|
|
15193
|
+
"_meta": {
|
|
15194
|
+
"method": "OPTIONS",
|
|
15195
|
+
"path": "/v1/meetings/{meetingId}/ai-attendees",
|
|
15196
|
+
"operationId": "meetingAiAttendeesOptions"
|
|
15197
|
+
}
|
|
15198
|
+
},
|
|
15199
|
+
{
|
|
15200
|
+
"name": "show_meeting_ai_attendee",
|
|
15201
|
+
"description": "Show Meeting AI Attendee",
|
|
15202
|
+
"inputSchema": {
|
|
15203
|
+
"type": "object",
|
|
15204
|
+
"properties": {}
|
|
15205
|
+
},
|
|
15206
|
+
"_meta": {
|
|
15207
|
+
"method": "GET",
|
|
15208
|
+
"path": "/v1/meetings/{meetingId}/ai-attendees/{aiAttendeeId}",
|
|
15209
|
+
"operationId": "showMeetingAiAttendee"
|
|
15210
|
+
}
|
|
15211
|
+
},
|
|
15212
|
+
{
|
|
15213
|
+
"name": "delete_meeting_ai_attendee",
|
|
15214
|
+
"description": "Dismiss Meeting AI Attendee",
|
|
15215
|
+
"inputSchema": {
|
|
15216
|
+
"type": "object",
|
|
15217
|
+
"properties": {}
|
|
15218
|
+
},
|
|
15219
|
+
"_meta": {
|
|
15220
|
+
"method": "DELETE",
|
|
15221
|
+
"path": "/v1/meetings/{meetingId}/ai-attendees/{aiAttendeeId}",
|
|
15222
|
+
"operationId": "deleteMeetingAiAttendee"
|
|
15223
|
+
}
|
|
15224
|
+
},
|
|
15225
|
+
{
|
|
15226
|
+
"name": "meeting_ai_attendee_options",
|
|
15227
|
+
"description": "Meeting AI Attendee Options",
|
|
15228
|
+
"inputSchema": {
|
|
15229
|
+
"type": "object",
|
|
15230
|
+
"properties": {}
|
|
15231
|
+
},
|
|
15232
|
+
"_meta": {
|
|
15233
|
+
"method": "OPTIONS",
|
|
15234
|
+
"path": "/v1/meetings/{meetingId}/ai-attendees/{aiAttendeeId}",
|
|
15235
|
+
"operationId": "meetingAiAttendeeOptions"
|
|
15236
|
+
}
|
|
15237
|
+
},
|
|
15093
15238
|
{
|
|
15094
15239
|
"name": "show_meeting_lobby",
|
|
15095
15240
|
"description": "Show Meeting Lobby",
|
|
@@ -18134,6 +18279,12 @@
|
|
|
18134
18279
|
"questionId": {
|
|
18135
18280
|
"type": "string",
|
|
18136
18281
|
"description": "Optional question id this upload is for. Used for S3 key partitioning + downstream join hint; not auth-relevant."
|
|
18282
|
+
},
|
|
18283
|
+
"durationMs": {
|
|
18284
|
+
"type": "integer",
|
|
18285
|
+
"format": "int64",
|
|
18286
|
+
"minimum": 0,
|
|
18287
|
+
"description": "Optional client-measured recording duration in milliseconds.\nSet by the candidate FE for video-recording / audio-recording\nquestions where MediaRecorder doesn't finalize the container's\nDuration element. Used as a fallback when ffprobe / re-mux\ncan't derive duration from the file alone. Backend persists\nit to attempt.meta.pendingUploads[fileKey] and surfaces it\nvia attempt:show -> fileRefs so the workflow's process_attachments\nstep forwards it to file:process; the file row then carries\nattributes.durationSeconds + meta.durationSource='client'\nuntil ffmpeg re-mux overwrites with a more reliable value."
|
|
18137
18288
|
}
|
|
18138
18289
|
}
|
|
18139
18290
|
},
|