@smartytalent/openai-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 +241 -123
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -914,7 +914,16 @@
|
|
|
914
914
|
"type": "string"
|
|
915
915
|
},
|
|
916
916
|
"isSystem": {
|
|
917
|
-
"type": "boolean"
|
|
917
|
+
"type": "boolean",
|
|
918
|
+
"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`."
|
|
919
|
+
},
|
|
920
|
+
"type": {
|
|
921
|
+
"type": "string",
|
|
922
|
+
"enum": [
|
|
923
|
+
"human",
|
|
924
|
+
"ai"
|
|
925
|
+
],
|
|
926
|
+
"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)."
|
|
918
927
|
},
|
|
919
928
|
"address": {
|
|
920
929
|
"type": "object",
|
|
@@ -1173,7 +1182,16 @@
|
|
|
1173
1182
|
"type": "string"
|
|
1174
1183
|
},
|
|
1175
1184
|
"isSystem": {
|
|
1176
|
-
"type": "boolean"
|
|
1185
|
+
"type": "boolean",
|
|
1186
|
+
"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`."
|
|
1187
|
+
},
|
|
1188
|
+
"type": {
|
|
1189
|
+
"type": "string",
|
|
1190
|
+
"enum": [
|
|
1191
|
+
"human",
|
|
1192
|
+
"ai"
|
|
1193
|
+
],
|
|
1194
|
+
"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)."
|
|
1177
1195
|
},
|
|
1178
1196
|
"address": {
|
|
1179
1197
|
"type": "object",
|
|
@@ -13875,6 +13893,18 @@
|
|
|
13875
13893
|
"archived"
|
|
13876
13894
|
]
|
|
13877
13895
|
},
|
|
13896
|
+
"filterCandidate": {
|
|
13897
|
+
"type": "string",
|
|
13898
|
+
"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."
|
|
13899
|
+
},
|
|
13900
|
+
"filterJob": {
|
|
13901
|
+
"type": "string",
|
|
13902
|
+
"description": "Filter meetings by linked job id. Backed by the JobIdIndex GSI."
|
|
13903
|
+
},
|
|
13904
|
+
"filterHost": {
|
|
13905
|
+
"type": "string",
|
|
13906
|
+
"description": "Filter meetings by the user hosting (human recruiter or boe user). Backed by the HostIdIndex GSI."
|
|
13907
|
+
},
|
|
13878
13908
|
"filterCreatedFrom": {
|
|
13879
13909
|
"type": "string",
|
|
13880
13910
|
"description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
|
|
@@ -14061,11 +14091,22 @@
|
|
|
14061
14091
|
"description": "Raw AWS Chime CreateMeeting `Meeting` object - passed verbatim to chime-sdk-js. Includes MeetingFeatures.Audio.EchoReduction when enabled server-side.",
|
|
14062
14092
|
"additionalProperties": true
|
|
14063
14093
|
},
|
|
14064
|
-
"
|
|
14065
|
-
"type": "
|
|
14066
|
-
"
|
|
14067
|
-
|
|
14068
|
-
|
|
14094
|
+
"candidateId": {
|
|
14095
|
+
"type": "string",
|
|
14096
|
+
"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."
|
|
14097
|
+
},
|
|
14098
|
+
"jobId": {
|
|
14099
|
+
"type": "string",
|
|
14100
|
+
"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."
|
|
14101
|
+
},
|
|
14102
|
+
"hostId": {
|
|
14103
|
+
"type": "string",
|
|
14104
|
+
"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."
|
|
14105
|
+
},
|
|
14106
|
+
"notetakerEnabled": {
|
|
14107
|
+
"type": "boolean",
|
|
14108
|
+
"default": true,
|
|
14109
|
+
"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."
|
|
14069
14110
|
},
|
|
14070
14111
|
"recordingStatus": {
|
|
14071
14112
|
"type": "string",
|
|
@@ -14279,14 +14320,15 @@
|
|
|
14279
14320
|
"title": "MeetingRelationshipsSchema",
|
|
14280
14321
|
"type": "object",
|
|
14281
14322
|
"properties": {
|
|
14282
|
-
"
|
|
14283
|
-
"title": "
|
|
14323
|
+
"team": {
|
|
14324
|
+
"title": "MeetingRelationshipsTeamSchema",
|
|
14284
14325
|
"type": "object",
|
|
14326
|
+
"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.",
|
|
14285
14327
|
"properties": {
|
|
14286
14328
|
"data": {
|
|
14287
14329
|
"type": "array",
|
|
14288
14330
|
"items": {
|
|
14289
|
-
"title": "
|
|
14331
|
+
"title": "MeetingRelationshipsTeamDataSchema",
|
|
14290
14332
|
"type": "object",
|
|
14291
14333
|
"properties": {
|
|
14292
14334
|
"type": {
|
|
@@ -14339,7 +14381,7 @@
|
|
|
14339
14381
|
"candidate": {
|
|
14340
14382
|
"title": "MeetingRelationshipsCandidateSchema",
|
|
14341
14383
|
"type": "object",
|
|
14342
|
-
"description": "Candidate the meeting is about, when known (e.g. interview).",
|
|
14384
|
+
"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.",
|
|
14343
14385
|
"properties": {
|
|
14344
14386
|
"data": {
|
|
14345
14387
|
"type": "object",
|
|
@@ -14371,6 +14413,65 @@
|
|
|
14371
14413
|
}
|
|
14372
14414
|
}
|
|
14373
14415
|
}
|
|
14416
|
+
},
|
|
14417
|
+
"host": {
|
|
14418
|
+
"title": "MeetingRelationshipsHostSchema",
|
|
14419
|
+
"type": "object",
|
|
14420
|
+
"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.",
|
|
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
|
+
"job": {
|
|
14436
|
+
"title": "MeetingRelationshipsJobSchema",
|
|
14437
|
+
"type": "object",
|
|
14438
|
+
"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).",
|
|
14439
|
+
"properties": {
|
|
14440
|
+
"data": {
|
|
14441
|
+
"type": "object",
|
|
14442
|
+
"properties": {
|
|
14443
|
+
"type": {
|
|
14444
|
+
"type": "string"
|
|
14445
|
+
},
|
|
14446
|
+
"id": {
|
|
14447
|
+
"type": "string"
|
|
14448
|
+
}
|
|
14449
|
+
}
|
|
14450
|
+
}
|
|
14451
|
+
}
|
|
14452
|
+
},
|
|
14453
|
+
"attendees": {
|
|
14454
|
+
"title": "MeetingRelationshipsAttendeesSchema",
|
|
14455
|
+
"type": "object",
|
|
14456
|
+
"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.",
|
|
14457
|
+
"properties": {
|
|
14458
|
+
"data": {
|
|
14459
|
+
"type": "array",
|
|
14460
|
+
"items": {
|
|
14461
|
+
"title": "MeetingRelationshipsAttendeesDataSchema",
|
|
14462
|
+
"type": "object",
|
|
14463
|
+
"properties": {
|
|
14464
|
+
"type": {
|
|
14465
|
+
"type": "string"
|
|
14466
|
+
},
|
|
14467
|
+
"id": {
|
|
14468
|
+
"type": "string",
|
|
14469
|
+
"description": "Chime attendee id (resource id of the attendee)."
|
|
14470
|
+
}
|
|
14471
|
+
}
|
|
14472
|
+
}
|
|
14473
|
+
}
|
|
14474
|
+
}
|
|
14374
14475
|
}
|
|
14375
14476
|
}
|
|
14376
14477
|
}
|
|
@@ -14556,11 +14657,22 @@
|
|
|
14556
14657
|
"description": "Raw AWS Chime CreateMeeting `Meeting` object - passed verbatim to chime-sdk-js. Includes MeetingFeatures.Audio.EchoReduction when enabled server-side.",
|
|
14557
14658
|
"additionalProperties": true
|
|
14558
14659
|
},
|
|
14559
|
-
"
|
|
14560
|
-
"type": "
|
|
14561
|
-
"
|
|
14562
|
-
|
|
14563
|
-
|
|
14660
|
+
"candidateId": {
|
|
14661
|
+
"type": "string",
|
|
14662
|
+
"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."
|
|
14663
|
+
},
|
|
14664
|
+
"jobId": {
|
|
14665
|
+
"type": "string",
|
|
14666
|
+
"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."
|
|
14667
|
+
},
|
|
14668
|
+
"hostId": {
|
|
14669
|
+
"type": "string",
|
|
14670
|
+
"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."
|
|
14671
|
+
},
|
|
14672
|
+
"notetakerEnabled": {
|
|
14673
|
+
"type": "boolean",
|
|
14674
|
+
"default": true,
|
|
14675
|
+
"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."
|
|
14564
14676
|
},
|
|
14565
14677
|
"recordingStatus": {
|
|
14566
14678
|
"type": "string",
|
|
@@ -14798,6 +14910,22 @@
|
|
|
14798
14910
|
}
|
|
14799
14911
|
}
|
|
14800
14912
|
},
|
|
14913
|
+
{
|
|
14914
|
+
"type": "function",
|
|
14915
|
+
"function": {
|
|
14916
|
+
"name": "list_meeting_attendees",
|
|
14917
|
+
"description": "List Meeting Attendees",
|
|
14918
|
+
"parameters": {
|
|
14919
|
+
"type": "object",
|
|
14920
|
+
"properties": {
|
|
14921
|
+
"include": {
|
|
14922
|
+
"type": "string",
|
|
14923
|
+
"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."
|
|
14924
|
+
}
|
|
14925
|
+
}
|
|
14926
|
+
}
|
|
14927
|
+
}
|
|
14928
|
+
},
|
|
14801
14929
|
{
|
|
14802
14930
|
"type": "function",
|
|
14803
14931
|
"function": {
|
|
@@ -14827,18 +14955,103 @@
|
|
|
14827
14955
|
"attributes": {
|
|
14828
14956
|
"title": "MeetingAttendeeAttributesSchema",
|
|
14829
14957
|
"type": "object",
|
|
14958
|
+
"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.",
|
|
14830
14959
|
"properties": {
|
|
14960
|
+
"chimeAttendeeId": {
|
|
14961
|
+
"type": "string",
|
|
14962
|
+
"description": "Chime SDK attendee id. Server-generated, immutable. Also the resource id of this attendee. Not accepted on the request - server allocates."
|
|
14963
|
+
},
|
|
14964
|
+
"externalUserId": {
|
|
14965
|
+
"type": "string",
|
|
14966
|
+
"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."
|
|
14967
|
+
},
|
|
14968
|
+
"joinToken": {
|
|
14969
|
+
"type": "string",
|
|
14970
|
+
"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."
|
|
14971
|
+
},
|
|
14972
|
+
"principalType": {
|
|
14973
|
+
"type": "string",
|
|
14974
|
+
"enum": [
|
|
14975
|
+
"user",
|
|
14976
|
+
"candidate",
|
|
14977
|
+
"talent",
|
|
14978
|
+
"guest"
|
|
14979
|
+
],
|
|
14980
|
+
"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."
|
|
14981
|
+
},
|
|
14982
|
+
"principalId": {
|
|
14983
|
+
"type": "string",
|
|
14984
|
+
"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)."
|
|
14985
|
+
},
|
|
14831
14986
|
"name": {
|
|
14832
|
-
"type": "string"
|
|
14987
|
+
"type": "string",
|
|
14988
|
+
"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."
|
|
14989
|
+
},
|
|
14990
|
+
"role": {
|
|
14991
|
+
"type": "string",
|
|
14992
|
+
"enum": [
|
|
14993
|
+
"host",
|
|
14994
|
+
"attendee",
|
|
14995
|
+
"candidate",
|
|
14996
|
+
"observer",
|
|
14997
|
+
"interviewer",
|
|
14998
|
+
"notetaker",
|
|
14999
|
+
"sales",
|
|
15000
|
+
"other"
|
|
15001
|
+
],
|
|
15002
|
+
"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."
|
|
15003
|
+
},
|
|
15004
|
+
"status": {
|
|
15005
|
+
"type": "string",
|
|
15006
|
+
"enum": [
|
|
15007
|
+
"joining",
|
|
15008
|
+
"active",
|
|
15009
|
+
"left",
|
|
15010
|
+
"dropped",
|
|
15011
|
+
"ended",
|
|
15012
|
+
"error"
|
|
15013
|
+
],
|
|
15014
|
+
"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."
|
|
14833
15015
|
},
|
|
14834
15016
|
"email": {
|
|
14835
|
-
"type": "string"
|
|
15017
|
+
"type": "string",
|
|
15018
|
+
"description": "Optional. Auth humans: from user profile (server-resolved). Guests: from lobby form (accepted on request)."
|
|
14836
15019
|
},
|
|
14837
|
-
"
|
|
14838
|
-
"type": "string"
|
|
15020
|
+
"phone": {
|
|
15021
|
+
"type": "string",
|
|
15022
|
+
"description": "Optional. Typed in lobby form when present (guest only)."
|
|
14839
15023
|
},
|
|
14840
|
-
"
|
|
14841
|
-
"type": "string"
|
|
15024
|
+
"voice": {
|
|
15025
|
+
"type": "string",
|
|
15026
|
+
"description": "AI only. Realtime model voice (alloy / echo / fable / onyx / nova / shimmer). Used at dispatch."
|
|
15027
|
+
},
|
|
15028
|
+
"config": {
|
|
15029
|
+
"type": "object",
|
|
15030
|
+
"additionalProperties": true,
|
|
15031
|
+
"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."
|
|
15032
|
+
},
|
|
15033
|
+
"taskArn": {
|
|
15034
|
+
"type": "string",
|
|
15035
|
+
"description": "AI only. ECS task ARN for the bot (operational). Server-managed."
|
|
15036
|
+
},
|
|
15037
|
+
"errorMessage": {
|
|
15038
|
+
"type": "string",
|
|
15039
|
+
"description": "Populated when status=error."
|
|
15040
|
+
},
|
|
15041
|
+
"joinedAt": {
|
|
15042
|
+
"type": "string",
|
|
15043
|
+
"format": "date-time",
|
|
15044
|
+
"description": "Server-stamped from chime:AttendeeJoined event."
|
|
15045
|
+
},
|
|
15046
|
+
"leftAt": {
|
|
15047
|
+
"type": "string",
|
|
15048
|
+
"format": "date-time",
|
|
15049
|
+
"description": "Server-stamped from chime:AttendeeLeft / Dropped event."
|
|
15050
|
+
},
|
|
15051
|
+
"chimeMeetingData": {
|
|
15052
|
+
"type": "object",
|
|
15053
|
+
"additionalProperties": true,
|
|
15054
|
+
"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."
|
|
14842
15055
|
}
|
|
14843
15056
|
}
|
|
14844
15057
|
}
|
|
@@ -15013,103 +15226,8 @@
|
|
|
15013
15226
|
{
|
|
15014
15227
|
"type": "function",
|
|
15015
15228
|
"function": {
|
|
15016
|
-
"name": "
|
|
15017
|
-
"description": "
|
|
15018
|
-
"parameters": {
|
|
15019
|
-
"title": "CreateMeetingAiAttendeeRequestBody",
|
|
15020
|
-
"type": "object",
|
|
15021
|
-
"required": [
|
|
15022
|
-
"data"
|
|
15023
|
-
],
|
|
15024
|
-
"properties": {
|
|
15025
|
-
"data": {
|
|
15026
|
-
"title": "CreateMeetingAiAttendeeRequestBodyData",
|
|
15027
|
-
"type": "object",
|
|
15028
|
-
"required": [
|
|
15029
|
-
"type",
|
|
15030
|
-
"attributes"
|
|
15031
|
-
],
|
|
15032
|
-
"properties": {
|
|
15033
|
-
"type": {
|
|
15034
|
-
"type": "string",
|
|
15035
|
-
"enum": [
|
|
15036
|
-
"ai-attendees"
|
|
15037
|
-
]
|
|
15038
|
-
},
|
|
15039
|
-
"attributes": {
|
|
15040
|
-
"title": "MeetingAiAttendeeSettingsSchema",
|
|
15041
|
-
"type": "object",
|
|
15042
|
-
"description": "Settings supplied at createMeetingAiAttendee time. Boe always\njoins with mic on, camera off; toggle via 'boe-control' Chime\nDataMessage at runtime.",
|
|
15043
|
-
"properties": {
|
|
15044
|
-
"displayName": {
|
|
15045
|
-
"type": "string",
|
|
15046
|
-
"default": "Boe"
|
|
15047
|
-
},
|
|
15048
|
-
"voice": {
|
|
15049
|
-
"type": "string",
|
|
15050
|
-
"default": "alloy"
|
|
15051
|
-
},
|
|
15052
|
-
"language": {
|
|
15053
|
-
"type": "string",
|
|
15054
|
-
"description": "Reply language for Boe's assistant behaviour (e.g. English)"
|
|
15055
|
-
},
|
|
15056
|
-
"faceId": {
|
|
15057
|
-
"type": "string",
|
|
15058
|
-
"description": "Simli avatar face UUID for camera_on. Falls back to the tenant default if omitted."
|
|
15059
|
-
},
|
|
15060
|
-
"persona": {
|
|
15061
|
-
"type": "string",
|
|
15062
|
-
"description": "Optional persona text appended to the base system prompt"
|
|
15063
|
-
},
|
|
15064
|
-
"role": {
|
|
15065
|
-
"type": "string",
|
|
15066
|
-
"enum": [
|
|
15067
|
-
"interviewer",
|
|
15068
|
-
"notetaker",
|
|
15069
|
-
"sales"
|
|
15070
|
-
],
|
|
15071
|
-
"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."
|
|
15072
|
-
},
|
|
15073
|
-
"context": {
|
|
15074
|
-
"type": "object",
|
|
15075
|
-
"additionalProperties": true,
|
|
15076
|
-
"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)."
|
|
15077
|
-
}
|
|
15078
|
-
}
|
|
15079
|
-
}
|
|
15080
|
-
}
|
|
15081
|
-
}
|
|
15082
|
-
}
|
|
15083
|
-
}
|
|
15084
|
-
}
|
|
15085
|
-
},
|
|
15086
|
-
{
|
|
15087
|
-
"type": "function",
|
|
15088
|
-
"function": {
|
|
15089
|
-
"name": "list_meeting_ai_attendees",
|
|
15090
|
-
"description": "List Meeting AI Attendees",
|
|
15091
|
-
"parameters": {
|
|
15092
|
-
"type": "object",
|
|
15093
|
-
"properties": {}
|
|
15094
|
-
}
|
|
15095
|
-
}
|
|
15096
|
-
},
|
|
15097
|
-
{
|
|
15098
|
-
"type": "function",
|
|
15099
|
-
"function": {
|
|
15100
|
-
"name": "meeting_ai_attendees_options",
|
|
15101
|
-
"description": "Meeting AI Attendees Options",
|
|
15102
|
-
"parameters": {
|
|
15103
|
-
"type": "object",
|
|
15104
|
-
"properties": {}
|
|
15105
|
-
}
|
|
15106
|
-
}
|
|
15107
|
-
},
|
|
15108
|
-
{
|
|
15109
|
-
"type": "function",
|
|
15110
|
-
"function": {
|
|
15111
|
-
"name": "show_meeting_ai_attendee",
|
|
15112
|
-
"description": "Show Meeting AI Attendee",
|
|
15229
|
+
"name": "show_meeting_attendee",
|
|
15230
|
+
"description": "Show Meeting Attendee",
|
|
15113
15231
|
"parameters": {
|
|
15114
15232
|
"type": "object",
|
|
15115
15233
|
"properties": {}
|
|
@@ -15119,8 +15237,8 @@
|
|
|
15119
15237
|
{
|
|
15120
15238
|
"type": "function",
|
|
15121
15239
|
"function": {
|
|
15122
|
-
"name": "
|
|
15123
|
-
"description": "
|
|
15240
|
+
"name": "delete_meeting_attendee",
|
|
15241
|
+
"description": "Remove Meeting Attendee",
|
|
15124
15242
|
"parameters": {
|
|
15125
15243
|
"type": "object",
|
|
15126
15244
|
"properties": {}
|
|
@@ -15130,8 +15248,8 @@
|
|
|
15130
15248
|
{
|
|
15131
15249
|
"type": "function",
|
|
15132
15250
|
"function": {
|
|
15133
|
-
"name": "
|
|
15134
|
-
"description": "Meeting
|
|
15251
|
+
"name": "meeting_attendee_options",
|
|
15252
|
+
"description": "Meeting Attendee Options",
|
|
15135
15253
|
"parameters": {
|
|
15136
15254
|
"type": "object",
|
|
15137
15255
|
"properties": {}
|