@smartytalent/openai-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 +231 -121
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -13875,6 +13875,18 @@
|
|
|
13875
13875
|
"archived"
|
|
13876
13876
|
]
|
|
13877
13877
|
},
|
|
13878
|
+
"filterCandidate": {
|
|
13879
|
+
"type": "string",
|
|
13880
|
+
"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."
|
|
13881
|
+
},
|
|
13882
|
+
"filterJob": {
|
|
13883
|
+
"type": "string",
|
|
13884
|
+
"description": "Filter meetings by linked job id. Backed by the JobIdIndex GSI."
|
|
13885
|
+
},
|
|
13886
|
+
"filterHost": {
|
|
13887
|
+
"type": "string",
|
|
13888
|
+
"description": "Filter meetings by the user hosting (human recruiter or boe user). Backed by the HostIdIndex GSI."
|
|
13889
|
+
},
|
|
13878
13890
|
"filterCreatedFrom": {
|
|
13879
13891
|
"type": "string",
|
|
13880
13892
|
"description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
|
|
@@ -13954,6 +13966,11 @@
|
|
|
13954
13966
|
"duration": {
|
|
13955
13967
|
"type": "integer"
|
|
13956
13968
|
},
|
|
13969
|
+
"defaultLocale": {
|
|
13970
|
+
"type": "string",
|
|
13971
|
+
"pattern": "^(en|fr|ar|pl|it)(-[A-Za-z0-9]{2,8})*$",
|
|
13972
|
+
"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'."
|
|
13973
|
+
},
|
|
13957
13974
|
"meetingType": {
|
|
13958
13975
|
"type": "string",
|
|
13959
13976
|
"enum": [
|
|
@@ -14056,11 +14073,22 @@
|
|
|
14056
14073
|
"description": "Raw AWS Chime CreateMeeting `Meeting` object - passed verbatim to chime-sdk-js. Includes MeetingFeatures.Audio.EchoReduction when enabled server-side.",
|
|
14057
14074
|
"additionalProperties": true
|
|
14058
14075
|
},
|
|
14059
|
-
"
|
|
14060
|
-
"type": "
|
|
14061
|
-
"
|
|
14062
|
-
|
|
14063
|
-
|
|
14076
|
+
"candidateId": {
|
|
14077
|
+
"type": "string",
|
|
14078
|
+
"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."
|
|
14079
|
+
},
|
|
14080
|
+
"jobId": {
|
|
14081
|
+
"type": "string",
|
|
14082
|
+
"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."
|
|
14083
|
+
},
|
|
14084
|
+
"hostId": {
|
|
14085
|
+
"type": "string",
|
|
14086
|
+
"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."
|
|
14087
|
+
},
|
|
14088
|
+
"notetakerEnabled": {
|
|
14089
|
+
"type": "boolean",
|
|
14090
|
+
"default": true,
|
|
14091
|
+
"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."
|
|
14064
14092
|
},
|
|
14065
14093
|
"recordingStatus": {
|
|
14066
14094
|
"type": "string",
|
|
@@ -14274,14 +14302,15 @@
|
|
|
14274
14302
|
"title": "MeetingRelationshipsSchema",
|
|
14275
14303
|
"type": "object",
|
|
14276
14304
|
"properties": {
|
|
14277
|
-
"
|
|
14278
|
-
"title": "
|
|
14305
|
+
"team": {
|
|
14306
|
+
"title": "MeetingRelationshipsTeamSchema",
|
|
14279
14307
|
"type": "object",
|
|
14308
|
+
"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.",
|
|
14280
14309
|
"properties": {
|
|
14281
14310
|
"data": {
|
|
14282
14311
|
"type": "array",
|
|
14283
14312
|
"items": {
|
|
14284
|
-
"title": "
|
|
14313
|
+
"title": "MeetingRelationshipsTeamDataSchema",
|
|
14285
14314
|
"type": "object",
|
|
14286
14315
|
"properties": {
|
|
14287
14316
|
"type": {
|
|
@@ -14334,7 +14363,7 @@
|
|
|
14334
14363
|
"candidate": {
|
|
14335
14364
|
"title": "MeetingRelationshipsCandidateSchema",
|
|
14336
14365
|
"type": "object",
|
|
14337
|
-
"description": "Candidate the meeting is about, when known (e.g. interview).",
|
|
14366
|
+
"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.",
|
|
14338
14367
|
"properties": {
|
|
14339
14368
|
"data": {
|
|
14340
14369
|
"type": "object",
|
|
@@ -14366,6 +14395,65 @@
|
|
|
14366
14395
|
}
|
|
14367
14396
|
}
|
|
14368
14397
|
}
|
|
14398
|
+
},
|
|
14399
|
+
"host": {
|
|
14400
|
+
"title": "MeetingRelationshipsHostSchema",
|
|
14401
|
+
"type": "object",
|
|
14402
|
+
"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.",
|
|
14403
|
+
"properties": {
|
|
14404
|
+
"data": {
|
|
14405
|
+
"type": "object",
|
|
14406
|
+
"properties": {
|
|
14407
|
+
"type": {
|
|
14408
|
+
"type": "string"
|
|
14409
|
+
},
|
|
14410
|
+
"id": {
|
|
14411
|
+
"type": "string"
|
|
14412
|
+
}
|
|
14413
|
+
}
|
|
14414
|
+
}
|
|
14415
|
+
}
|
|
14416
|
+
},
|
|
14417
|
+
"job": {
|
|
14418
|
+
"title": "MeetingRelationshipsJobSchema",
|
|
14419
|
+
"type": "object",
|
|
14420
|
+
"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).",
|
|
14421
|
+
"properties": {
|
|
14422
|
+
"data": {
|
|
14423
|
+
"type": "object",
|
|
14424
|
+
"properties": {
|
|
14425
|
+
"type": {
|
|
14426
|
+
"type": "string"
|
|
14427
|
+
},
|
|
14428
|
+
"id": {
|
|
14429
|
+
"type": "string"
|
|
14430
|
+
}
|
|
14431
|
+
}
|
|
14432
|
+
}
|
|
14433
|
+
}
|
|
14434
|
+
},
|
|
14435
|
+
"attendees": {
|
|
14436
|
+
"title": "MeetingRelationshipsAttendeesSchema",
|
|
14437
|
+
"type": "object",
|
|
14438
|
+
"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.",
|
|
14439
|
+
"properties": {
|
|
14440
|
+
"data": {
|
|
14441
|
+
"type": "array",
|
|
14442
|
+
"items": {
|
|
14443
|
+
"title": "MeetingRelationshipsAttendeesDataSchema",
|
|
14444
|
+
"type": "object",
|
|
14445
|
+
"properties": {
|
|
14446
|
+
"type": {
|
|
14447
|
+
"type": "string"
|
|
14448
|
+
},
|
|
14449
|
+
"id": {
|
|
14450
|
+
"type": "string",
|
|
14451
|
+
"description": "Chime attendee id (resource id of the attendee)."
|
|
14452
|
+
}
|
|
14453
|
+
}
|
|
14454
|
+
}
|
|
14455
|
+
}
|
|
14456
|
+
}
|
|
14369
14457
|
}
|
|
14370
14458
|
}
|
|
14371
14459
|
}
|
|
@@ -14444,6 +14532,11 @@
|
|
|
14444
14532
|
"duration": {
|
|
14445
14533
|
"type": "integer"
|
|
14446
14534
|
},
|
|
14535
|
+
"defaultLocale": {
|
|
14536
|
+
"type": "string",
|
|
14537
|
+
"pattern": "^(en|fr|ar|pl|it)(-[A-Za-z0-9]{2,8})*$",
|
|
14538
|
+
"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'."
|
|
14539
|
+
},
|
|
14447
14540
|
"meetingType": {
|
|
14448
14541
|
"type": "string",
|
|
14449
14542
|
"enum": [
|
|
@@ -14546,11 +14639,22 @@
|
|
|
14546
14639
|
"description": "Raw AWS Chime CreateMeeting `Meeting` object - passed verbatim to chime-sdk-js. Includes MeetingFeatures.Audio.EchoReduction when enabled server-side.",
|
|
14547
14640
|
"additionalProperties": true
|
|
14548
14641
|
},
|
|
14549
|
-
"
|
|
14550
|
-
"type": "
|
|
14551
|
-
"
|
|
14552
|
-
|
|
14553
|
-
|
|
14642
|
+
"candidateId": {
|
|
14643
|
+
"type": "string",
|
|
14644
|
+
"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."
|
|
14645
|
+
},
|
|
14646
|
+
"jobId": {
|
|
14647
|
+
"type": "string",
|
|
14648
|
+
"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."
|
|
14649
|
+
},
|
|
14650
|
+
"hostId": {
|
|
14651
|
+
"type": "string",
|
|
14652
|
+
"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."
|
|
14653
|
+
},
|
|
14654
|
+
"notetakerEnabled": {
|
|
14655
|
+
"type": "boolean",
|
|
14656
|
+
"default": true,
|
|
14657
|
+
"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."
|
|
14554
14658
|
},
|
|
14555
14659
|
"recordingStatus": {
|
|
14556
14660
|
"type": "string",
|
|
@@ -14788,6 +14892,22 @@
|
|
|
14788
14892
|
}
|
|
14789
14893
|
}
|
|
14790
14894
|
},
|
|
14895
|
+
{
|
|
14896
|
+
"type": "function",
|
|
14897
|
+
"function": {
|
|
14898
|
+
"name": "list_meeting_attendees",
|
|
14899
|
+
"description": "List Meeting Attendees",
|
|
14900
|
+
"parameters": {
|
|
14901
|
+
"type": "object",
|
|
14902
|
+
"properties": {
|
|
14903
|
+
"include": {
|
|
14904
|
+
"type": "string",
|
|
14905
|
+
"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."
|
|
14906
|
+
}
|
|
14907
|
+
}
|
|
14908
|
+
}
|
|
14909
|
+
}
|
|
14910
|
+
},
|
|
14791
14911
|
{
|
|
14792
14912
|
"type": "function",
|
|
14793
14913
|
"function": {
|
|
@@ -14817,18 +14937,103 @@
|
|
|
14817
14937
|
"attributes": {
|
|
14818
14938
|
"title": "MeetingAttendeeAttributesSchema",
|
|
14819
14939
|
"type": "object",
|
|
14940
|
+
"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.",
|
|
14820
14941
|
"properties": {
|
|
14942
|
+
"chimeAttendeeId": {
|
|
14943
|
+
"type": "string",
|
|
14944
|
+
"description": "Chime SDK attendee id. Server-generated, immutable. Also the resource id of this attendee. Not accepted on the request - server allocates."
|
|
14945
|
+
},
|
|
14946
|
+
"externalUserId": {
|
|
14947
|
+
"type": "string",
|
|
14948
|
+
"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."
|
|
14949
|
+
},
|
|
14950
|
+
"joinToken": {
|
|
14951
|
+
"type": "string",
|
|
14952
|
+
"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."
|
|
14953
|
+
},
|
|
14954
|
+
"principalType": {
|
|
14955
|
+
"type": "string",
|
|
14956
|
+
"enum": [
|
|
14957
|
+
"user",
|
|
14958
|
+
"candidate",
|
|
14959
|
+
"talent",
|
|
14960
|
+
"guest"
|
|
14961
|
+
],
|
|
14962
|
+
"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."
|
|
14963
|
+
},
|
|
14964
|
+
"principalId": {
|
|
14965
|
+
"type": "string",
|
|
14966
|
+
"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)."
|
|
14967
|
+
},
|
|
14821
14968
|
"name": {
|
|
14822
|
-
"type": "string"
|
|
14969
|
+
"type": "string",
|
|
14970
|
+
"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."
|
|
14971
|
+
},
|
|
14972
|
+
"role": {
|
|
14973
|
+
"type": "string",
|
|
14974
|
+
"enum": [
|
|
14975
|
+
"host",
|
|
14976
|
+
"attendee",
|
|
14977
|
+
"candidate",
|
|
14978
|
+
"observer",
|
|
14979
|
+
"interviewer",
|
|
14980
|
+
"notetaker",
|
|
14981
|
+
"sales",
|
|
14982
|
+
"other"
|
|
14983
|
+
],
|
|
14984
|
+
"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."
|
|
14985
|
+
},
|
|
14986
|
+
"status": {
|
|
14987
|
+
"type": "string",
|
|
14988
|
+
"enum": [
|
|
14989
|
+
"joining",
|
|
14990
|
+
"active",
|
|
14991
|
+
"left",
|
|
14992
|
+
"dropped",
|
|
14993
|
+
"ended",
|
|
14994
|
+
"error"
|
|
14995
|
+
],
|
|
14996
|
+
"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."
|
|
14823
14997
|
},
|
|
14824
14998
|
"email": {
|
|
14825
|
-
"type": "string"
|
|
14999
|
+
"type": "string",
|
|
15000
|
+
"description": "Optional. Auth humans: from user profile (server-resolved). Guests: from lobby form (accepted on request)."
|
|
14826
15001
|
},
|
|
14827
|
-
"
|
|
14828
|
-
"type": "string"
|
|
15002
|
+
"phone": {
|
|
15003
|
+
"type": "string",
|
|
15004
|
+
"description": "Optional. Typed in lobby form when present (guest only)."
|
|
14829
15005
|
},
|
|
14830
|
-
"
|
|
14831
|
-
"type": "string"
|
|
15006
|
+
"voice": {
|
|
15007
|
+
"type": "string",
|
|
15008
|
+
"description": "AI only. Realtime model voice (alloy / echo / fable / onyx / nova / shimmer). Used at dispatch."
|
|
15009
|
+
},
|
|
15010
|
+
"config": {
|
|
15011
|
+
"type": "object",
|
|
15012
|
+
"additionalProperties": true,
|
|
15013
|
+
"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."
|
|
15014
|
+
},
|
|
15015
|
+
"taskArn": {
|
|
15016
|
+
"type": "string",
|
|
15017
|
+
"description": "AI only. ECS task ARN for the bot (operational). Server-managed."
|
|
15018
|
+
},
|
|
15019
|
+
"errorMessage": {
|
|
15020
|
+
"type": "string",
|
|
15021
|
+
"description": "Populated when status=error."
|
|
15022
|
+
},
|
|
15023
|
+
"joinedAt": {
|
|
15024
|
+
"type": "string",
|
|
15025
|
+
"format": "date-time",
|
|
15026
|
+
"description": "Server-stamped from chime:AttendeeJoined event."
|
|
15027
|
+
},
|
|
15028
|
+
"leftAt": {
|
|
15029
|
+
"type": "string",
|
|
15030
|
+
"format": "date-time",
|
|
15031
|
+
"description": "Server-stamped from chime:AttendeeLeft / Dropped event."
|
|
15032
|
+
},
|
|
15033
|
+
"chimeMeetingData": {
|
|
15034
|
+
"type": "object",
|
|
15035
|
+
"additionalProperties": true,
|
|
15036
|
+
"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."
|
|
14832
15037
|
}
|
|
14833
15038
|
}
|
|
14834
15039
|
}
|
|
@@ -15003,103 +15208,8 @@
|
|
|
15003
15208
|
{
|
|
15004
15209
|
"type": "function",
|
|
15005
15210
|
"function": {
|
|
15006
|
-
"name": "
|
|
15007
|
-
"description": "
|
|
15008
|
-
"parameters": {
|
|
15009
|
-
"title": "CreateMeetingAiAttendeeRequestBody",
|
|
15010
|
-
"type": "object",
|
|
15011
|
-
"required": [
|
|
15012
|
-
"data"
|
|
15013
|
-
],
|
|
15014
|
-
"properties": {
|
|
15015
|
-
"data": {
|
|
15016
|
-
"title": "CreateMeetingAiAttendeeRequestBodyData",
|
|
15017
|
-
"type": "object",
|
|
15018
|
-
"required": [
|
|
15019
|
-
"type",
|
|
15020
|
-
"attributes"
|
|
15021
|
-
],
|
|
15022
|
-
"properties": {
|
|
15023
|
-
"type": {
|
|
15024
|
-
"type": "string",
|
|
15025
|
-
"enum": [
|
|
15026
|
-
"ai-attendees"
|
|
15027
|
-
]
|
|
15028
|
-
},
|
|
15029
|
-
"attributes": {
|
|
15030
|
-
"title": "MeetingAiAttendeeSettingsSchema",
|
|
15031
|
-
"type": "object",
|
|
15032
|
-
"description": "Settings supplied at createMeetingAiAttendee time. Boe always\njoins with mic on, camera off; toggle via 'boe-control' Chime\nDataMessage at runtime.",
|
|
15033
|
-
"properties": {
|
|
15034
|
-
"displayName": {
|
|
15035
|
-
"type": "string",
|
|
15036
|
-
"default": "Boe"
|
|
15037
|
-
},
|
|
15038
|
-
"voice": {
|
|
15039
|
-
"type": "string",
|
|
15040
|
-
"default": "alloy"
|
|
15041
|
-
},
|
|
15042
|
-
"language": {
|
|
15043
|
-
"type": "string",
|
|
15044
|
-
"description": "Reply language for Boe's assistant behaviour (e.g. English)"
|
|
15045
|
-
},
|
|
15046
|
-
"faceId": {
|
|
15047
|
-
"type": "string",
|
|
15048
|
-
"description": "Simli avatar face UUID for camera_on. Falls back to the tenant default if omitted."
|
|
15049
|
-
},
|
|
15050
|
-
"persona": {
|
|
15051
|
-
"type": "string",
|
|
15052
|
-
"description": "Optional persona text appended to the base system prompt"
|
|
15053
|
-
},
|
|
15054
|
-
"role": {
|
|
15055
|
-
"type": "string",
|
|
15056
|
-
"enum": [
|
|
15057
|
-
"interviewer",
|
|
15058
|
-
"notetaker",
|
|
15059
|
-
"sales"
|
|
15060
|
-
],
|
|
15061
|
-
"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."
|
|
15062
|
-
},
|
|
15063
|
-
"context": {
|
|
15064
|
-
"type": "object",
|
|
15065
|
-
"additionalProperties": true,
|
|
15066
|
-
"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)."
|
|
15067
|
-
}
|
|
15068
|
-
}
|
|
15069
|
-
}
|
|
15070
|
-
}
|
|
15071
|
-
}
|
|
15072
|
-
}
|
|
15073
|
-
}
|
|
15074
|
-
}
|
|
15075
|
-
},
|
|
15076
|
-
{
|
|
15077
|
-
"type": "function",
|
|
15078
|
-
"function": {
|
|
15079
|
-
"name": "list_meeting_ai_attendees",
|
|
15080
|
-
"description": "List Meeting AI Attendees",
|
|
15081
|
-
"parameters": {
|
|
15082
|
-
"type": "object",
|
|
15083
|
-
"properties": {}
|
|
15084
|
-
}
|
|
15085
|
-
}
|
|
15086
|
-
},
|
|
15087
|
-
{
|
|
15088
|
-
"type": "function",
|
|
15089
|
-
"function": {
|
|
15090
|
-
"name": "meeting_ai_attendees_options",
|
|
15091
|
-
"description": "Meeting AI Attendees Options",
|
|
15092
|
-
"parameters": {
|
|
15093
|
-
"type": "object",
|
|
15094
|
-
"properties": {}
|
|
15095
|
-
}
|
|
15096
|
-
}
|
|
15097
|
-
},
|
|
15098
|
-
{
|
|
15099
|
-
"type": "function",
|
|
15100
|
-
"function": {
|
|
15101
|
-
"name": "show_meeting_ai_attendee",
|
|
15102
|
-
"description": "Show Meeting AI Attendee",
|
|
15211
|
+
"name": "show_meeting_attendee",
|
|
15212
|
+
"description": "Show Meeting Attendee",
|
|
15103
15213
|
"parameters": {
|
|
15104
15214
|
"type": "object",
|
|
15105
15215
|
"properties": {}
|
|
@@ -15109,8 +15219,8 @@
|
|
|
15109
15219
|
{
|
|
15110
15220
|
"type": "function",
|
|
15111
15221
|
"function": {
|
|
15112
|
-
"name": "
|
|
15113
|
-
"description": "
|
|
15222
|
+
"name": "delete_meeting_attendee",
|
|
15223
|
+
"description": "Remove Meeting Attendee",
|
|
15114
15224
|
"parameters": {
|
|
15115
15225
|
"type": "object",
|
|
15116
15226
|
"properties": {}
|
|
@@ -15120,8 +15230,8 @@
|
|
|
15120
15230
|
{
|
|
15121
15231
|
"type": "function",
|
|
15122
15232
|
"function": {
|
|
15123
|
-
"name": "
|
|
15124
|
-
"description": "Meeting
|
|
15233
|
+
"name": "meeting_attendee_options",
|
|
15234
|
+
"description": "Meeting Attendee Options",
|
|
15125
15235
|
"parameters": {
|
|
15126
15236
|
"type": "object",
|
|
15127
15237
|
"properties": {}
|