@smartytalent/mcp-tools 0.1.33-dev.61 → 0.1.33-dev.63
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 +239 -133
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -14313,6 +14313,18 @@
|
|
|
14313
14313
|
"archived"
|
|
14314
14314
|
]
|
|
14315
14315
|
},
|
|
14316
|
+
"filterCandidate": {
|
|
14317
|
+
"type": "string",
|
|
14318
|
+
"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."
|
|
14319
|
+
},
|
|
14320
|
+
"filterJob": {
|
|
14321
|
+
"type": "string",
|
|
14322
|
+
"description": "Filter meetings by linked job id. Backed by the JobIdIndex GSI."
|
|
14323
|
+
},
|
|
14324
|
+
"filterHost": {
|
|
14325
|
+
"type": "string",
|
|
14326
|
+
"description": "Filter meetings by the user hosting (human recruiter or boe user). Backed by the HostIdIndex GSI."
|
|
14327
|
+
},
|
|
14316
14328
|
"filterCreatedFrom": {
|
|
14317
14329
|
"type": "string",
|
|
14318
14330
|
"description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
|
|
@@ -14394,6 +14406,11 @@
|
|
|
14394
14406
|
"duration": {
|
|
14395
14407
|
"type": "integer"
|
|
14396
14408
|
},
|
|
14409
|
+
"defaultLocale": {
|
|
14410
|
+
"type": "string",
|
|
14411
|
+
"pattern": "^(en|fr|ar|pl|it)(-[A-Za-z0-9]{2,8})*$",
|
|
14412
|
+
"description": "Full BCP-47 locale tag (e.g. `en-US`, `pl-PL`, `fr-FR`, `ar-SA`,\n`it-IT`). Set at creation time; controls the UI language of the\npublic lobby + room pages so a Polish recruiter sharing a link\ngets a Polish lobby regardless of the candidate's browser\nlanguage. Immutable after creation.\n\nNOT to be confused with `languageCode`: that field is auto-detected\nfrom the recorded speech and only populated post-meeting (AI\npipeline), whereas `defaultLocale` is human-picked at creation\ntime and drives UI.\n\nValidation: primary subtag must be one of {en, fr, ar, pl, it};\nfull tags are accepted (en-US, pl-PL, ...). Default chain at\ncreation: request body -> tenant settings.language -> 'en-US'."
|
|
14413
|
+
},
|
|
14397
14414
|
"meetingType": {
|
|
14398
14415
|
"type": "string",
|
|
14399
14416
|
"enum": [
|
|
@@ -14496,11 +14513,22 @@
|
|
|
14496
14513
|
"description": "Raw AWS Chime CreateMeeting `Meeting` object - passed verbatim to chime-sdk-js. Includes MeetingFeatures.Audio.EchoReduction when enabled server-side.",
|
|
14497
14514
|
"additionalProperties": true
|
|
14498
14515
|
},
|
|
14499
|
-
"
|
|
14500
|
-
"type": "
|
|
14501
|
-
"
|
|
14502
|
-
|
|
14503
|
-
|
|
14516
|
+
"candidateId": {
|
|
14517
|
+
"type": "string",
|
|
14518
|
+
"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."
|
|
14519
|
+
},
|
|
14520
|
+
"jobId": {
|
|
14521
|
+
"type": "string",
|
|
14522
|
+
"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."
|
|
14523
|
+
},
|
|
14524
|
+
"hostId": {
|
|
14525
|
+
"type": "string",
|
|
14526
|
+
"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."
|
|
14527
|
+
},
|
|
14528
|
+
"notetakerEnabled": {
|
|
14529
|
+
"type": "boolean",
|
|
14530
|
+
"default": true,
|
|
14531
|
+
"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."
|
|
14504
14532
|
},
|
|
14505
14533
|
"recordingStatus": {
|
|
14506
14534
|
"type": "string",
|
|
@@ -14714,14 +14742,15 @@
|
|
|
14714
14742
|
"title": "MeetingRelationshipsSchema",
|
|
14715
14743
|
"type": "object",
|
|
14716
14744
|
"properties": {
|
|
14717
|
-
"
|
|
14718
|
-
"title": "
|
|
14745
|
+
"team": {
|
|
14746
|
+
"title": "MeetingRelationshipsTeamSchema",
|
|
14719
14747
|
"type": "object",
|
|
14748
|
+
"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.",
|
|
14720
14749
|
"properties": {
|
|
14721
14750
|
"data": {
|
|
14722
14751
|
"type": "array",
|
|
14723
14752
|
"items": {
|
|
14724
|
-
"title": "
|
|
14753
|
+
"title": "MeetingRelationshipsTeamDataSchema",
|
|
14725
14754
|
"type": "object",
|
|
14726
14755
|
"properties": {
|
|
14727
14756
|
"type": {
|
|
@@ -14774,7 +14803,7 @@
|
|
|
14774
14803
|
"candidate": {
|
|
14775
14804
|
"title": "MeetingRelationshipsCandidateSchema",
|
|
14776
14805
|
"type": "object",
|
|
14777
|
-
"description": "Candidate the meeting is about, when known (e.g. interview).",
|
|
14806
|
+
"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.",
|
|
14778
14807
|
"properties": {
|
|
14779
14808
|
"data": {
|
|
14780
14809
|
"type": "object",
|
|
@@ -14806,6 +14835,65 @@
|
|
|
14806
14835
|
}
|
|
14807
14836
|
}
|
|
14808
14837
|
}
|
|
14838
|
+
},
|
|
14839
|
+
"host": {
|
|
14840
|
+
"title": "MeetingRelationshipsHostSchema",
|
|
14841
|
+
"type": "object",
|
|
14842
|
+
"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.",
|
|
14843
|
+
"properties": {
|
|
14844
|
+
"data": {
|
|
14845
|
+
"type": "object",
|
|
14846
|
+
"properties": {
|
|
14847
|
+
"type": {
|
|
14848
|
+
"type": "string"
|
|
14849
|
+
},
|
|
14850
|
+
"id": {
|
|
14851
|
+
"type": "string"
|
|
14852
|
+
}
|
|
14853
|
+
}
|
|
14854
|
+
}
|
|
14855
|
+
}
|
|
14856
|
+
},
|
|
14857
|
+
"job": {
|
|
14858
|
+
"title": "MeetingRelationshipsJobSchema",
|
|
14859
|
+
"type": "object",
|
|
14860
|
+
"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).",
|
|
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
|
+
"attendees": {
|
|
14876
|
+
"title": "MeetingRelationshipsAttendeesSchema",
|
|
14877
|
+
"type": "object",
|
|
14878
|
+
"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.",
|
|
14879
|
+
"properties": {
|
|
14880
|
+
"data": {
|
|
14881
|
+
"type": "array",
|
|
14882
|
+
"items": {
|
|
14883
|
+
"title": "MeetingRelationshipsAttendeesDataSchema",
|
|
14884
|
+
"type": "object",
|
|
14885
|
+
"properties": {
|
|
14886
|
+
"type": {
|
|
14887
|
+
"type": "string"
|
|
14888
|
+
},
|
|
14889
|
+
"id": {
|
|
14890
|
+
"type": "string",
|
|
14891
|
+
"description": "Chime attendee id (resource id of the attendee)."
|
|
14892
|
+
}
|
|
14893
|
+
}
|
|
14894
|
+
}
|
|
14895
|
+
}
|
|
14896
|
+
}
|
|
14809
14897
|
}
|
|
14810
14898
|
}
|
|
14811
14899
|
}
|
|
@@ -14890,6 +14978,11 @@
|
|
|
14890
14978
|
"duration": {
|
|
14891
14979
|
"type": "integer"
|
|
14892
14980
|
},
|
|
14981
|
+
"defaultLocale": {
|
|
14982
|
+
"type": "string",
|
|
14983
|
+
"pattern": "^(en|fr|ar|pl|it)(-[A-Za-z0-9]{2,8})*$",
|
|
14984
|
+
"description": "Full BCP-47 locale tag (e.g. `en-US`, `pl-PL`, `fr-FR`, `ar-SA`,\n`it-IT`). Set at creation time; controls the UI language of the\npublic lobby + room pages so a Polish recruiter sharing a link\ngets a Polish lobby regardless of the candidate's browser\nlanguage. Immutable after creation.\n\nNOT to be confused with `languageCode`: that field is auto-detected\nfrom the recorded speech and only populated post-meeting (AI\npipeline), whereas `defaultLocale` is human-picked at creation\ntime and drives UI.\n\nValidation: primary subtag must be one of {en, fr, ar, pl, it};\nfull tags are accepted (en-US, pl-PL, ...). Default chain at\ncreation: request body -> tenant settings.language -> 'en-US'."
|
|
14985
|
+
},
|
|
14893
14986
|
"meetingType": {
|
|
14894
14987
|
"type": "string",
|
|
14895
14988
|
"enum": [
|
|
@@ -14992,11 +15085,22 @@
|
|
|
14992
15085
|
"description": "Raw AWS Chime CreateMeeting `Meeting` object - passed verbatim to chime-sdk-js. Includes MeetingFeatures.Audio.EchoReduction when enabled server-side.",
|
|
14993
15086
|
"additionalProperties": true
|
|
14994
15087
|
},
|
|
14995
|
-
"
|
|
14996
|
-
"type": "
|
|
14997
|
-
"
|
|
14998
|
-
|
|
14999
|
-
|
|
15088
|
+
"candidateId": {
|
|
15089
|
+
"type": "string",
|
|
15090
|
+
"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."
|
|
15091
|
+
},
|
|
15092
|
+
"jobId": {
|
|
15093
|
+
"type": "string",
|
|
15094
|
+
"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."
|
|
15095
|
+
},
|
|
15096
|
+
"hostId": {
|
|
15097
|
+
"type": "string",
|
|
15098
|
+
"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."
|
|
15099
|
+
},
|
|
15100
|
+
"notetakerEnabled": {
|
|
15101
|
+
"type": "boolean",
|
|
15102
|
+
"default": true,
|
|
15103
|
+
"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."
|
|
15000
15104
|
},
|
|
15001
15105
|
"recordingStatus": {
|
|
15002
15106
|
"type": "string",
|
|
@@ -15242,6 +15346,24 @@
|
|
|
15242
15346
|
"operationId": "meetingOptions"
|
|
15243
15347
|
}
|
|
15244
15348
|
},
|
|
15349
|
+
{
|
|
15350
|
+
"name": "list_meeting_attendees",
|
|
15351
|
+
"description": "List Meeting Attendees",
|
|
15352
|
+
"inputSchema": {
|
|
15353
|
+
"type": "object",
|
|
15354
|
+
"properties": {
|
|
15355
|
+
"include": {
|
|
15356
|
+
"type": "string",
|
|
15357
|
+
"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."
|
|
15358
|
+
}
|
|
15359
|
+
}
|
|
15360
|
+
},
|
|
15361
|
+
"_meta": {
|
|
15362
|
+
"method": "GET",
|
|
15363
|
+
"path": "/v1/meetings/{meetingId}/attendees",
|
|
15364
|
+
"operationId": "listMeetingAttendees"
|
|
15365
|
+
}
|
|
15366
|
+
},
|
|
15245
15367
|
{
|
|
15246
15368
|
"name": "create_meeting_attendee",
|
|
15247
15369
|
"description": "Create Meeting Attendee",
|
|
@@ -15269,18 +15391,103 @@
|
|
|
15269
15391
|
"attributes": {
|
|
15270
15392
|
"title": "MeetingAttendeeAttributesSchema",
|
|
15271
15393
|
"type": "object",
|
|
15394
|
+
"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.",
|
|
15272
15395
|
"properties": {
|
|
15396
|
+
"chimeAttendeeId": {
|
|
15397
|
+
"type": "string",
|
|
15398
|
+
"description": "Chime SDK attendee id. Server-generated, immutable. Also the resource id of this attendee. Not accepted on the request - server allocates."
|
|
15399
|
+
},
|
|
15400
|
+
"externalUserId": {
|
|
15401
|
+
"type": "string",
|
|
15402
|
+
"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."
|
|
15403
|
+
},
|
|
15404
|
+
"joinToken": {
|
|
15405
|
+
"type": "string",
|
|
15406
|
+
"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."
|
|
15407
|
+
},
|
|
15408
|
+
"principalType": {
|
|
15409
|
+
"type": "string",
|
|
15410
|
+
"enum": [
|
|
15411
|
+
"user",
|
|
15412
|
+
"candidate",
|
|
15413
|
+
"talent",
|
|
15414
|
+
"guest"
|
|
15415
|
+
],
|
|
15416
|
+
"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."
|
|
15417
|
+
},
|
|
15418
|
+
"principalId": {
|
|
15419
|
+
"type": "string",
|
|
15420
|
+
"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)."
|
|
15421
|
+
},
|
|
15273
15422
|
"name": {
|
|
15274
|
-
"type": "string"
|
|
15423
|
+
"type": "string",
|
|
15424
|
+
"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."
|
|
15425
|
+
},
|
|
15426
|
+
"role": {
|
|
15427
|
+
"type": "string",
|
|
15428
|
+
"enum": [
|
|
15429
|
+
"host",
|
|
15430
|
+
"attendee",
|
|
15431
|
+
"candidate",
|
|
15432
|
+
"observer",
|
|
15433
|
+
"interviewer",
|
|
15434
|
+
"notetaker",
|
|
15435
|
+
"sales",
|
|
15436
|
+
"other"
|
|
15437
|
+
],
|
|
15438
|
+
"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."
|
|
15439
|
+
},
|
|
15440
|
+
"status": {
|
|
15441
|
+
"type": "string",
|
|
15442
|
+
"enum": [
|
|
15443
|
+
"joining",
|
|
15444
|
+
"active",
|
|
15445
|
+
"left",
|
|
15446
|
+
"dropped",
|
|
15447
|
+
"ended",
|
|
15448
|
+
"error"
|
|
15449
|
+
],
|
|
15450
|
+
"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."
|
|
15275
15451
|
},
|
|
15276
15452
|
"email": {
|
|
15277
|
-
"type": "string"
|
|
15453
|
+
"type": "string",
|
|
15454
|
+
"description": "Optional. Auth humans: from user profile (server-resolved). Guests: from lobby form (accepted on request)."
|
|
15278
15455
|
},
|
|
15279
|
-
"
|
|
15280
|
-
"type": "string"
|
|
15456
|
+
"phone": {
|
|
15457
|
+
"type": "string",
|
|
15458
|
+
"description": "Optional. Typed in lobby form when present (guest only)."
|
|
15281
15459
|
},
|
|
15282
|
-
"
|
|
15283
|
-
"type": "string"
|
|
15460
|
+
"voice": {
|
|
15461
|
+
"type": "string",
|
|
15462
|
+
"description": "AI only. Realtime model voice (alloy / echo / fable / onyx / nova / shimmer). Used at dispatch."
|
|
15463
|
+
},
|
|
15464
|
+
"config": {
|
|
15465
|
+
"type": "object",
|
|
15466
|
+
"additionalProperties": true,
|
|
15467
|
+
"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."
|
|
15468
|
+
},
|
|
15469
|
+
"taskArn": {
|
|
15470
|
+
"type": "string",
|
|
15471
|
+
"description": "AI only. ECS task ARN for the bot (operational). Server-managed."
|
|
15472
|
+
},
|
|
15473
|
+
"errorMessage": {
|
|
15474
|
+
"type": "string",
|
|
15475
|
+
"description": "Populated when status=error."
|
|
15476
|
+
},
|
|
15477
|
+
"joinedAt": {
|
|
15478
|
+
"type": "string",
|
|
15479
|
+
"format": "date-time",
|
|
15480
|
+
"description": "Server-stamped from chime:AttendeeJoined event."
|
|
15481
|
+
},
|
|
15482
|
+
"leftAt": {
|
|
15483
|
+
"type": "string",
|
|
15484
|
+
"format": "date-time",
|
|
15485
|
+
"description": "Server-stamped from chime:AttendeeLeft / Dropped event."
|
|
15486
|
+
},
|
|
15487
|
+
"chimeMeetingData": {
|
|
15488
|
+
"type": "object",
|
|
15489
|
+
"additionalProperties": true,
|
|
15490
|
+
"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."
|
|
15284
15491
|
}
|
|
15285
15492
|
}
|
|
15286
15493
|
}
|
|
@@ -15467,143 +15674,42 @@
|
|
|
15467
15674
|
}
|
|
15468
15675
|
},
|
|
15469
15676
|
{
|
|
15470
|
-
"name": "
|
|
15471
|
-
"description": "
|
|
15472
|
-
"inputSchema": {
|
|
15473
|
-
"title": "CreateMeetingAiAttendeeRequestBody",
|
|
15474
|
-
"type": "object",
|
|
15475
|
-
"required": [
|
|
15476
|
-
"data"
|
|
15477
|
-
],
|
|
15478
|
-
"properties": {
|
|
15479
|
-
"data": {
|
|
15480
|
-
"title": "CreateMeetingAiAttendeeRequestBodyData",
|
|
15481
|
-
"type": "object",
|
|
15482
|
-
"required": [
|
|
15483
|
-
"type",
|
|
15484
|
-
"attributes"
|
|
15485
|
-
],
|
|
15486
|
-
"properties": {
|
|
15487
|
-
"type": {
|
|
15488
|
-
"type": "string",
|
|
15489
|
-
"enum": [
|
|
15490
|
-
"ai-attendees"
|
|
15491
|
-
]
|
|
15492
|
-
},
|
|
15493
|
-
"attributes": {
|
|
15494
|
-
"title": "MeetingAiAttendeeSettingsSchema",
|
|
15495
|
-
"type": "object",
|
|
15496
|
-
"description": "Settings supplied at createMeetingAiAttendee time. Boe always\njoins with mic on, camera off; toggle via 'boe-control' Chime\nDataMessage at runtime.",
|
|
15497
|
-
"properties": {
|
|
15498
|
-
"displayName": {
|
|
15499
|
-
"type": "string",
|
|
15500
|
-
"default": "Boe"
|
|
15501
|
-
},
|
|
15502
|
-
"voice": {
|
|
15503
|
-
"type": "string",
|
|
15504
|
-
"default": "alloy"
|
|
15505
|
-
},
|
|
15506
|
-
"language": {
|
|
15507
|
-
"type": "string",
|
|
15508
|
-
"description": "Reply language for Boe's assistant behaviour (e.g. English)"
|
|
15509
|
-
},
|
|
15510
|
-
"faceId": {
|
|
15511
|
-
"type": "string",
|
|
15512
|
-
"description": "Simli avatar face UUID for camera_on. Falls back to the tenant default if omitted."
|
|
15513
|
-
},
|
|
15514
|
-
"persona": {
|
|
15515
|
-
"type": "string",
|
|
15516
|
-
"description": "Optional persona text appended to the base system prompt"
|
|
15517
|
-
},
|
|
15518
|
-
"role": {
|
|
15519
|
-
"type": "string",
|
|
15520
|
-
"enum": [
|
|
15521
|
-
"interviewer",
|
|
15522
|
-
"notetaker",
|
|
15523
|
-
"sales"
|
|
15524
|
-
],
|
|
15525
|
-
"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."
|
|
15526
|
-
},
|
|
15527
|
-
"context": {
|
|
15528
|
-
"type": "object",
|
|
15529
|
-
"additionalProperties": true,
|
|
15530
|
-
"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)."
|
|
15531
|
-
}
|
|
15532
|
-
}
|
|
15533
|
-
}
|
|
15534
|
-
}
|
|
15535
|
-
}
|
|
15536
|
-
}
|
|
15537
|
-
},
|
|
15538
|
-
"_meta": {
|
|
15539
|
-
"method": "POST",
|
|
15540
|
-
"path": "/v1/meetings/{meetingId}/ai-attendees",
|
|
15541
|
-
"operationId": "createMeetingAiAttendee"
|
|
15542
|
-
}
|
|
15543
|
-
},
|
|
15544
|
-
{
|
|
15545
|
-
"name": "list_meeting_ai_attendees",
|
|
15546
|
-
"description": "List Meeting AI Attendees",
|
|
15547
|
-
"inputSchema": {
|
|
15548
|
-
"type": "object",
|
|
15549
|
-
"properties": {}
|
|
15550
|
-
},
|
|
15551
|
-
"_meta": {
|
|
15552
|
-
"method": "GET",
|
|
15553
|
-
"path": "/v1/meetings/{meetingId}/ai-attendees",
|
|
15554
|
-
"operationId": "listMeetingAiAttendees"
|
|
15555
|
-
}
|
|
15556
|
-
},
|
|
15557
|
-
{
|
|
15558
|
-
"name": "meeting_ai_attendees_options",
|
|
15559
|
-
"description": "Meeting AI Attendees Options",
|
|
15560
|
-
"inputSchema": {
|
|
15561
|
-
"type": "object",
|
|
15562
|
-
"properties": {}
|
|
15563
|
-
},
|
|
15564
|
-
"_meta": {
|
|
15565
|
-
"method": "OPTIONS",
|
|
15566
|
-
"path": "/v1/meetings/{meetingId}/ai-attendees",
|
|
15567
|
-
"operationId": "meetingAiAttendeesOptions"
|
|
15568
|
-
}
|
|
15569
|
-
},
|
|
15570
|
-
{
|
|
15571
|
-
"name": "show_meeting_ai_attendee",
|
|
15572
|
-
"description": "Show Meeting AI Attendee",
|
|
15677
|
+
"name": "show_meeting_attendee",
|
|
15678
|
+
"description": "Show Meeting Attendee",
|
|
15573
15679
|
"inputSchema": {
|
|
15574
15680
|
"type": "object",
|
|
15575
15681
|
"properties": {}
|
|
15576
15682
|
},
|
|
15577
15683
|
"_meta": {
|
|
15578
15684
|
"method": "GET",
|
|
15579
|
-
"path": "/v1/meetings/{meetingId}/
|
|
15580
|
-
"operationId": "
|
|
15685
|
+
"path": "/v1/meetings/{meetingId}/attendees/{attendeeId}",
|
|
15686
|
+
"operationId": "showMeetingAttendee"
|
|
15581
15687
|
}
|
|
15582
15688
|
},
|
|
15583
15689
|
{
|
|
15584
|
-
"name": "
|
|
15585
|
-
"description": "
|
|
15690
|
+
"name": "delete_meeting_attendee",
|
|
15691
|
+
"description": "Remove Meeting Attendee",
|
|
15586
15692
|
"inputSchema": {
|
|
15587
15693
|
"type": "object",
|
|
15588
15694
|
"properties": {}
|
|
15589
15695
|
},
|
|
15590
15696
|
"_meta": {
|
|
15591
15697
|
"method": "DELETE",
|
|
15592
|
-
"path": "/v1/meetings/{meetingId}/
|
|
15593
|
-
"operationId": "
|
|
15698
|
+
"path": "/v1/meetings/{meetingId}/attendees/{attendeeId}",
|
|
15699
|
+
"operationId": "deleteMeetingAttendee"
|
|
15594
15700
|
}
|
|
15595
15701
|
},
|
|
15596
15702
|
{
|
|
15597
|
-
"name": "
|
|
15598
|
-
"description": "Meeting
|
|
15703
|
+
"name": "meeting_attendee_options",
|
|
15704
|
+
"description": "Meeting Attendee Options",
|
|
15599
15705
|
"inputSchema": {
|
|
15600
15706
|
"type": "object",
|
|
15601
15707
|
"properties": {}
|
|
15602
15708
|
},
|
|
15603
15709
|
"_meta": {
|
|
15604
15710
|
"method": "OPTIONS",
|
|
15605
|
-
"path": "/v1/meetings/{meetingId}/
|
|
15606
|
-
"operationId": "
|
|
15711
|
+
"path": "/v1/meetings/{meetingId}/attendees/{attendeeId}",
|
|
15712
|
+
"operationId": "meetingAttendeeOptions"
|
|
15607
15713
|
}
|
|
15608
15714
|
},
|
|
15609
15715
|
{
|