@smartytalent/openai-tools 0.1.15 → 0.1.17

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 +26 -15
  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",
@@ -11158,19 +11180,8 @@
11158
11180
  {
11159
11181
  "type": "function",
11160
11182
  "function": {
11161
- "name": "cancel_run",
11162
- "description": "Cancel Run",
11163
- "parameters": {
11164
- "type": "object",
11165
- "properties": {}
11166
- }
11167
- }
11168
- },
11169
- {
11170
- "type": "function",
11171
- "function": {
11172
- "name": "retry_run",
11173
- "description": "Retry Run",
11183
+ "name": "update_run",
11184
+ "description": "Update Run",
11174
11185
  "parameters": {
11175
11186
  "type": "object",
11176
11187
  "properties": {}
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.17",
4
4
  "description": "OpenAI function/tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",