@smartytalent/openai-tools 0.1.33-dev.44 → 0.1.33-dev.45
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 +53 -0
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -17253,6 +17253,59 @@
|
|
|
17253
17253
|
}
|
|
17254
17254
|
}
|
|
17255
17255
|
},
|
|
17256
|
+
{
|
|
17257
|
+
"type": "function",
|
|
17258
|
+
"function": {
|
|
17259
|
+
"name": "upload_guest_attempt_file",
|
|
17260
|
+
"description": "Upload Attempt File (Guest)",
|
|
17261
|
+
"parameters": {
|
|
17262
|
+
"title": "UploadGuestAttemptFileRequestBody",
|
|
17263
|
+
"type": "object",
|
|
17264
|
+
"required": [
|
|
17265
|
+
"tenantId",
|
|
17266
|
+
"accessToken",
|
|
17267
|
+
"attemptId",
|
|
17268
|
+
"fileName",
|
|
17269
|
+
"contentType"
|
|
17270
|
+
],
|
|
17271
|
+
"properties": {
|
|
17272
|
+
"tenantId": {
|
|
17273
|
+
"type": "string"
|
|
17274
|
+
},
|
|
17275
|
+
"accessToken": {
|
|
17276
|
+
"type": "string",
|
|
17277
|
+
"description": "Per-attempt token (same value as meta.accessToken on other guest endpoints)."
|
|
17278
|
+
},
|
|
17279
|
+
"attemptId": {
|
|
17280
|
+
"type": "string"
|
|
17281
|
+
},
|
|
17282
|
+
"fileName": {
|
|
17283
|
+
"type": "string",
|
|
17284
|
+
"description": "Candidate-supplied file name (no path traversal). Used for the audit trail and extension fallback."
|
|
17285
|
+
},
|
|
17286
|
+
"contentType": {
|
|
17287
|
+
"type": "string",
|
|
17288
|
+
"description": "MIME type. Server prefers a known value (mapped to canonical extension) but accepts unknown types - file:process derives extension from fileName."
|
|
17289
|
+
},
|
|
17290
|
+
"questionId": {
|
|
17291
|
+
"type": "string",
|
|
17292
|
+
"description": "Optional question id this upload is for. Used for S3 key partitioning + downstream join hint; not auth-relevant."
|
|
17293
|
+
}
|
|
17294
|
+
}
|
|
17295
|
+
}
|
|
17296
|
+
}
|
|
17297
|
+
},
|
|
17298
|
+
{
|
|
17299
|
+
"type": "function",
|
|
17300
|
+
"function": {
|
|
17301
|
+
"name": "guest_attempt_upload_options",
|
|
17302
|
+
"description": "Guest Attempt Upload Options",
|
|
17303
|
+
"parameters": {
|
|
17304
|
+
"type": "object",
|
|
17305
|
+
"properties": {}
|
|
17306
|
+
}
|
|
17307
|
+
}
|
|
17308
|
+
},
|
|
17256
17309
|
{
|
|
17257
17310
|
"type": "function",
|
|
17258
17311
|
"function": {
|