@smartytalent/openai-tools 0.1.33-dev.21 → 0.1.33-dev.22
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 +114 -0
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -12344,6 +12344,120 @@
|
|
|
12344
12344
|
}
|
|
12345
12345
|
}
|
|
12346
12346
|
},
|
|
12347
|
+
{
|
|
12348
|
+
"type": "function",
|
|
12349
|
+
"function": {
|
|
12350
|
+
"name": "list_signals",
|
|
12351
|
+
"description": "List Signals",
|
|
12352
|
+
"parameters": {
|
|
12353
|
+
"type": "object",
|
|
12354
|
+
"properties": {
|
|
12355
|
+
"filterCategory": {
|
|
12356
|
+
"type": "string",
|
|
12357
|
+
"description": "filterCategory parameter",
|
|
12358
|
+
"enum": [
|
|
12359
|
+
"inbound_email",
|
|
12360
|
+
"inbound_chat",
|
|
12361
|
+
"inbound_call",
|
|
12362
|
+
"inbound_webapp",
|
|
12363
|
+
"outbound_email",
|
|
12364
|
+
"integration",
|
|
12365
|
+
"auth",
|
|
12366
|
+
"data_access"
|
|
12367
|
+
]
|
|
12368
|
+
},
|
|
12369
|
+
"filterAction": {
|
|
12370
|
+
"type": "string",
|
|
12371
|
+
"description": "filterAction parameter",
|
|
12372
|
+
"enum": [
|
|
12373
|
+
"rejected_unknown_principal",
|
|
12374
|
+
"rejected_language",
|
|
12375
|
+
"rejected_intent",
|
|
12376
|
+
"rejected_closed_context",
|
|
12377
|
+
"rejected_rate_limit",
|
|
12378
|
+
"accepted",
|
|
12379
|
+
"delivery_failed",
|
|
12380
|
+
"integration_error",
|
|
12381
|
+
"data_exported"
|
|
12382
|
+
]
|
|
12383
|
+
},
|
|
12384
|
+
"filterActorIdentifier": {
|
|
12385
|
+
"type": "string",
|
|
12386
|
+
"description": "filterActorIdentifier parameter"
|
|
12387
|
+
},
|
|
12388
|
+
"filterSeverity": {
|
|
12389
|
+
"type": "string",
|
|
12390
|
+
"description": "filterSeverity parameter",
|
|
12391
|
+
"enum": [
|
|
12392
|
+
"info",
|
|
12393
|
+
"warning",
|
|
12394
|
+
"error"
|
|
12395
|
+
]
|
|
12396
|
+
},
|
|
12397
|
+
"filterActorType": {
|
|
12398
|
+
"type": "string",
|
|
12399
|
+
"description": "filterActorType parameter",
|
|
12400
|
+
"enum": [
|
|
12401
|
+
"user",
|
|
12402
|
+
"candidate",
|
|
12403
|
+
"talent",
|
|
12404
|
+
"guest",
|
|
12405
|
+
"system"
|
|
12406
|
+
]
|
|
12407
|
+
},
|
|
12408
|
+
"sort": {
|
|
12409
|
+
"type": "string",
|
|
12410
|
+
"description": "sort parameter"
|
|
12411
|
+
},
|
|
12412
|
+
"pageSize": {
|
|
12413
|
+
"type": "integer",
|
|
12414
|
+
"description": "Specifies the number of items to retrieve per page. The maximum value is 100."
|
|
12415
|
+
},
|
|
12416
|
+
"pageAfter": {
|
|
12417
|
+
"type": "string",
|
|
12418
|
+
"description": "Opaque base64-encoded cursor returned by a previous list response, used for forward cursor-based pagination. Pass the value verbatim; do not decode or mutate it."
|
|
12419
|
+
},
|
|
12420
|
+
"pageBefore": {
|
|
12421
|
+
"type": "string",
|
|
12422
|
+
"description": "Returns the data encoded in Base64 format, used for cursor-based pagination"
|
|
12423
|
+
}
|
|
12424
|
+
}
|
|
12425
|
+
}
|
|
12426
|
+
}
|
|
12427
|
+
},
|
|
12428
|
+
{
|
|
12429
|
+
"type": "function",
|
|
12430
|
+
"function": {
|
|
12431
|
+
"name": "signals_options",
|
|
12432
|
+
"description": "Signals Options",
|
|
12433
|
+
"parameters": {
|
|
12434
|
+
"type": "object",
|
|
12435
|
+
"properties": {}
|
|
12436
|
+
}
|
|
12437
|
+
}
|
|
12438
|
+
},
|
|
12439
|
+
{
|
|
12440
|
+
"type": "function",
|
|
12441
|
+
"function": {
|
|
12442
|
+
"name": "show_signal",
|
|
12443
|
+
"description": "Show Signal",
|
|
12444
|
+
"parameters": {
|
|
12445
|
+
"type": "object",
|
|
12446
|
+
"properties": {}
|
|
12447
|
+
}
|
|
12448
|
+
}
|
|
12449
|
+
},
|
|
12450
|
+
{
|
|
12451
|
+
"type": "function",
|
|
12452
|
+
"function": {
|
|
12453
|
+
"name": "signal_options",
|
|
12454
|
+
"description": "Signal Options",
|
|
12455
|
+
"parameters": {
|
|
12456
|
+
"type": "object",
|
|
12457
|
+
"properties": {}
|
|
12458
|
+
}
|
|
12459
|
+
}
|
|
12460
|
+
},
|
|
12347
12461
|
{
|
|
12348
12462
|
"type": "function",
|
|
12349
12463
|
"function": {
|