@smartytalent/openai-tools 0.1.33-dev.60 → 0.1.33-dev.61
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 +5 -3
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -15054,14 +15054,16 @@
|
|
|
15054
15054
|
"role": {
|
|
15055
15055
|
"type": "string",
|
|
15056
15056
|
"enum": [
|
|
15057
|
-
"interviewer"
|
|
15057
|
+
"interviewer",
|
|
15058
|
+
"notetaker",
|
|
15059
|
+
"sales"
|
|
15058
15060
|
],
|
|
15059
|
-
"description": "Picks a system prompt template from the bot container's\nprompt/<role>.md library
|
|
15061
|
+
"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."
|
|
15060
15062
|
},
|
|
15061
15063
|
"context": {
|
|
15062
15064
|
"type": "object",
|
|
15063
15065
|
"additionalProperties": true,
|
|
15064
|
-
"description": "Per-meeting context values used to fill {placeholder} tokens\nin the chosen role's prompt template.
|
|
15066
|
+
"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)."
|
|
15065
15067
|
}
|
|
15066
15068
|
}
|
|
15067
15069
|
}
|