@iblai/iblai-api 2025.11.10-teams-bot-renovation-2-ai → 2025.11.11-teams-bot-renovation-ai
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/index.cjs.js +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/types/models/TrainDocumentViewRequest.d.ts +4 -0
- package/package.json +1 -1
- package/sdk_schema.yml +4 -1
- package/src/core/OpenAPI.ts +1 -1
- package/src/models/TrainDocumentViewRequest.ts +4 -0
package/dist/index.cjs.js
CHANGED
package/dist/index.esm.js
CHANGED
package/dist/index.umd.js
CHANGED
|
@@ -75,4 +75,8 @@ export type TrainDocumentViewRequest = {
|
|
|
75
75
|
* Only adds document to document pool. Requires pathway to be empty.
|
|
76
76
|
*/
|
|
77
77
|
document_pool_only?: boolean;
|
|
78
|
+
/**
|
|
79
|
+
* Description of an image submitted by the user for RAG.
|
|
80
|
+
*/
|
|
81
|
+
user_image_description?: string;
|
|
78
82
|
};
|
package/package.json
CHANGED
package/sdk_schema.yml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
openapi: 3.0.3
|
|
2
2
|
info:
|
|
3
3
|
title: ibl-data-manager
|
|
4
|
-
version: 4.
|
|
4
|
+
version: 4.89.2-ai-plus
|
|
5
5
|
description: API for iblai
|
|
6
6
|
paths:
|
|
7
7
|
/api/ai-account/connected-services/callback/:
|
|
@@ -88836,6 +88836,9 @@ components:
|
|
|
88836
88836
|
default: false
|
|
88837
88837
|
description: Only adds document to document pool. Requires pathway to be
|
|
88838
88838
|
empty.
|
|
88839
|
+
user_image_description:
|
|
88840
|
+
type: string
|
|
88841
|
+
description: Description of an image submitted by the user for RAG.
|
|
88839
88842
|
required:
|
|
88840
88843
|
- type
|
|
88841
88844
|
TrainDocumentViewResponse:
|
package/src/core/OpenAPI.ts
CHANGED
|
@@ -79,5 +79,9 @@ export type TrainDocumentViewRequest = {
|
|
|
79
79
|
* Only adds document to document pool. Requires pathway to be empty.
|
|
80
80
|
*/
|
|
81
81
|
document_pool_only?: boolean;
|
|
82
|
+
/**
|
|
83
|
+
* Description of an image submitted by the user for RAG.
|
|
84
|
+
*/
|
|
85
|
+
user_image_description?: string;
|
|
82
86
|
};
|
|
83
87
|
|