@smartytalent/openai-tools 0.1.33-dev.62 → 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 +221 -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."
|
|
@@ -14061,11 +14073,22 @@
|
|
|
14061
14073
|
"description": "Raw AWS Chime CreateMeeting `Meeting` object - passed verbatim to chime-sdk-js. Includes MeetingFeatures.Audio.EchoReduction when enabled server-side.",
|
|
14062
14074
|
"additionalProperties": true
|
|
14063
14075
|
},
|
|
14064
|
-
"
|
|
14065
|
-
"type": "
|
|
14066
|
-
"
|
|
14067
|
-
|
|
14068
|
-
|
|
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."
|
|
14069
14092
|
},
|
|
14070
14093
|
"recordingStatus": {
|
|
14071
14094
|
"type": "string",
|
|
@@ -14279,14 +14302,15 @@
|
|
|
14279
14302
|
"title": "MeetingRelationshipsSchema",
|
|
14280
14303
|
"type": "object",
|
|
14281
14304
|
"properties": {
|
|
14282
|
-
"
|
|
14283
|
-
"title": "
|
|
14305
|
+
"team": {
|
|
14306
|
+
"title": "MeetingRelationshipsTeamSchema",
|
|
14284
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.",
|
|
14285
14309
|
"properties": {
|
|
14286
14310
|
"data": {
|
|
14287
14311
|
"type": "array",
|
|
14288
14312
|
"items": {
|
|
14289
|
-
"title": "
|
|
14313
|
+
"title": "MeetingRelationshipsTeamDataSchema",
|
|
14290
14314
|
"type": "object",
|
|
14291
14315
|
"properties": {
|
|
14292
14316
|
"type": {
|
|
@@ -14339,7 +14363,7 @@
|
|
|
14339
14363
|
"candidate": {
|
|
14340
14364
|
"title": "MeetingRelationshipsCandidateSchema",
|
|
14341
14365
|
"type": "object",
|
|
14342
|
-
"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.",
|
|
14343
14367
|
"properties": {
|
|
14344
14368
|
"data": {
|
|
14345
14369
|
"type": "object",
|
|
@@ -14371,6 +14395,65 @@
|
|
|
14371
14395
|
}
|
|
14372
14396
|
}
|
|
14373
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
|
+
}
|
|
14374
14457
|
}
|
|
14375
14458
|
}
|
|
14376
14459
|
}
|
|
@@ -14556,11 +14639,22 @@
|
|
|
14556
14639
|
"description": "Raw AWS Chime CreateMeeting `Meeting` object - passed verbatim to chime-sdk-js. Includes MeetingFeatures.Audio.EchoReduction when enabled server-side.",
|
|
14557
14640
|
"additionalProperties": true
|
|
14558
14641
|
},
|
|
14559
|
-
"
|
|
14560
|
-
"type": "
|
|
14561
|
-
"
|
|
14562
|
-
|
|
14563
|
-
|
|
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."
|
|
14564
14658
|
},
|
|
14565
14659
|
"recordingStatus": {
|
|
14566
14660
|
"type": "string",
|
|
@@ -14798,6 +14892,22 @@
|
|
|
14798
14892
|
}
|
|
14799
14893
|
}
|
|
14800
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
|
+
},
|
|
14801
14911
|
{
|
|
14802
14912
|
"type": "function",
|
|
14803
14913
|
"function": {
|
|
@@ -14827,18 +14937,103 @@
|
|
|
14827
14937
|
"attributes": {
|
|
14828
14938
|
"title": "MeetingAttendeeAttributesSchema",
|
|
14829
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.",
|
|
14830
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
|
+
},
|
|
14831
14968
|
"name": {
|
|
14832
|
-
"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."
|
|
14833
14997
|
},
|
|
14834
14998
|
"email": {
|
|
14835
|
-
"type": "string"
|
|
14999
|
+
"type": "string",
|
|
15000
|
+
"description": "Optional. Auth humans: from user profile (server-resolved). Guests: from lobby form (accepted on request)."
|
|
14836
15001
|
},
|
|
14837
|
-
"
|
|
14838
|
-
"type": "string"
|
|
15002
|
+
"phone": {
|
|
15003
|
+
"type": "string",
|
|
15004
|
+
"description": "Optional. Typed in lobby form when present (guest only)."
|
|
14839
15005
|
},
|
|
14840
|
-
"
|
|
14841
|
-
"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."
|
|
14842
15037
|
}
|
|
14843
15038
|
}
|
|
14844
15039
|
}
|
|
@@ -15013,103 +15208,8 @@
|
|
|
15013
15208
|
{
|
|
15014
15209
|
"type": "function",
|
|
15015
15210
|
"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",
|
|
15211
|
+
"name": "show_meeting_attendee",
|
|
15212
|
+
"description": "Show Meeting Attendee",
|
|
15113
15213
|
"parameters": {
|
|
15114
15214
|
"type": "object",
|
|
15115
15215
|
"properties": {}
|
|
@@ -15119,8 +15219,8 @@
|
|
|
15119
15219
|
{
|
|
15120
15220
|
"type": "function",
|
|
15121
15221
|
"function": {
|
|
15122
|
-
"name": "
|
|
15123
|
-
"description": "
|
|
15222
|
+
"name": "delete_meeting_attendee",
|
|
15223
|
+
"description": "Remove Meeting Attendee",
|
|
15124
15224
|
"parameters": {
|
|
15125
15225
|
"type": "object",
|
|
15126
15226
|
"properties": {}
|
|
@@ -15130,8 +15230,8 @@
|
|
|
15130
15230
|
{
|
|
15131
15231
|
"type": "function",
|
|
15132
15232
|
"function": {
|
|
15133
|
-
"name": "
|
|
15134
|
-
"description": "Meeting
|
|
15233
|
+
"name": "meeting_attendee_options",
|
|
15234
|
+
"description": "Meeting Attendee Options",
|
|
15135
15235
|
"parameters": {
|
|
15136
15236
|
"type": "object",
|
|
15137
15237
|
"properties": {}
|