@iblai/iblai-api 4.97.0-test-ai → 4.97.1-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/Conversations.d.ts +8 -0
- package/dist/types/models/PatchedConversations.d.ts +8 -0
- package/package.json +1 -1
- package/sdk_schema.yml +14 -2
- package/src/core/OpenAPI.ts +1 -1
- package/src/models/Conversations.ts +8 -0
- package/src/models/PatchedConversations.ts +8 -0
package/dist/index.cjs.js
CHANGED
package/dist/index.esm.js
CHANGED
package/dist/index.umd.js
CHANGED
|
@@ -30,5 +30,13 @@ export type Conversations = {
|
|
|
30
30
|
* True if the session has both user and AI messages
|
|
31
31
|
*/
|
|
32
32
|
is_conversation?: boolean;
|
|
33
|
+
/**
|
|
34
|
+
* Count of human messages in this session
|
|
35
|
+
*/
|
|
36
|
+
message_count_human?: number;
|
|
37
|
+
/**
|
|
38
|
+
* Count of AI messages in this session
|
|
39
|
+
*/
|
|
40
|
+
message_count_ai?: number;
|
|
33
41
|
tools?: Array<number>;
|
|
34
42
|
};
|
|
@@ -30,5 +30,13 @@ export type PatchedConversations = {
|
|
|
30
30
|
* True if the session has both user and AI messages
|
|
31
31
|
*/
|
|
32
32
|
is_conversation?: boolean;
|
|
33
|
+
/**
|
|
34
|
+
* Count of human messages in this session
|
|
35
|
+
*/
|
|
36
|
+
message_count_human?: number;
|
|
37
|
+
/**
|
|
38
|
+
* Count of AI messages in this session
|
|
39
|
+
*/
|
|
40
|
+
message_count_ai?: number;
|
|
33
41
|
tools?: Array<number>;
|
|
34
42
|
};
|
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.97.
|
|
4
|
+
version: 4.97.1-ai-plus
|
|
5
5
|
description: API for iblai
|
|
6
6
|
paths:
|
|
7
7
|
/api/ai-account/connected-services/callback/:
|
|
@@ -4037,7 +4037,7 @@ paths:
|
|
|
4037
4037
|
end_date: '2023-06-30'
|
|
4038
4038
|
- start_date: '2023-07-01'
|
|
4039
4039
|
end_date: '2023-07-31'
|
|
4040
|
-
|
|
4040
|
+
setiment:
|
|
4041
4041
|
- positive
|
|
4042
4042
|
- negative
|
|
4043
4043
|
- neutral
|
|
@@ -71553,6 +71553,12 @@ components:
|
|
|
71553
71553
|
is_conversation:
|
|
71554
71554
|
type: boolean
|
|
71555
71555
|
description: True if the session has both user and AI messages
|
|
71556
|
+
message_count_human:
|
|
71557
|
+
type: integer
|
|
71558
|
+
description: Count of human messages in this session
|
|
71559
|
+
message_count_ai:
|
|
71560
|
+
type: integer
|
|
71561
|
+
description: Count of AI messages in this session
|
|
71556
71562
|
tools:
|
|
71557
71563
|
type: array
|
|
71558
71564
|
items:
|
|
@@ -81180,6 +81186,12 @@ components:
|
|
|
81180
81186
|
is_conversation:
|
|
81181
81187
|
type: boolean
|
|
81182
81188
|
description: True if the session has both user and AI messages
|
|
81189
|
+
message_count_human:
|
|
81190
|
+
type: integer
|
|
81191
|
+
description: Count of human messages in this session
|
|
81192
|
+
message_count_ai:
|
|
81193
|
+
type: integer
|
|
81194
|
+
description: Count of AI messages in this session
|
|
81183
81195
|
tools:
|
|
81184
81196
|
type: array
|
|
81185
81197
|
items:
|
package/src/core/OpenAPI.ts
CHANGED
|
@@ -34,6 +34,14 @@ export type Conversations = {
|
|
|
34
34
|
* True if the session has both user and AI messages
|
|
35
35
|
*/
|
|
36
36
|
is_conversation?: boolean;
|
|
37
|
+
/**
|
|
38
|
+
* Count of human messages in this session
|
|
39
|
+
*/
|
|
40
|
+
message_count_human?: number;
|
|
41
|
+
/**
|
|
42
|
+
* Count of AI messages in this session
|
|
43
|
+
*/
|
|
44
|
+
message_count_ai?: number;
|
|
37
45
|
tools?: Array<number>;
|
|
38
46
|
};
|
|
39
47
|
|
|
@@ -34,6 +34,14 @@ export type PatchedConversations = {
|
|
|
34
34
|
* True if the session has both user and AI messages
|
|
35
35
|
*/
|
|
36
36
|
is_conversation?: boolean;
|
|
37
|
+
/**
|
|
38
|
+
* Count of human messages in this session
|
|
39
|
+
*/
|
|
40
|
+
message_count_human?: number;
|
|
41
|
+
/**
|
|
42
|
+
* Count of AI messages in this session
|
|
43
|
+
*/
|
|
44
|
+
message_count_ai?: number;
|
|
37
45
|
tools?: Array<number>;
|
|
38
46
|
};
|
|
39
47
|
|