@smartytalent/openai-tools 0.1.15 → 0.1.16

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 +24 -2
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -9333,7 +9333,18 @@
9333
9333
  "type": "object",
9334
9334
  "properties": {
9335
9335
  "name": {
9336
- "type": "string"
9336
+ "oneOf": [
9337
+ {
9338
+ "type": "string"
9339
+ },
9340
+ {
9341
+ "type": "object",
9342
+ "additionalProperties": {
9343
+ "type": "string"
9344
+ }
9345
+ }
9346
+ ],
9347
+ "description": "Conversation name. Can be a plain string or a multilingual object keyed by language code"
9337
9348
  },
9338
9349
  "type": {
9339
9350
  "type": "string",
@@ -9477,7 +9488,18 @@
9477
9488
  "type": "object",
9478
9489
  "properties": {
9479
9490
  "name": {
9480
- "type": "string"
9491
+ "oneOf": [
9492
+ {
9493
+ "type": "string"
9494
+ },
9495
+ {
9496
+ "type": "object",
9497
+ "additionalProperties": {
9498
+ "type": "string"
9499
+ }
9500
+ }
9501
+ ],
9502
+ "description": "Conversation name. Can be a plain string or a multilingual object keyed by language code"
9481
9503
  },
9482
9504
  "type": {
9483
9505
  "type": "string",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/openai-tools",
3
- "version": "0.1.15",
3
+ "version": "0.1.16",
4
4
  "description": "OpenAI function/tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",