@smartytalent/openai-tools 0.9.6 → 0.9.7
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 +88 -1
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -359,6 +359,41 @@
|
|
|
359
359
|
}
|
|
360
360
|
}
|
|
361
361
|
}
|
|
362
|
+
},
|
|
363
|
+
"limits": {
|
|
364
|
+
"type": "object",
|
|
365
|
+
"description": "Anti-abuse limits for the inbound-call channel (inbound-call arc). Declared ahead of enforcement so generated clients carry the key (the typed settings schema is a whitelist - undeclared keys are silently dropped by the SDK). Sysowner-only on PATCH (cost-protection config, the boeMetering precedent); values are inert until the P4 limiter ships.",
|
|
366
|
+
"properties": {
|
|
367
|
+
"callsPerCliHour": {
|
|
368
|
+
"type": "integer",
|
|
369
|
+
"minimum": 1,
|
|
370
|
+
"description": "Max inbound calls per caller number per hour"
|
|
371
|
+
},
|
|
372
|
+
"callsPerCliDay": {
|
|
373
|
+
"type": "integer",
|
|
374
|
+
"minimum": 1,
|
|
375
|
+
"description": "Max inbound calls per caller number per day"
|
|
376
|
+
},
|
|
377
|
+
"callMinutesDailyBudget": {
|
|
378
|
+
"type": "integer",
|
|
379
|
+
"minimum": 1,
|
|
380
|
+
"description": "Daily inbound AI-call minutes budget for the tenant"
|
|
381
|
+
},
|
|
382
|
+
"maxConcurrentInboundCalls": {
|
|
383
|
+
"type": "integer",
|
|
384
|
+
"minimum": 1
|
|
385
|
+
},
|
|
386
|
+
"maxCallDurationMinutes": {
|
|
387
|
+
"type": "integer",
|
|
388
|
+
"minimum": 1,
|
|
389
|
+
"description": "Hard cap on one intake conversation"
|
|
390
|
+
},
|
|
391
|
+
"smsPerNumberDay": {
|
|
392
|
+
"type": "integer",
|
|
393
|
+
"minimum": 1,
|
|
394
|
+
"description": "Max outbound SMS to one number per day (phase-2 rails)"
|
|
395
|
+
}
|
|
396
|
+
}
|
|
362
397
|
}
|
|
363
398
|
}
|
|
364
399
|
},
|
|
@@ -838,6 +873,41 @@
|
|
|
838
873
|
}
|
|
839
874
|
}
|
|
840
875
|
}
|
|
876
|
+
},
|
|
877
|
+
"limits": {
|
|
878
|
+
"type": "object",
|
|
879
|
+
"description": "Anti-abuse limits for the inbound-call channel (inbound-call arc). Declared ahead of enforcement so generated clients carry the key (the typed settings schema is a whitelist - undeclared keys are silently dropped by the SDK). Sysowner-only on PATCH (cost-protection config, the boeMetering precedent); values are inert until the P4 limiter ships.",
|
|
880
|
+
"properties": {
|
|
881
|
+
"callsPerCliHour": {
|
|
882
|
+
"type": "integer",
|
|
883
|
+
"minimum": 1,
|
|
884
|
+
"description": "Max inbound calls per caller number per hour"
|
|
885
|
+
},
|
|
886
|
+
"callsPerCliDay": {
|
|
887
|
+
"type": "integer",
|
|
888
|
+
"minimum": 1,
|
|
889
|
+
"description": "Max inbound calls per caller number per day"
|
|
890
|
+
},
|
|
891
|
+
"callMinutesDailyBudget": {
|
|
892
|
+
"type": "integer",
|
|
893
|
+
"minimum": 1,
|
|
894
|
+
"description": "Daily inbound AI-call minutes budget for the tenant"
|
|
895
|
+
},
|
|
896
|
+
"maxConcurrentInboundCalls": {
|
|
897
|
+
"type": "integer",
|
|
898
|
+
"minimum": 1
|
|
899
|
+
},
|
|
900
|
+
"maxCallDurationMinutes": {
|
|
901
|
+
"type": "integer",
|
|
902
|
+
"minimum": 1,
|
|
903
|
+
"description": "Hard cap on one intake conversation"
|
|
904
|
+
},
|
|
905
|
+
"smsPerNumberDay": {
|
|
906
|
+
"type": "integer",
|
|
907
|
+
"minimum": 1,
|
|
908
|
+
"description": "Max outbound SMS to one number per day (phase-2 rails)"
|
|
909
|
+
}
|
|
910
|
+
}
|
|
841
911
|
}
|
|
842
912
|
}
|
|
843
913
|
},
|
|
@@ -4361,7 +4431,20 @@
|
|
|
4361
4431
|
"description": "List Talent Candidates",
|
|
4362
4432
|
"parameters": {
|
|
4363
4433
|
"type": "object",
|
|
4364
|
-
"properties": {
|
|
4434
|
+
"properties": {
|
|
4435
|
+
"pageSize": {
|
|
4436
|
+
"type": "integer",
|
|
4437
|
+
"description": "Specifies the number of items to retrieve per page. The maximum value is 100."
|
|
4438
|
+
},
|
|
4439
|
+
"pageAfter": {
|
|
4440
|
+
"type": "string",
|
|
4441
|
+
"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."
|
|
4442
|
+
},
|
|
4443
|
+
"pageBefore": {
|
|
4444
|
+
"type": "string",
|
|
4445
|
+
"description": "Returns the data encoded in Base64 format, used for cursor-based pagination"
|
|
4446
|
+
}
|
|
4447
|
+
}
|
|
4365
4448
|
}
|
|
4366
4449
|
}
|
|
4367
4450
|
},
|
|
@@ -5873,6 +5956,10 @@
|
|
|
5873
5956
|
"type": "string",
|
|
5874
5957
|
"description": "Returns candidates applied to the given job (JobIndex lookup). The scalable way to list a job's pipeline."
|
|
5875
5958
|
},
|
|
5959
|
+
"filterTalentId": {
|
|
5960
|
+
"type": "string",
|
|
5961
|
+
"description": "Returns candidates belonging to the given talent (TalentIndex lookup). The scalable way to list one person's applications across jobs; combine with nothing (one filter per request)."
|
|
5962
|
+
},
|
|
5876
5963
|
"filterEmail": {
|
|
5877
5964
|
"type": "string",
|
|
5878
5965
|
"description": "Specifies the email address to filter the results."
|