@smartytalent/openai-tools 0.9.6 → 0.9.8
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 +98 -1
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -359,6 +359,46 @@
|
|
|
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
|
+
"smsDailyBudget": {
|
|
397
|
+
"type": "integer",
|
|
398
|
+
"minimum": 1,
|
|
399
|
+
"description": "Daily outbound-SMS budget for the tenant across the inbound-call channel (2b rails; container default applies when unset)"
|
|
400
|
+
}
|
|
401
|
+
}
|
|
362
402
|
}
|
|
363
403
|
}
|
|
364
404
|
},
|
|
@@ -838,6 +878,46 @@
|
|
|
838
878
|
}
|
|
839
879
|
}
|
|
840
880
|
}
|
|
881
|
+
},
|
|
882
|
+
"limits": {
|
|
883
|
+
"type": "object",
|
|
884
|
+
"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.",
|
|
885
|
+
"properties": {
|
|
886
|
+
"callsPerCliHour": {
|
|
887
|
+
"type": "integer",
|
|
888
|
+
"minimum": 1,
|
|
889
|
+
"description": "Max inbound calls per caller number per hour"
|
|
890
|
+
},
|
|
891
|
+
"callsPerCliDay": {
|
|
892
|
+
"type": "integer",
|
|
893
|
+
"minimum": 1,
|
|
894
|
+
"description": "Max inbound calls per caller number per day"
|
|
895
|
+
},
|
|
896
|
+
"callMinutesDailyBudget": {
|
|
897
|
+
"type": "integer",
|
|
898
|
+
"minimum": 1,
|
|
899
|
+
"description": "Daily inbound AI-call minutes budget for the tenant"
|
|
900
|
+
},
|
|
901
|
+
"maxConcurrentInboundCalls": {
|
|
902
|
+
"type": "integer",
|
|
903
|
+
"minimum": 1
|
|
904
|
+
},
|
|
905
|
+
"maxCallDurationMinutes": {
|
|
906
|
+
"type": "integer",
|
|
907
|
+
"minimum": 1,
|
|
908
|
+
"description": "Hard cap on one intake conversation"
|
|
909
|
+
},
|
|
910
|
+
"smsPerNumberDay": {
|
|
911
|
+
"type": "integer",
|
|
912
|
+
"minimum": 1,
|
|
913
|
+
"description": "Max outbound SMS to one number per day (phase-2 rails)"
|
|
914
|
+
},
|
|
915
|
+
"smsDailyBudget": {
|
|
916
|
+
"type": "integer",
|
|
917
|
+
"minimum": 1,
|
|
918
|
+
"description": "Daily outbound-SMS budget for the tenant across the inbound-call channel (2b rails; container default applies when unset)"
|
|
919
|
+
}
|
|
920
|
+
}
|
|
841
921
|
}
|
|
842
922
|
}
|
|
843
923
|
},
|
|
@@ -4361,7 +4441,20 @@
|
|
|
4361
4441
|
"description": "List Talent Candidates",
|
|
4362
4442
|
"parameters": {
|
|
4363
4443
|
"type": "object",
|
|
4364
|
-
"properties": {
|
|
4444
|
+
"properties": {
|
|
4445
|
+
"pageSize": {
|
|
4446
|
+
"type": "integer",
|
|
4447
|
+
"description": "Specifies the number of items to retrieve per page. The maximum value is 100."
|
|
4448
|
+
},
|
|
4449
|
+
"pageAfter": {
|
|
4450
|
+
"type": "string",
|
|
4451
|
+
"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."
|
|
4452
|
+
},
|
|
4453
|
+
"pageBefore": {
|
|
4454
|
+
"type": "string",
|
|
4455
|
+
"description": "Returns the data encoded in Base64 format, used for cursor-based pagination"
|
|
4456
|
+
}
|
|
4457
|
+
}
|
|
4365
4458
|
}
|
|
4366
4459
|
}
|
|
4367
4460
|
},
|
|
@@ -5873,6 +5966,10 @@
|
|
|
5873
5966
|
"type": "string",
|
|
5874
5967
|
"description": "Returns candidates applied to the given job (JobIndex lookup). The scalable way to list a job's pipeline."
|
|
5875
5968
|
},
|
|
5969
|
+
"filterTalentId": {
|
|
5970
|
+
"type": "string",
|
|
5971
|
+
"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)."
|
|
5972
|
+
},
|
|
5876
5973
|
"filterEmail": {
|
|
5877
5974
|
"type": "string",
|
|
5878
5975
|
"description": "Specifies the email address to filter the results."
|