@smartytalent/mcp-tools 0.1.33-dev.62 → 0.1.33-dev.64
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 +249 -135
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -942,7 +942,16 @@
|
|
|
942
942
|
"type": "string"
|
|
943
943
|
},
|
|
944
944
|
"isSystem": {
|
|
945
|
-
"type": "boolean"
|
|
945
|
+
"type": "boolean",
|
|
946
|
+
"description": "Marks tenant-internal system users (admins, integrations, the Boe bot). Distinct from `type` - `isSystem=true` only means 'not a regular end-user'; the human-vs-bot split lives in `type`."
|
|
947
|
+
},
|
|
948
|
+
"type": {
|
|
949
|
+
"type": "string",
|
|
950
|
+
"enum": [
|
|
951
|
+
"human",
|
|
952
|
+
"ai"
|
|
953
|
+
],
|
|
954
|
+
"description": "Discriminator for human-vs-bot users.\n 'ai' - Boe bot user. tenant.relationships.boeUser points at one\n of these per tenant. Drives the createMeetingAttendee\n AI-dispatch decision: principalType=user + user.type='ai'\n makes the meeting service spawn a Fargate bot instead of\n returning Chime join credentials.\n 'human' - regular user (recruiter, observer, candidate-with-account).\n null - legacy rows without the field; treated as 'human' by the\n server (safer default - we'd rather miss a bot dispatch\n than accidentally dispatch a Fargate task for a real human)."
|
|
946
955
|
},
|
|
947
956
|
"address": {
|
|
948
957
|
"type": "object",
|
|
@@ -1207,7 +1216,16 @@
|
|
|
1207
1216
|
"type": "string"
|
|
1208
1217
|
},
|
|
1209
1218
|
"isSystem": {
|
|
1210
|
-
"type": "boolean"
|
|
1219
|
+
"type": "boolean",
|
|
1220
|
+
"description": "Marks tenant-internal system users (admins, integrations, the Boe bot). Distinct from `type` - `isSystem=true` only means 'not a regular end-user'; the human-vs-bot split lives in `type`."
|
|
1221
|
+
},
|
|
1222
|
+
"type": {
|
|
1223
|
+
"type": "string",
|
|
1224
|
+
"enum": [
|
|
1225
|
+
"human",
|
|
1226
|
+
"ai"
|
|
1227
|
+
],
|
|
1228
|
+
"description": "Discriminator for human-vs-bot users.\n 'ai' - Boe bot user. tenant.relationships.boeUser points at one\n of these per tenant. Drives the createMeetingAttendee\n AI-dispatch decision: principalType=user + user.type='ai'\n makes the meeting service spawn a Fargate bot instead of\n returning Chime join credentials.\n 'human' - regular user (recruiter, observer, candidate-with-account).\n null - legacy rows without the field; treated as 'human' by the\n server (safer default - we'd rather miss a bot dispatch\n than accidentally dispatch a Fargate task for a real human)."
|
|
1211
1229
|
},
|
|
1212
1230
|
"address": {
|
|
1213
1231
|
"type": "object",
|
|
@@ -14313,6 +14331,18 @@
|
|
|
14313
14331
|
"archived"
|
|
14314
14332
|
]
|
|
14315
14333
|
},
|
|
14334
|
+
"filterCandidate": {
|
|
14335
|
+
"type": "string",
|
|
14336
|
+
"description": "Filter meetings (or other resources) by the linked candidate id. Backed by the CandidateIdIndex GSI on meeting; same convention used by other services for candidate reverse-lookup."
|
|
14337
|
+
},
|
|
14338
|
+
"filterJob": {
|
|
14339
|
+
"type": "string",
|
|
14340
|
+
"description": "Filter meetings by linked job id. Backed by the JobIdIndex GSI."
|
|
14341
|
+
},
|
|
14342
|
+
"filterHost": {
|
|
14343
|
+
"type": "string",
|
|
14344
|
+
"description": "Filter meetings by the user hosting (human recruiter or boe user). Backed by the HostIdIndex GSI."
|
|
14345
|
+
},
|
|
14316
14346
|
"filterCreatedFrom": {
|
|
14317
14347
|
"type": "string",
|
|
14318
14348
|
"description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
|
|
@@ -14501,11 +14531,22 @@
|
|
|
14501
14531
|
"description": "Raw AWS Chime CreateMeeting `Meeting` object - passed verbatim to chime-sdk-js. Includes MeetingFeatures.Audio.EchoReduction when enabled server-side.",
|
|
14502
14532
|
"additionalProperties": true
|
|
14503
14533
|
},
|
|
14504
|
-
"
|
|
14505
|
-
"type": "
|
|
14506
|
-
"
|
|
14507
|
-
|
|
14508
|
-
|
|
14534
|
+
"candidateId": {
|
|
14535
|
+
"type": "string",
|
|
14536
|
+
"description": "Top-level scalar mirror of relationships.candidate.data.id, used by the CandidateIdIndex GSI for reverse-lookup ('list meetings for this candidate'). Sparse - present only when the relationship is set. Do NOT set this directly on createMeeting / updateMeeting; pass relationships.candidate instead and the server derives the scalar."
|
|
14537
|
+
},
|
|
14538
|
+
"jobId": {
|
|
14539
|
+
"type": "string",
|
|
14540
|
+
"description": "Top-level scalar mirror of relationships.job.data.id, used by the JobIdIndex GSI ('list meetings for this job'). Derived server-side from relationships.job."
|
|
14541
|
+
},
|
|
14542
|
+
"hostId": {
|
|
14543
|
+
"type": "string",
|
|
14544
|
+
"description": "Top-level scalar mirror of relationships.host.data.id (always a users id - human recruiter or boe user). Used by the HostIdIndex GSI for the 'my meetings' dashboard. Derived server-side from relationships.host."
|
|
14545
|
+
},
|
|
14546
|
+
"notetakerEnabled": {
|
|
14547
|
+
"type": "boolean",
|
|
14548
|
+
"default": true,
|
|
14549
|
+
"description": "When true (default), human-hosted meetings auto-dispatch a Boe notetaker bot at meeting start time. Set false on createMeeting to opt out for sensitive sessions. Ignored when the meeting is itself AI-hosted (host.data.id is a boe user); the host bot already takes notes."
|
|
14509
14550
|
},
|
|
14510
14551
|
"recordingStatus": {
|
|
14511
14552
|
"type": "string",
|
|
@@ -14719,14 +14760,15 @@
|
|
|
14719
14760
|
"title": "MeetingRelationshipsSchema",
|
|
14720
14761
|
"type": "object",
|
|
14721
14762
|
"properties": {
|
|
14722
|
-
"
|
|
14723
|
-
"title": "
|
|
14763
|
+
"team": {
|
|
14764
|
+
"title": "MeetingRelationshipsTeamSchema",
|
|
14724
14765
|
"type": "object",
|
|
14766
|
+
"description": "Tenant users with stake in this meeting (host + co-hosts + observers + HR backup). Drives access control + 'my meetings' notifications + dashboard visibility. Candidates and guests do NOT live here - they appear in the attendees relationship once they join Chime.",
|
|
14725
14767
|
"properties": {
|
|
14726
14768
|
"data": {
|
|
14727
14769
|
"type": "array",
|
|
14728
14770
|
"items": {
|
|
14729
|
-
"title": "
|
|
14771
|
+
"title": "MeetingRelationshipsTeamDataSchema",
|
|
14730
14772
|
"type": "object",
|
|
14731
14773
|
"properties": {
|
|
14732
14774
|
"type": {
|
|
@@ -14779,7 +14821,7 @@
|
|
|
14779
14821
|
"candidate": {
|
|
14780
14822
|
"title": "MeetingRelationshipsCandidateSchema",
|
|
14781
14823
|
"type": "object",
|
|
14782
|
-
"description": "Candidate the meeting is about, when known (e.g. interview).",
|
|
14824
|
+
"description": "Candidate the meeting is about, when known (e.g. interview). Setting this also writes the top-level candidateId scalar (CandidateIdIndex GSI key) so the 'meetings for candidate X' query is a direct GSI hit.",
|
|
14783
14825
|
"properties": {
|
|
14784
14826
|
"data": {
|
|
14785
14827
|
"type": "object",
|
|
@@ -14811,6 +14853,65 @@
|
|
|
14811
14853
|
}
|
|
14812
14854
|
}
|
|
14813
14855
|
}
|
|
14856
|
+
},
|
|
14857
|
+
"host": {
|
|
14858
|
+
"title": "MeetingRelationshipsHostSchema",
|
|
14859
|
+
"type": "object",
|
|
14860
|
+
"description": "User leading the meeting. May be a human recruiter or a boe user (e.g. usr-boe-interviewer for AI-hosted sessions). Setting this also writes the top-level hostId scalar (HostIdIndex GSI key) so the 'my meetings' dashboard query is a direct GSI hit. Always points at the users resource - there is no separate 'aiHost' shape because Boe IS a user.",
|
|
14861
|
+
"properties": {
|
|
14862
|
+
"data": {
|
|
14863
|
+
"type": "object",
|
|
14864
|
+
"properties": {
|
|
14865
|
+
"type": {
|
|
14866
|
+
"type": "string"
|
|
14867
|
+
},
|
|
14868
|
+
"id": {
|
|
14869
|
+
"type": "string"
|
|
14870
|
+
}
|
|
14871
|
+
}
|
|
14872
|
+
}
|
|
14873
|
+
}
|
|
14874
|
+
},
|
|
14875
|
+
"job": {
|
|
14876
|
+
"title": "MeetingRelationshipsJobSchema",
|
|
14877
|
+
"type": "object",
|
|
14878
|
+
"description": "Job opening the meeting is about. Drives interviewer-bot context enrichment (job description, mustHaves, competencies auto-loaded into the prompt) and the 'meetings for this role' job-page view. Setting this also writes the top-level jobId scalar (JobIdIndex GSI key).",
|
|
14879
|
+
"properties": {
|
|
14880
|
+
"data": {
|
|
14881
|
+
"type": "object",
|
|
14882
|
+
"properties": {
|
|
14883
|
+
"type": {
|
|
14884
|
+
"type": "string"
|
|
14885
|
+
},
|
|
14886
|
+
"id": {
|
|
14887
|
+
"type": "string"
|
|
14888
|
+
}
|
|
14889
|
+
}
|
|
14890
|
+
}
|
|
14891
|
+
}
|
|
14892
|
+
},
|
|
14893
|
+
"attendees": {
|
|
14894
|
+
"title": "MeetingRelationshipsAttendeesSchema",
|
|
14895
|
+
"type": "object",
|
|
14896
|
+
"description": "Chime attendee records - everyone with a live or terminated Chime SDK attendee for this meeting (humans + bots, unified). Use `?include=attendees,attendees.user,attendees.candidate` on showMeeting / listMeetings to sideload the full roster in one round-trip. Not embedded in attributes - relationship + sideload only.",
|
|
14897
|
+
"properties": {
|
|
14898
|
+
"data": {
|
|
14899
|
+
"type": "array",
|
|
14900
|
+
"items": {
|
|
14901
|
+
"title": "MeetingRelationshipsAttendeesDataSchema",
|
|
14902
|
+
"type": "object",
|
|
14903
|
+
"properties": {
|
|
14904
|
+
"type": {
|
|
14905
|
+
"type": "string"
|
|
14906
|
+
},
|
|
14907
|
+
"id": {
|
|
14908
|
+
"type": "string",
|
|
14909
|
+
"description": "Chime attendee id (resource id of the attendee)."
|
|
14910
|
+
}
|
|
14911
|
+
}
|
|
14912
|
+
}
|
|
14913
|
+
}
|
|
14914
|
+
}
|
|
14814
14915
|
}
|
|
14815
14916
|
}
|
|
14816
14917
|
}
|
|
@@ -15002,11 +15103,22 @@
|
|
|
15002
15103
|
"description": "Raw AWS Chime CreateMeeting `Meeting` object - passed verbatim to chime-sdk-js. Includes MeetingFeatures.Audio.EchoReduction when enabled server-side.",
|
|
15003
15104
|
"additionalProperties": true
|
|
15004
15105
|
},
|
|
15005
|
-
"
|
|
15006
|
-
"type": "
|
|
15007
|
-
"
|
|
15008
|
-
|
|
15009
|
-
|
|
15106
|
+
"candidateId": {
|
|
15107
|
+
"type": "string",
|
|
15108
|
+
"description": "Top-level scalar mirror of relationships.candidate.data.id, used by the CandidateIdIndex GSI for reverse-lookup ('list meetings for this candidate'). Sparse - present only when the relationship is set. Do NOT set this directly on createMeeting / updateMeeting; pass relationships.candidate instead and the server derives the scalar."
|
|
15109
|
+
},
|
|
15110
|
+
"jobId": {
|
|
15111
|
+
"type": "string",
|
|
15112
|
+
"description": "Top-level scalar mirror of relationships.job.data.id, used by the JobIdIndex GSI ('list meetings for this job'). Derived server-side from relationships.job."
|
|
15113
|
+
},
|
|
15114
|
+
"hostId": {
|
|
15115
|
+
"type": "string",
|
|
15116
|
+
"description": "Top-level scalar mirror of relationships.host.data.id (always a users id - human recruiter or boe user). Used by the HostIdIndex GSI for the 'my meetings' dashboard. Derived server-side from relationships.host."
|
|
15117
|
+
},
|
|
15118
|
+
"notetakerEnabled": {
|
|
15119
|
+
"type": "boolean",
|
|
15120
|
+
"default": true,
|
|
15121
|
+
"description": "When true (default), human-hosted meetings auto-dispatch a Boe notetaker bot at meeting start time. Set false on createMeeting to opt out for sensitive sessions. Ignored when the meeting is itself AI-hosted (host.data.id is a boe user); the host bot already takes notes."
|
|
15010
15122
|
},
|
|
15011
15123
|
"recordingStatus": {
|
|
15012
15124
|
"type": "string",
|
|
@@ -15252,6 +15364,24 @@
|
|
|
15252
15364
|
"operationId": "meetingOptions"
|
|
15253
15365
|
}
|
|
15254
15366
|
},
|
|
15367
|
+
{
|
|
15368
|
+
"name": "list_meeting_attendees",
|
|
15369
|
+
"description": "List Meeting Attendees",
|
|
15370
|
+
"inputSchema": {
|
|
15371
|
+
"type": "object",
|
|
15372
|
+
"properties": {
|
|
15373
|
+
"include": {
|
|
15374
|
+
"type": "string",
|
|
15375
|
+
"description": "JSON:API compound document request - comma-separated list of relationship paths to include in the response (e.g. `feedbacks`, `feedbacks,boeUser`). Currently advisory: the service always returns all declared relationships with empty defaults."
|
|
15376
|
+
}
|
|
15377
|
+
}
|
|
15378
|
+
},
|
|
15379
|
+
"_meta": {
|
|
15380
|
+
"method": "GET",
|
|
15381
|
+
"path": "/v1/meetings/{meetingId}/attendees",
|
|
15382
|
+
"operationId": "listMeetingAttendees"
|
|
15383
|
+
}
|
|
15384
|
+
},
|
|
15255
15385
|
{
|
|
15256
15386
|
"name": "create_meeting_attendee",
|
|
15257
15387
|
"description": "Create Meeting Attendee",
|
|
@@ -15279,18 +15409,103 @@
|
|
|
15279
15409
|
"attributes": {
|
|
15280
15410
|
"title": "MeetingAttendeeAttributesSchema",
|
|
15281
15411
|
"type": "object",
|
|
15412
|
+
"description": "Chime attendee record - someone (or some bot) with a live or terminated\nChime SDK attendee for this meeting. Unified across human-auth +\nhuman-guest + AI; principalType + the optional relationships disambiguate.\nUsed both as the createMeetingAttendee request body shape (subset of fields\naccepted - server ignores fields it sets itself) and as the response shape.",
|
|
15282
15413
|
"properties": {
|
|
15414
|
+
"chimeAttendeeId": {
|
|
15415
|
+
"type": "string",
|
|
15416
|
+
"description": "Chime SDK attendee id. Server-generated, immutable. Also the resource id of this attendee. Not accepted on the request - server allocates."
|
|
15417
|
+
},
|
|
15418
|
+
"externalUserId": {
|
|
15419
|
+
"type": "string",
|
|
15420
|
+
"description": "Namespace-prefixed identifier sent to Chime CreateAttendee. Format: `user:<userId>` for auth humans, `guest:<guestId>` for lobby walk-ins, `boe:<userId>` for AI users. Visible in Chime State Change events so any consumer can identify the principal type without a DB join. Derived server-side from principalType / user.type - do not set on the request."
|
|
15421
|
+
},
|
|
15422
|
+
"joinToken": {
|
|
15423
|
+
"type": "string",
|
|
15424
|
+
"description": "One-time Chime SDK join token. Present only on the createMeetingAttendee response; do NOT cache or re-use - request a fresh attendee if the join fails."
|
|
15425
|
+
},
|
|
15426
|
+
"principalType": {
|
|
15427
|
+
"type": "string",
|
|
15428
|
+
"enum": [
|
|
15429
|
+
"user",
|
|
15430
|
+
"candidate",
|
|
15431
|
+
"talent",
|
|
15432
|
+
"guest"
|
|
15433
|
+
],
|
|
15434
|
+
"description": "Type of the underlying principal who owns this attendance. Mirrors call.fromType / call.toType taxonomy so the same vocabulary spans channels. Required on createMeetingAttendee request."
|
|
15435
|
+
},
|
|
15436
|
+
"principalId": {
|
|
15437
|
+
"type": "string",
|
|
15438
|
+
"description": "Stable id of the principal (e.g. usr-anna, cnd-tomek, gst-xyz). For namespace `boe:` attendees this is the boe user's id - Boe is a user just like a human, the principalType is still 'user'. Required on createMeetingAttendee request unless principalType=guest (then the server allocates a guest id)."
|
|
15439
|
+
},
|
|
15283
15440
|
"name": {
|
|
15284
|
-
"type": "string"
|
|
15441
|
+
"type": "string",
|
|
15442
|
+
"description": "Display name shown in the roster. Source: user.name for principalType=user (auth or boe), lobby-typed name for guest, candidate/talent name for those types. Accepted on the request as an override; otherwise server resolves it from the principal."
|
|
15443
|
+
},
|
|
15444
|
+
"role": {
|
|
15445
|
+
"type": "string",
|
|
15446
|
+
"enum": [
|
|
15447
|
+
"host",
|
|
15448
|
+
"attendee",
|
|
15449
|
+
"candidate",
|
|
15450
|
+
"observer",
|
|
15451
|
+
"interviewer",
|
|
15452
|
+
"notetaker",
|
|
15453
|
+
"sales",
|
|
15454
|
+
"other"
|
|
15455
|
+
],
|
|
15456
|
+
"description": "Function this attendee plays in THIS meeting. Distinct from user.type (which says human-vs-bot at the user level). At most one `host` per meeting. AI bot roles (interviewer / notetaker / sales) drive prompt template selection in the bot container."
|
|
15457
|
+
},
|
|
15458
|
+
"status": {
|
|
15459
|
+
"type": "string",
|
|
15460
|
+
"enum": [
|
|
15461
|
+
"joining",
|
|
15462
|
+
"active",
|
|
15463
|
+
"left",
|
|
15464
|
+
"dropped",
|
|
15465
|
+
"ended",
|
|
15466
|
+
"error"
|
|
15467
|
+
],
|
|
15468
|
+
"description": "Lifecycle on the attendee record.\n joining - row created, attendee not yet on Chime grid (typical for bots between dispatch and Chime ack, or for fresh createMeetingAttendee responses pre-join)\n active - present on the Chime grid, audio bridging\n left - left cleanly (clicked leave or natural end)\n dropped - lost connection or network drop (per Chime AttendeeDropped event)\n ended - bot path: server-initiated dismiss (DELETE) or natural completion\n error - bot dispatch / join failed; see errorMessage\nServer-managed - do not set on the request."
|
|
15285
15469
|
},
|
|
15286
15470
|
"email": {
|
|
15287
|
-
"type": "string"
|
|
15471
|
+
"type": "string",
|
|
15472
|
+
"description": "Optional. Auth humans: from user profile (server-resolved). Guests: from lobby form (accepted on request)."
|
|
15288
15473
|
},
|
|
15289
|
-
"
|
|
15290
|
-
"type": "string"
|
|
15474
|
+
"phone": {
|
|
15475
|
+
"type": "string",
|
|
15476
|
+
"description": "Optional. Typed in lobby form when present (guest only)."
|
|
15291
15477
|
},
|
|
15292
|
-
"
|
|
15293
|
-
"type": "string"
|
|
15478
|
+
"voice": {
|
|
15479
|
+
"type": "string",
|
|
15480
|
+
"description": "AI only. Realtime model voice (alloy / echo / fable / onyx / nova / shimmer). Used at dispatch."
|
|
15481
|
+
},
|
|
15482
|
+
"config": {
|
|
15483
|
+
"type": "object",
|
|
15484
|
+
"additionalProperties": true,
|
|
15485
|
+
"description": "AI only. Per-bot runtime config: mode, language, targetLanguage, persona, faceId, context (job-context auto-enrichment seed). Echoed back so FE can confirm what the bot received."
|
|
15486
|
+
},
|
|
15487
|
+
"taskArn": {
|
|
15488
|
+
"type": "string",
|
|
15489
|
+
"description": "AI only. ECS task ARN for the bot (operational). Server-managed."
|
|
15490
|
+
},
|
|
15491
|
+
"errorMessage": {
|
|
15492
|
+
"type": "string",
|
|
15493
|
+
"description": "Populated when status=error."
|
|
15494
|
+
},
|
|
15495
|
+
"joinedAt": {
|
|
15496
|
+
"type": "string",
|
|
15497
|
+
"format": "date-time",
|
|
15498
|
+
"description": "Server-stamped from chime:AttendeeJoined event."
|
|
15499
|
+
},
|
|
15500
|
+
"leftAt": {
|
|
15501
|
+
"type": "string",
|
|
15502
|
+
"format": "date-time",
|
|
15503
|
+
"description": "Server-stamped from chime:AttendeeLeft / Dropped event."
|
|
15504
|
+
},
|
|
15505
|
+
"chimeMeetingData": {
|
|
15506
|
+
"type": "object",
|
|
15507
|
+
"additionalProperties": true,
|
|
15508
|
+
"description": "Raw AWS Chime CreateMeeting `Meeting` object - passed verbatim to chime-sdk-js. Only on the createMeetingAttendee response (so the joining client gets everything it needs in one round-trip); not stored on the row."
|
|
15294
15509
|
}
|
|
15295
15510
|
}
|
|
15296
15511
|
}
|
|
@@ -15477,143 +15692,42 @@
|
|
|
15477
15692
|
}
|
|
15478
15693
|
},
|
|
15479
15694
|
{
|
|
15480
|
-
"name": "
|
|
15481
|
-
"description": "
|
|
15482
|
-
"inputSchema": {
|
|
15483
|
-
"title": "CreateMeetingAiAttendeeRequestBody",
|
|
15484
|
-
"type": "object",
|
|
15485
|
-
"required": [
|
|
15486
|
-
"data"
|
|
15487
|
-
],
|
|
15488
|
-
"properties": {
|
|
15489
|
-
"data": {
|
|
15490
|
-
"title": "CreateMeetingAiAttendeeRequestBodyData",
|
|
15491
|
-
"type": "object",
|
|
15492
|
-
"required": [
|
|
15493
|
-
"type",
|
|
15494
|
-
"attributes"
|
|
15495
|
-
],
|
|
15496
|
-
"properties": {
|
|
15497
|
-
"type": {
|
|
15498
|
-
"type": "string",
|
|
15499
|
-
"enum": [
|
|
15500
|
-
"ai-attendees"
|
|
15501
|
-
]
|
|
15502
|
-
},
|
|
15503
|
-
"attributes": {
|
|
15504
|
-
"title": "MeetingAiAttendeeSettingsSchema",
|
|
15505
|
-
"type": "object",
|
|
15506
|
-
"description": "Settings supplied at createMeetingAiAttendee time. Boe always\njoins with mic on, camera off; toggle via 'boe-control' Chime\nDataMessage at runtime.",
|
|
15507
|
-
"properties": {
|
|
15508
|
-
"displayName": {
|
|
15509
|
-
"type": "string",
|
|
15510
|
-
"default": "Boe"
|
|
15511
|
-
},
|
|
15512
|
-
"voice": {
|
|
15513
|
-
"type": "string",
|
|
15514
|
-
"default": "alloy"
|
|
15515
|
-
},
|
|
15516
|
-
"language": {
|
|
15517
|
-
"type": "string",
|
|
15518
|
-
"description": "Reply language for Boe's assistant behaviour (e.g. English)"
|
|
15519
|
-
},
|
|
15520
|
-
"faceId": {
|
|
15521
|
-
"type": "string",
|
|
15522
|
-
"description": "Simli avatar face UUID for camera_on. Falls back to the tenant default if omitted."
|
|
15523
|
-
},
|
|
15524
|
-
"persona": {
|
|
15525
|
-
"type": "string",
|
|
15526
|
-
"description": "Optional persona text appended to the base system prompt"
|
|
15527
|
-
},
|
|
15528
|
-
"role": {
|
|
15529
|
-
"type": "string",
|
|
15530
|
-
"enum": [
|
|
15531
|
-
"interviewer",
|
|
15532
|
-
"notetaker",
|
|
15533
|
-
"sales"
|
|
15534
|
-
],
|
|
15535
|
-
"description": "Picks a system prompt template from the bot container's\nprompt/<role>.md library.\n'interviewer' drives a structured screening conversation\n with a candidate (compliance, behavioral block, etc.).\n'notetaker' silently observes and captures action items,\n decisions, and open questions; speaks only when addressed.\n'sales' runs a discovery + pitch conversation with a\n prospect, advances toward a concrete next step. No\n commercial commitments on the call.\nOmit (or pass empty) for the generic silent-listening\nassistant prompt - back-compat default."
|
|
15536
|
-
},
|
|
15537
|
-
"context": {
|
|
15538
|
-
"type": "object",
|
|
15539
|
-
"additionalProperties": true,
|
|
15540
|
-
"description": "Per-meeting context values used to fill {placeholder} tokens\nin the chosen role's prompt template. The required keys depend\non the role - the prompt itself documents what it expects.\n\nBE-side enrichment: for role=interviewer, supplying just\n`{ \"jobId\": \"...\" }` causes the BE to fetch the job row and\nauto-populate roleName, roleDescription, mustHaves,\ncompetencies, workLocation, workMode, workHours, salaryRange,\nroleDetailShareable, and companyInfoShareable from it. Any\nadditional keys you supply override the assembled values\n(FE wins on conflicts). Use this to inject recruiterNotes,\nnextStepsShareable, expectedTimeline, and any field you want\nto override.\n\nMissing or empty values are substituted with the literal\nstring \"not provided\"; the prompt is written to handle that\ngracefully (\"do NOT make up missing fields\"). Each string\nvalue is capped at 1500 chars - the BE truncates and logs\na warning if exceeded (ECS RunTask containerOverrides has\nan 8KB total limit across all env vars)."
|
|
15541
|
-
}
|
|
15542
|
-
}
|
|
15543
|
-
}
|
|
15544
|
-
}
|
|
15545
|
-
}
|
|
15546
|
-
}
|
|
15547
|
-
},
|
|
15548
|
-
"_meta": {
|
|
15549
|
-
"method": "POST",
|
|
15550
|
-
"path": "/v1/meetings/{meetingId}/ai-attendees",
|
|
15551
|
-
"operationId": "createMeetingAiAttendee"
|
|
15552
|
-
}
|
|
15553
|
-
},
|
|
15554
|
-
{
|
|
15555
|
-
"name": "list_meeting_ai_attendees",
|
|
15556
|
-
"description": "List Meeting AI Attendees",
|
|
15557
|
-
"inputSchema": {
|
|
15558
|
-
"type": "object",
|
|
15559
|
-
"properties": {}
|
|
15560
|
-
},
|
|
15561
|
-
"_meta": {
|
|
15562
|
-
"method": "GET",
|
|
15563
|
-
"path": "/v1/meetings/{meetingId}/ai-attendees",
|
|
15564
|
-
"operationId": "listMeetingAiAttendees"
|
|
15565
|
-
}
|
|
15566
|
-
},
|
|
15567
|
-
{
|
|
15568
|
-
"name": "meeting_ai_attendees_options",
|
|
15569
|
-
"description": "Meeting AI Attendees Options",
|
|
15570
|
-
"inputSchema": {
|
|
15571
|
-
"type": "object",
|
|
15572
|
-
"properties": {}
|
|
15573
|
-
},
|
|
15574
|
-
"_meta": {
|
|
15575
|
-
"method": "OPTIONS",
|
|
15576
|
-
"path": "/v1/meetings/{meetingId}/ai-attendees",
|
|
15577
|
-
"operationId": "meetingAiAttendeesOptions"
|
|
15578
|
-
}
|
|
15579
|
-
},
|
|
15580
|
-
{
|
|
15581
|
-
"name": "show_meeting_ai_attendee",
|
|
15582
|
-
"description": "Show Meeting AI Attendee",
|
|
15695
|
+
"name": "show_meeting_attendee",
|
|
15696
|
+
"description": "Show Meeting Attendee",
|
|
15583
15697
|
"inputSchema": {
|
|
15584
15698
|
"type": "object",
|
|
15585
15699
|
"properties": {}
|
|
15586
15700
|
},
|
|
15587
15701
|
"_meta": {
|
|
15588
15702
|
"method": "GET",
|
|
15589
|
-
"path": "/v1/meetings/{meetingId}/
|
|
15590
|
-
"operationId": "
|
|
15703
|
+
"path": "/v1/meetings/{meetingId}/attendees/{attendeeId}",
|
|
15704
|
+
"operationId": "showMeetingAttendee"
|
|
15591
15705
|
}
|
|
15592
15706
|
},
|
|
15593
15707
|
{
|
|
15594
|
-
"name": "
|
|
15595
|
-
"description": "
|
|
15708
|
+
"name": "delete_meeting_attendee",
|
|
15709
|
+
"description": "Remove Meeting Attendee",
|
|
15596
15710
|
"inputSchema": {
|
|
15597
15711
|
"type": "object",
|
|
15598
15712
|
"properties": {}
|
|
15599
15713
|
},
|
|
15600
15714
|
"_meta": {
|
|
15601
15715
|
"method": "DELETE",
|
|
15602
|
-
"path": "/v1/meetings/{meetingId}/
|
|
15603
|
-
"operationId": "
|
|
15716
|
+
"path": "/v1/meetings/{meetingId}/attendees/{attendeeId}",
|
|
15717
|
+
"operationId": "deleteMeetingAttendee"
|
|
15604
15718
|
}
|
|
15605
15719
|
},
|
|
15606
15720
|
{
|
|
15607
|
-
"name": "
|
|
15608
|
-
"description": "Meeting
|
|
15721
|
+
"name": "meeting_attendee_options",
|
|
15722
|
+
"description": "Meeting Attendee Options",
|
|
15609
15723
|
"inputSchema": {
|
|
15610
15724
|
"type": "object",
|
|
15611
15725
|
"properties": {}
|
|
15612
15726
|
},
|
|
15613
15727
|
"_meta": {
|
|
15614
15728
|
"method": "OPTIONS",
|
|
15615
|
-
"path": "/v1/meetings/{meetingId}/
|
|
15616
|
-
"operationId": "
|
|
15729
|
+
"path": "/v1/meetings/{meetingId}/attendees/{attendeeId}",
|
|
15730
|
+
"operationId": "meetingAttendeeOptions"
|
|
15617
15731
|
}
|
|
15618
15732
|
},
|
|
15619
15733
|
{
|