@smartytalent/mcp-tools 0.1.33-dev.60 → 0.1.33-dev.62
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 +15 -3
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -14394,6 +14394,11 @@
|
|
|
14394
14394
|
"duration": {
|
|
14395
14395
|
"type": "integer"
|
|
14396
14396
|
},
|
|
14397
|
+
"defaultLocale": {
|
|
14398
|
+
"type": "string",
|
|
14399
|
+
"pattern": "^(en|fr|ar|pl|it)(-[A-Za-z0-9]{2,8})*$",
|
|
14400
|
+
"description": "Full BCP-47 locale tag (e.g. `en-US`, `pl-PL`, `fr-FR`, `ar-SA`,\n`it-IT`). Set at creation time; controls the UI language of the\npublic lobby + room pages so a Polish recruiter sharing a link\ngets a Polish lobby regardless of the candidate's browser\nlanguage. Immutable after creation.\n\nNOT to be confused with `languageCode`: that field is auto-detected\nfrom the recorded speech and only populated post-meeting (AI\npipeline), whereas `defaultLocale` is human-picked at creation\ntime and drives UI.\n\nValidation: primary subtag must be one of {en, fr, ar, pl, it};\nfull tags are accepted (en-US, pl-PL, ...). Default chain at\ncreation: request body -> tenant settings.language -> 'en-US'."
|
|
14401
|
+
},
|
|
14397
14402
|
"meetingType": {
|
|
14398
14403
|
"type": "string",
|
|
14399
14404
|
"enum": [
|
|
@@ -14890,6 +14895,11 @@
|
|
|
14890
14895
|
"duration": {
|
|
14891
14896
|
"type": "integer"
|
|
14892
14897
|
},
|
|
14898
|
+
"defaultLocale": {
|
|
14899
|
+
"type": "string",
|
|
14900
|
+
"pattern": "^(en|fr|ar|pl|it)(-[A-Za-z0-9]{2,8})*$",
|
|
14901
|
+
"description": "Full BCP-47 locale tag (e.g. `en-US`, `pl-PL`, `fr-FR`, `ar-SA`,\n`it-IT`). Set at creation time; controls the UI language of the\npublic lobby + room pages so a Polish recruiter sharing a link\ngets a Polish lobby regardless of the candidate's browser\nlanguage. Immutable after creation.\n\nNOT to be confused with `languageCode`: that field is auto-detected\nfrom the recorded speech and only populated post-meeting (AI\npipeline), whereas `defaultLocale` is human-picked at creation\ntime and drives UI.\n\nValidation: primary subtag must be one of {en, fr, ar, pl, it};\nfull tags are accepted (en-US, pl-PL, ...). Default chain at\ncreation: request body -> tenant settings.language -> 'en-US'."
|
|
14902
|
+
},
|
|
14893
14903
|
"meetingType": {
|
|
14894
14904
|
"type": "string",
|
|
14895
14905
|
"enum": [
|
|
@@ -15518,14 +15528,16 @@
|
|
|
15518
15528
|
"role": {
|
|
15519
15529
|
"type": "string",
|
|
15520
15530
|
"enum": [
|
|
15521
|
-
"interviewer"
|
|
15531
|
+
"interviewer",
|
|
15532
|
+
"notetaker",
|
|
15533
|
+
"sales"
|
|
15522
15534
|
],
|
|
15523
|
-
"description": "Picks a system prompt template from the bot container's\nprompt/<role>.md library
|
|
15535
|
+
"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."
|
|
15524
15536
|
},
|
|
15525
15537
|
"context": {
|
|
15526
15538
|
"type": "object",
|
|
15527
15539
|
"additionalProperties": true,
|
|
15528
|
-
"description": "Per-meeting context values used to fill {placeholder} tokens\nin the chosen role's prompt template.
|
|
15540
|
+
"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)."
|
|
15529
15541
|
}
|
|
15530
15542
|
}
|
|
15531
15543
|
}
|