@smartytalent/openai-tools 0.1.33-dev.65 → 0.1.33-dev.67
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 +360 -0
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -15048,6 +15048,23 @@
|
|
|
15048
15048
|
"format": "date-time",
|
|
15049
15049
|
"description": "Server-stamped from chime:AttendeeLeft / Dropped event."
|
|
15050
15050
|
},
|
|
15051
|
+
"experienceRating": {
|
|
15052
|
+
"type": "object",
|
|
15053
|
+
"description": "Post-meeting subjective rating submitted by the attendee after\nthey left. Each dimension is 1-5 (1=very bad, 5=very good).\nSubmit gate (server-side): only accepted while status is in\n{left, dropped, ended} - 400 otherwise. submittedAt is\nserver-stamped; clients cannot set it. Schema is forward-\ncompatible - new dimensions can be added without migration.",
|
|
15054
|
+
"properties": {
|
|
15055
|
+
"audioVideo": {
|
|
15056
|
+
"type": "integer",
|
|
15057
|
+
"minimum": 1,
|
|
15058
|
+
"maximum": 5,
|
|
15059
|
+
"description": "1=Very bad, 5=Very good. Captures the attendee's perception of audio + video quality during the call."
|
|
15060
|
+
},
|
|
15061
|
+
"submittedAt": {
|
|
15062
|
+
"type": "string",
|
|
15063
|
+
"format": "date-time",
|
|
15064
|
+
"description": "Server-stamped on PATCH. Client-supplied values are ignored."
|
|
15065
|
+
}
|
|
15066
|
+
}
|
|
15067
|
+
},
|
|
15051
15068
|
"chimeMeetingData": {
|
|
15052
15069
|
"type": "object",
|
|
15053
15070
|
"additionalProperties": true,
|
|
@@ -15072,6 +15089,17 @@
|
|
|
15072
15089
|
}
|
|
15073
15090
|
}
|
|
15074
15091
|
},
|
|
15092
|
+
{
|
|
15093
|
+
"type": "function",
|
|
15094
|
+
"function": {
|
|
15095
|
+
"name": "list_guest_meeting_attendees",
|
|
15096
|
+
"description": "List Guest Meeting Attendees",
|
|
15097
|
+
"parameters": {
|
|
15098
|
+
"type": "object",
|
|
15099
|
+
"properties": {}
|
|
15100
|
+
}
|
|
15101
|
+
}
|
|
15102
|
+
},
|
|
15075
15103
|
{
|
|
15076
15104
|
"type": "function",
|
|
15077
15105
|
"function": {
|
|
@@ -15194,6 +15222,23 @@
|
|
|
15194
15222
|
"format": "date-time",
|
|
15195
15223
|
"description": "Server-stamped from chime:AttendeeLeft / Dropped event."
|
|
15196
15224
|
},
|
|
15225
|
+
"experienceRating": {
|
|
15226
|
+
"type": "object",
|
|
15227
|
+
"description": "Post-meeting subjective rating submitted by the attendee after\nthey left. Each dimension is 1-5 (1=very bad, 5=very good).\nSubmit gate (server-side): only accepted while status is in\n{left, dropped, ended} - 400 otherwise. submittedAt is\nserver-stamped; clients cannot set it. Schema is forward-\ncompatible - new dimensions can be added without migration.",
|
|
15228
|
+
"properties": {
|
|
15229
|
+
"audioVideo": {
|
|
15230
|
+
"type": "integer",
|
|
15231
|
+
"minimum": 1,
|
|
15232
|
+
"maximum": 5,
|
|
15233
|
+
"description": "1=Very bad, 5=Very good. Captures the attendee's perception of audio + video quality during the call."
|
|
15234
|
+
},
|
|
15235
|
+
"submittedAt": {
|
|
15236
|
+
"type": "string",
|
|
15237
|
+
"format": "date-time",
|
|
15238
|
+
"description": "Server-stamped on PATCH. Client-supplied values are ignored."
|
|
15239
|
+
}
|
|
15240
|
+
}
|
|
15241
|
+
},
|
|
15197
15242
|
"chimeMeetingData": {
|
|
15198
15243
|
"type": "object",
|
|
15199
15244
|
"additionalProperties": true,
|
|
@@ -15218,6 +15263,169 @@
|
|
|
15218
15263
|
}
|
|
15219
15264
|
}
|
|
15220
15265
|
},
|
|
15266
|
+
{
|
|
15267
|
+
"type": "function",
|
|
15268
|
+
"function": {
|
|
15269
|
+
"name": "patch_guest_meeting_attendee",
|
|
15270
|
+
"description": "Patch Guest Meeting Attendee",
|
|
15271
|
+
"parameters": {
|
|
15272
|
+
"title": "CreateMeetingAttendeeRequestBody",
|
|
15273
|
+
"type": "object",
|
|
15274
|
+
"required": [
|
|
15275
|
+
"data"
|
|
15276
|
+
],
|
|
15277
|
+
"properties": {
|
|
15278
|
+
"data": {
|
|
15279
|
+
"title": "CreateMeetingAttendeeRequestBodyData",
|
|
15280
|
+
"type": "object",
|
|
15281
|
+
"required": [
|
|
15282
|
+
"type",
|
|
15283
|
+
"attributes"
|
|
15284
|
+
],
|
|
15285
|
+
"properties": {
|
|
15286
|
+
"type": {
|
|
15287
|
+
"type": "string",
|
|
15288
|
+
"enum": [
|
|
15289
|
+
"attendees"
|
|
15290
|
+
]
|
|
15291
|
+
},
|
|
15292
|
+
"attributes": {
|
|
15293
|
+
"title": "MeetingAttendeeAttributesSchema",
|
|
15294
|
+
"type": "object",
|
|
15295
|
+
"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.",
|
|
15296
|
+
"properties": {
|
|
15297
|
+
"chimeAttendeeId": {
|
|
15298
|
+
"type": "string",
|
|
15299
|
+
"description": "Chime SDK attendee id. Server-generated, immutable. Also the resource id of this attendee. Not accepted on the request - server allocates."
|
|
15300
|
+
},
|
|
15301
|
+
"externalUserId": {
|
|
15302
|
+
"type": "string",
|
|
15303
|
+
"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."
|
|
15304
|
+
},
|
|
15305
|
+
"joinToken": {
|
|
15306
|
+
"type": "string",
|
|
15307
|
+
"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."
|
|
15308
|
+
},
|
|
15309
|
+
"principalType": {
|
|
15310
|
+
"type": "string",
|
|
15311
|
+
"enum": [
|
|
15312
|
+
"user",
|
|
15313
|
+
"candidate",
|
|
15314
|
+
"talent",
|
|
15315
|
+
"guest"
|
|
15316
|
+
],
|
|
15317
|
+
"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."
|
|
15318
|
+
},
|
|
15319
|
+
"principalId": {
|
|
15320
|
+
"type": "string",
|
|
15321
|
+
"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)."
|
|
15322
|
+
},
|
|
15323
|
+
"name": {
|
|
15324
|
+
"type": "string",
|
|
15325
|
+
"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."
|
|
15326
|
+
},
|
|
15327
|
+
"role": {
|
|
15328
|
+
"type": "string",
|
|
15329
|
+
"enum": [
|
|
15330
|
+
"host",
|
|
15331
|
+
"attendee",
|
|
15332
|
+
"candidate",
|
|
15333
|
+
"observer",
|
|
15334
|
+
"interviewer",
|
|
15335
|
+
"notetaker",
|
|
15336
|
+
"sales",
|
|
15337
|
+
"other"
|
|
15338
|
+
],
|
|
15339
|
+
"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."
|
|
15340
|
+
},
|
|
15341
|
+
"status": {
|
|
15342
|
+
"type": "string",
|
|
15343
|
+
"enum": [
|
|
15344
|
+
"joining",
|
|
15345
|
+
"active",
|
|
15346
|
+
"left",
|
|
15347
|
+
"dropped",
|
|
15348
|
+
"ended",
|
|
15349
|
+
"error"
|
|
15350
|
+
],
|
|
15351
|
+
"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."
|
|
15352
|
+
},
|
|
15353
|
+
"email": {
|
|
15354
|
+
"type": "string",
|
|
15355
|
+
"description": "Optional. Auth humans: from user profile (server-resolved). Guests: from lobby form (accepted on request)."
|
|
15356
|
+
},
|
|
15357
|
+
"phone": {
|
|
15358
|
+
"type": "string",
|
|
15359
|
+
"description": "Optional. Typed in lobby form when present (guest only)."
|
|
15360
|
+
},
|
|
15361
|
+
"voice": {
|
|
15362
|
+
"type": "string",
|
|
15363
|
+
"description": "AI only. Realtime model voice (alloy / echo / fable / onyx / nova / shimmer). Used at dispatch."
|
|
15364
|
+
},
|
|
15365
|
+
"config": {
|
|
15366
|
+
"type": "object",
|
|
15367
|
+
"additionalProperties": true,
|
|
15368
|
+
"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."
|
|
15369
|
+
},
|
|
15370
|
+
"taskArn": {
|
|
15371
|
+
"type": "string",
|
|
15372
|
+
"description": "AI only. ECS task ARN for the bot (operational). Server-managed."
|
|
15373
|
+
},
|
|
15374
|
+
"errorMessage": {
|
|
15375
|
+
"type": "string",
|
|
15376
|
+
"description": "Populated when status=error."
|
|
15377
|
+
},
|
|
15378
|
+
"joinedAt": {
|
|
15379
|
+
"type": "string",
|
|
15380
|
+
"format": "date-time",
|
|
15381
|
+
"description": "Server-stamped from chime:AttendeeJoined event."
|
|
15382
|
+
},
|
|
15383
|
+
"leftAt": {
|
|
15384
|
+
"type": "string",
|
|
15385
|
+
"format": "date-time",
|
|
15386
|
+
"description": "Server-stamped from chime:AttendeeLeft / Dropped event."
|
|
15387
|
+
},
|
|
15388
|
+
"experienceRating": {
|
|
15389
|
+
"type": "object",
|
|
15390
|
+
"description": "Post-meeting subjective rating submitted by the attendee after\nthey left. Each dimension is 1-5 (1=very bad, 5=very good).\nSubmit gate (server-side): only accepted while status is in\n{left, dropped, ended} - 400 otherwise. submittedAt is\nserver-stamped; clients cannot set it. Schema is forward-\ncompatible - new dimensions can be added without migration.",
|
|
15391
|
+
"properties": {
|
|
15392
|
+
"audioVideo": {
|
|
15393
|
+
"type": "integer",
|
|
15394
|
+
"minimum": 1,
|
|
15395
|
+
"maximum": 5,
|
|
15396
|
+
"description": "1=Very bad, 5=Very good. Captures the attendee's perception of audio + video quality during the call."
|
|
15397
|
+
},
|
|
15398
|
+
"submittedAt": {
|
|
15399
|
+
"type": "string",
|
|
15400
|
+
"format": "date-time",
|
|
15401
|
+
"description": "Server-stamped on PATCH. Client-supplied values are ignored."
|
|
15402
|
+
}
|
|
15403
|
+
}
|
|
15404
|
+
},
|
|
15405
|
+
"chimeMeetingData": {
|
|
15406
|
+
"type": "object",
|
|
15407
|
+
"additionalProperties": true,
|
|
15408
|
+
"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."
|
|
15409
|
+
}
|
|
15410
|
+
}
|
|
15411
|
+
}
|
|
15412
|
+
}
|
|
15413
|
+
}
|
|
15414
|
+
}
|
|
15415
|
+
}
|
|
15416
|
+
}
|
|
15417
|
+
},
|
|
15418
|
+
{
|
|
15419
|
+
"type": "function",
|
|
15420
|
+
"function": {
|
|
15421
|
+
"name": "guest_meeting_attendee_options",
|
|
15422
|
+
"description": "Guest Meeting Attendee Options",
|
|
15423
|
+
"parameters": {
|
|
15424
|
+
"type": "object",
|
|
15425
|
+
"properties": {}
|
|
15426
|
+
}
|
|
15427
|
+
}
|
|
15428
|
+
},
|
|
15221
15429
|
{
|
|
15222
15430
|
"type": "function",
|
|
15223
15431
|
"function": {
|
|
@@ -15380,6 +15588,158 @@
|
|
|
15380
15588
|
}
|
|
15381
15589
|
}
|
|
15382
15590
|
},
|
|
15591
|
+
{
|
|
15592
|
+
"type": "function",
|
|
15593
|
+
"function": {
|
|
15594
|
+
"name": "patch_meeting_attendee",
|
|
15595
|
+
"description": "Patch Meeting Attendee",
|
|
15596
|
+
"parameters": {
|
|
15597
|
+
"title": "CreateMeetingAttendeeRequestBody",
|
|
15598
|
+
"type": "object",
|
|
15599
|
+
"required": [
|
|
15600
|
+
"data"
|
|
15601
|
+
],
|
|
15602
|
+
"properties": {
|
|
15603
|
+
"data": {
|
|
15604
|
+
"title": "CreateMeetingAttendeeRequestBodyData",
|
|
15605
|
+
"type": "object",
|
|
15606
|
+
"required": [
|
|
15607
|
+
"type",
|
|
15608
|
+
"attributes"
|
|
15609
|
+
],
|
|
15610
|
+
"properties": {
|
|
15611
|
+
"type": {
|
|
15612
|
+
"type": "string",
|
|
15613
|
+
"enum": [
|
|
15614
|
+
"attendees"
|
|
15615
|
+
]
|
|
15616
|
+
},
|
|
15617
|
+
"attributes": {
|
|
15618
|
+
"title": "MeetingAttendeeAttributesSchema",
|
|
15619
|
+
"type": "object",
|
|
15620
|
+
"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.",
|
|
15621
|
+
"properties": {
|
|
15622
|
+
"chimeAttendeeId": {
|
|
15623
|
+
"type": "string",
|
|
15624
|
+
"description": "Chime SDK attendee id. Server-generated, immutable. Also the resource id of this attendee. Not accepted on the request - server allocates."
|
|
15625
|
+
},
|
|
15626
|
+
"externalUserId": {
|
|
15627
|
+
"type": "string",
|
|
15628
|
+
"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."
|
|
15629
|
+
},
|
|
15630
|
+
"joinToken": {
|
|
15631
|
+
"type": "string",
|
|
15632
|
+
"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."
|
|
15633
|
+
},
|
|
15634
|
+
"principalType": {
|
|
15635
|
+
"type": "string",
|
|
15636
|
+
"enum": [
|
|
15637
|
+
"user",
|
|
15638
|
+
"candidate",
|
|
15639
|
+
"talent",
|
|
15640
|
+
"guest"
|
|
15641
|
+
],
|
|
15642
|
+
"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."
|
|
15643
|
+
},
|
|
15644
|
+
"principalId": {
|
|
15645
|
+
"type": "string",
|
|
15646
|
+
"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)."
|
|
15647
|
+
},
|
|
15648
|
+
"name": {
|
|
15649
|
+
"type": "string",
|
|
15650
|
+
"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."
|
|
15651
|
+
},
|
|
15652
|
+
"role": {
|
|
15653
|
+
"type": "string",
|
|
15654
|
+
"enum": [
|
|
15655
|
+
"host",
|
|
15656
|
+
"attendee",
|
|
15657
|
+
"candidate",
|
|
15658
|
+
"observer",
|
|
15659
|
+
"interviewer",
|
|
15660
|
+
"notetaker",
|
|
15661
|
+
"sales",
|
|
15662
|
+
"other"
|
|
15663
|
+
],
|
|
15664
|
+
"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."
|
|
15665
|
+
},
|
|
15666
|
+
"status": {
|
|
15667
|
+
"type": "string",
|
|
15668
|
+
"enum": [
|
|
15669
|
+
"joining",
|
|
15670
|
+
"active",
|
|
15671
|
+
"left",
|
|
15672
|
+
"dropped",
|
|
15673
|
+
"ended",
|
|
15674
|
+
"error"
|
|
15675
|
+
],
|
|
15676
|
+
"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."
|
|
15677
|
+
},
|
|
15678
|
+
"email": {
|
|
15679
|
+
"type": "string",
|
|
15680
|
+
"description": "Optional. Auth humans: from user profile (server-resolved). Guests: from lobby form (accepted on request)."
|
|
15681
|
+
},
|
|
15682
|
+
"phone": {
|
|
15683
|
+
"type": "string",
|
|
15684
|
+
"description": "Optional. Typed in lobby form when present (guest only)."
|
|
15685
|
+
},
|
|
15686
|
+
"voice": {
|
|
15687
|
+
"type": "string",
|
|
15688
|
+
"description": "AI only. Realtime model voice (alloy / echo / fable / onyx / nova / shimmer). Used at dispatch."
|
|
15689
|
+
},
|
|
15690
|
+
"config": {
|
|
15691
|
+
"type": "object",
|
|
15692
|
+
"additionalProperties": true,
|
|
15693
|
+
"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."
|
|
15694
|
+
},
|
|
15695
|
+
"taskArn": {
|
|
15696
|
+
"type": "string",
|
|
15697
|
+
"description": "AI only. ECS task ARN for the bot (operational). Server-managed."
|
|
15698
|
+
},
|
|
15699
|
+
"errorMessage": {
|
|
15700
|
+
"type": "string",
|
|
15701
|
+
"description": "Populated when status=error."
|
|
15702
|
+
},
|
|
15703
|
+
"joinedAt": {
|
|
15704
|
+
"type": "string",
|
|
15705
|
+
"format": "date-time",
|
|
15706
|
+
"description": "Server-stamped from chime:AttendeeJoined event."
|
|
15707
|
+
},
|
|
15708
|
+
"leftAt": {
|
|
15709
|
+
"type": "string",
|
|
15710
|
+
"format": "date-time",
|
|
15711
|
+
"description": "Server-stamped from chime:AttendeeLeft / Dropped event."
|
|
15712
|
+
},
|
|
15713
|
+
"experienceRating": {
|
|
15714
|
+
"type": "object",
|
|
15715
|
+
"description": "Post-meeting subjective rating submitted by the attendee after\nthey left. Each dimension is 1-5 (1=very bad, 5=very good).\nSubmit gate (server-side): only accepted while status is in\n{left, dropped, ended} - 400 otherwise. submittedAt is\nserver-stamped; clients cannot set it. Schema is forward-\ncompatible - new dimensions can be added without migration.",
|
|
15716
|
+
"properties": {
|
|
15717
|
+
"audioVideo": {
|
|
15718
|
+
"type": "integer",
|
|
15719
|
+
"minimum": 1,
|
|
15720
|
+
"maximum": 5,
|
|
15721
|
+
"description": "1=Very bad, 5=Very good. Captures the attendee's perception of audio + video quality during the call."
|
|
15722
|
+
},
|
|
15723
|
+
"submittedAt": {
|
|
15724
|
+
"type": "string",
|
|
15725
|
+
"format": "date-time",
|
|
15726
|
+
"description": "Server-stamped on PATCH. Client-supplied values are ignored."
|
|
15727
|
+
}
|
|
15728
|
+
}
|
|
15729
|
+
},
|
|
15730
|
+
"chimeMeetingData": {
|
|
15731
|
+
"type": "object",
|
|
15732
|
+
"additionalProperties": true,
|
|
15733
|
+
"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."
|
|
15734
|
+
}
|
|
15735
|
+
}
|
|
15736
|
+
}
|
|
15737
|
+
}
|
|
15738
|
+
}
|
|
15739
|
+
}
|
|
15740
|
+
}
|
|
15741
|
+
}
|
|
15742
|
+
},
|
|
15383
15743
|
{
|
|
15384
15744
|
"type": "function",
|
|
15385
15745
|
"function": {
|