@smartytalent/openai-tools 0.8.3 → 0.8.5

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.
Files changed (2) hide show
  1. package/dist/tools.json +20 -3
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -14914,9 +14914,10 @@
14914
14914
  "properties": {
14915
14915
  "filterStatus": {
14916
14916
  "type": "string",
14917
- "description": "Returns personas with the current status (active, archived). If not provided, the default value will be set to 'active'.",
14917
+ "description": "Returns personas with this status. Defaults to `active`, which is\nthe only status a persona may be CONSUMED in. `draft` is the\nhonest in-between: the cohort exists and the profile is being\nsynthesized, but it is under the k-anonymity threshold (fewer\nthan three hires), so nothing scores or writes copy against it.\nRecruiters should be able to see that a market is building, so\nthe list has to be able to return it.",
14918
14918
  "enum": [
14919
14919
  "active",
14920
+ "draft",
14920
14921
  "archived"
14921
14922
  ]
14922
14923
  },
@@ -15008,9 +15009,17 @@
15008
15009
  },
15009
15010
  "name": {
15010
15011
  "type": "object",
15011
- "description": "Language-keyed invented name for the archetype. Written once, then stable across rebuilds.",
15012
+ "description": "Language-keyed invented name for the archetype. Stable across\nrebuilds, but regenerated when the cohort's predominant gender\nflips - the name states a gender, and that gender is a finding\nabout the cohort (see `identityGender`).",
15012
15013
  "additionalProperties": true
15013
15014
  },
15015
+ "identityGender": {
15016
+ "type": "string",
15017
+ "description": "The cohort gender the current name and picture were minted for. Diagnostic.",
15018
+ "enum": [
15019
+ "male",
15020
+ "female"
15021
+ ]
15022
+ },
15014
15023
  "profilePictureUrl": {
15015
15024
  "type": "string",
15016
15025
  "description": "Illustration for the archetype. Not a photograph of anyone."
@@ -15343,9 +15352,17 @@
15343
15352
  },
15344
15353
  "name": {
15345
15354
  "type": "object",
15346
- "description": "Language-keyed invented name for the archetype. Written once, then stable across rebuilds.",
15355
+ "description": "Language-keyed invented name for the archetype. Stable across\nrebuilds, but regenerated when the cohort's predominant gender\nflips - the name states a gender, and that gender is a finding\nabout the cohort (see `identityGender`).",
15347
15356
  "additionalProperties": true
15348
15357
  },
15358
+ "identityGender": {
15359
+ "type": "string",
15360
+ "description": "The cohort gender the current name and picture were minted for. Diagnostic.",
15361
+ "enum": [
15362
+ "male",
15363
+ "female"
15364
+ ]
15365
+ },
15349
15366
  "profilePictureUrl": {
15350
15367
  "type": "string",
15351
15368
  "description": "Illustration for the archetype. Not a photograph of anyone."
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/openai-tools",
3
- "version": "0.8.3",
3
+ "version": "0.8.5",
4
4
  "description": "OpenAI function/tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",