@breign/client 1.0.41 → 1.0.43

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.
@@ -10,7 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  import * as runtime from '../runtime';
13
- import type { AgentModuleUio, BodyWithMessageUio, DocumentAddRequestUio, FileCreationRequestUio, FileCreationResponseUio, FileStatusUio, FileStatusUpdateRequestUio, FileWithDownloadUrlUio, ImageKnowledgeUio, ImportFileToAgentKnowledge200ResponseUio, S3UploadBodyUio } from '../models/index';
13
+ import type { AgentModuleUio, BodyWithMessageUio, DocumentAddRequestUio, FileCreationRequestUio, FileCreationResponseUio, FileStatusUio, FileStatusUpdateRequestUio, FileWithDownloadUrlUio, ImageKnowledgeUio, ImportFileToAgentKnowledge200ResponseUio, KnowledgeBaseUio, KnowledgeBaseWithFilesUio, S3UploadBodyUio } from '../models/index';
14
14
  export interface AddDocumentToKnowledgeBaseRequest {
15
15
  agentId: string;
16
16
  documentAddRequestUio: DocumentAddRequestUio;
@@ -36,6 +36,13 @@ export interface DeleteImageFromKnowledgeBaseLibraryRequest {
36
36
  knowledgebaseId: string;
37
37
  imageId: string;
38
38
  }
39
+ export interface GetAgentKnowledgeFilesRequest {
40
+ agentId: string;
41
+ }
42
+ export interface GetAvailableKnowledgeBasesRequest {
43
+ organizationId: string;
44
+ agentId: string;
45
+ }
39
46
  export interface GetFileFromAgentKnowledgeRequest {
40
47
  agentId: string;
41
48
  fileId: string;
@@ -138,6 +145,26 @@ export declare class KnowledgeApi extends runtime.BaseAPI {
138
145
  * Delete a specific knowledge image from a library image in knowledge base
139
146
  */
140
147
  deleteImageFromKnowledgeBaseLibrary(knowledgebaseId: string, imageId: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
148
+ /**
149
+ * Returns all knowledge bases attached to the agent and their indexed files.
150
+ * Get knowledge bases and files for an agent
151
+ */
152
+ getAgentKnowledgeFilesRaw(requestParameters: GetAgentKnowledgeFilesRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Array<KnowledgeBaseWithFilesUio>>>;
153
+ /**
154
+ * Returns all knowledge bases attached to the agent and their indexed files.
155
+ * Get knowledge bases and files for an agent
156
+ */
157
+ getAgentKnowledgeFiles(agentId: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<KnowledgeBaseWithFilesUio>>;
158
+ /**
159
+ * Returns all knowledge bases belonging to the organization that can be assigned to the specified agent…
160
+ * List available knowledge bases for an agent
161
+ */
162
+ getAvailableKnowledgeBasesRaw(requestParameters: GetAvailableKnowledgeBasesRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Array<KnowledgeBaseUio>>>;
163
+ /**
164
+ * Returns all knowledge bases belonging to the organization that can be assigned to the specified agent…
165
+ * List available knowledge bases for an agent
166
+ */
167
+ getAvailableKnowledgeBases(organizationId: string, agentId: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<KnowledgeBaseUio>>;
141
168
  /**
142
169
  * Retrieves metadata for a file that has been imported into the agent\'s knowledge base
143
170
  * Get a specific knowledge file from an agent
@@ -250,6 +250,67 @@ class KnowledgeApi extends runtime.BaseAPI {
250
250
  async deleteImageFromKnowledgeBaseLibrary(knowledgebaseId, imageId, initOverrides) {
251
251
  await this.deleteImageFromKnowledgeBaseLibraryRaw({ knowledgebaseId: knowledgebaseId, imageId: imageId }, initOverrides);
252
252
  }
253
+ /**
254
+ * Returns all knowledge bases attached to the agent and their indexed files.
255
+ * Get knowledge bases and files for an agent
256
+ */
257
+ async getAgentKnowledgeFilesRaw(requestParameters, initOverrides) {
258
+ if (requestParameters['agentId'] == null) {
259
+ throw new runtime.RequiredError('agentId', 'Required parameter "agentId" was null or undefined when calling getAgentKnowledgeFiles().');
260
+ }
261
+ const queryParameters = {};
262
+ const headerParameters = {};
263
+ if (this.configuration && this.configuration.apiKey) {
264
+ headerParameters["X-API-Key"] = await this.configuration.apiKey("X-API-Key"); // ApiKeyAuth authentication
265
+ }
266
+ const response = await this.request({
267
+ path: `/agents/{agentId}/knowledge-files`.replace(`{${"agentId"}}`, encodeURIComponent(String(requestParameters['agentId']))),
268
+ method: 'GET',
269
+ headers: headerParameters,
270
+ query: queryParameters,
271
+ }, initOverrides);
272
+ return new runtime.JSONApiResponse(response, (jsonValue) => jsonValue.map(index_1.KnowledgeBaseWithFilesUioFromJSON));
273
+ }
274
+ /**
275
+ * Returns all knowledge bases attached to the agent and their indexed files.
276
+ * Get knowledge bases and files for an agent
277
+ */
278
+ async getAgentKnowledgeFiles(agentId, initOverrides) {
279
+ const response = await this.getAgentKnowledgeFilesRaw({ agentId: agentId }, initOverrides);
280
+ return await response.value();
281
+ }
282
+ /**
283
+ * Returns all knowledge bases belonging to the organization that can be assigned to the specified agent…
284
+ * List available knowledge bases for an agent
285
+ */
286
+ async getAvailableKnowledgeBasesRaw(requestParameters, initOverrides) {
287
+ if (requestParameters['organizationId'] == null) {
288
+ throw new runtime.RequiredError('organizationId', 'Required parameter "organizationId" was null or undefined when calling getAvailableKnowledgeBases().');
289
+ }
290
+ if (requestParameters['agentId'] == null) {
291
+ throw new runtime.RequiredError('agentId', 'Required parameter "agentId" was null or undefined when calling getAvailableKnowledgeBases().');
292
+ }
293
+ const queryParameters = {};
294
+ const headerParameters = {};
295
+ if (this.configuration && this.configuration.apiKey) {
296
+ headerParameters["X-API-Key"] = await this.configuration.apiKey("X-API-Key"); // ApiKeyAuth authentication
297
+ }
298
+ const response = await this.request({
299
+ path: `/organizations/{organizationId}/agents/{agentId}/available-knowledge-bases`.replace(`{${"organizationId"}}`, encodeURIComponent(String(requestParameters['organizationId']))).replace(`{${"agentId"}}`, encodeURIComponent(String(requestParameters['agentId']))),
300
+ method: 'GET',
301
+ headers: headerParameters,
302
+ query: queryParameters,
303
+ }, initOverrides);
304
+ return new runtime.JSONApiResponse(response, (jsonValue) => jsonValue.map(index_1.KnowledgeBaseUioFromJSON));
305
+ }
306
+ /**
307
+ * Returns all knowledge bases belonging to the organization that can be assigned to the specified agent…
308
+ * List available knowledge bases for an agent
309
+ */
310
+ async getAvailableKnowledgeBases(organizationId, agentId, initOverrides) {
311
+ const response = await this.getAvailableKnowledgeBasesRaw({ organizationId: organizationId, agentId: agentId }, initOverrides);
312
+ return await response.value();
313
+ }
253
314
  /**
254
315
  * Retrieves metadata for a file that has been imported into the agent\'s knowledge base
255
316
  * Get a specific knowledge file from an agent
@@ -31,6 +31,10 @@ export interface GetMessageByIdRequest {
31
31
  conversationId: string;
32
32
  messageId: string;
33
33
  }
34
+ export interface GetMessageStatusRequest {
35
+ conversationId: string;
36
+ messageId: string;
37
+ }
34
38
  export interface SendMessageToConversationRequest {
35
39
  conversationId: string;
36
40
  messageUio: MessageUio;
@@ -90,6 +94,16 @@ export declare class PromptsApi extends runtime.BaseAPI {
90
94
  * Get a specific message from a conversation
91
95
  */
92
96
  getMessageById(conversationId: string, messageId: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ChatMessageUio>;
97
+ /**
98
+ * Get the status of a message
99
+ * Get the status of a message
100
+ */
101
+ getMessageStatusRaw(requestParameters: GetMessageStatusRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
102
+ /**
103
+ * Get the status of a message
104
+ * Get the status of a message
105
+ */
106
+ getMessageStatus(conversationId: string, messageId: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
93
107
  /**
94
108
  * Adds a new message to an existing conversation and gets the AI response
95
109
  * Send a message to an existing conversation
@@ -219,6 +219,37 @@ class PromptsApi extends runtime.BaseAPI {
219
219
  const response = await this.getMessageByIdRaw({ conversationId: conversationId, messageId: messageId }, initOverrides);
220
220
  return await response.value();
221
221
  }
222
+ /**
223
+ * Get the status of a message
224
+ * Get the status of a message
225
+ */
226
+ async getMessageStatusRaw(requestParameters, initOverrides) {
227
+ if (requestParameters['conversationId'] == null) {
228
+ throw new runtime.RequiredError('conversationId', 'Required parameter "conversationId" was null or undefined when calling getMessageStatus().');
229
+ }
230
+ if (requestParameters['messageId'] == null) {
231
+ throw new runtime.RequiredError('messageId', 'Required parameter "messageId" was null or undefined when calling getMessageStatus().');
232
+ }
233
+ const queryParameters = {};
234
+ const headerParameters = {};
235
+ if (this.configuration && this.configuration.apiKey) {
236
+ headerParameters["X-API-Key"] = await this.configuration.apiKey("X-API-Key"); // ApiKeyAuth authentication
237
+ }
238
+ const response = await this.request({
239
+ path: `/conversations/{conversationId}/messages/{messageId}/status`.replace(`{${"conversationId"}}`, encodeURIComponent(String(requestParameters['conversationId']))).replace(`{${"messageId"}}`, encodeURIComponent(String(requestParameters['messageId']))),
240
+ method: 'GET',
241
+ headers: headerParameters,
242
+ query: queryParameters,
243
+ }, initOverrides);
244
+ return new runtime.VoidApiResponse(response);
245
+ }
246
+ /**
247
+ * Get the status of a message
248
+ * Get the status of a message
249
+ */
250
+ async getMessageStatus(conversationId, messageId, initOverrides) {
251
+ await this.getMessageStatusRaw({ conversationId: conversationId, messageId: messageId }, initOverrides);
252
+ }
222
253
  /**
223
254
  * Adds a new message to an existing conversation and gets the AI response
224
255
  * Send a message to an existing conversation
@@ -0,0 +1,75 @@
1
+ /**
2
+ * brain-client
3
+ * Api ands models for brain-app and brain-app
4
+ *
5
+ * The version of the OpenAPI document: 0.0.0-SNAPSHOT
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import type { KnowledgeFileSummaryUio } from './KnowledgeFileSummaryUio';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface KnowledgeBaseWithFilesUio
17
+ */
18
+ export interface KnowledgeBaseWithFilesUio {
19
+ /**
20
+ *
21
+ * @type {string}
22
+ * @memberof KnowledgeBaseWithFilesUio
23
+ */
24
+ id: string;
25
+ /**
26
+ *
27
+ * @type {string}
28
+ * @memberof KnowledgeBaseWithFilesUio
29
+ */
30
+ name: string;
31
+ /**
32
+ *
33
+ * @type {boolean}
34
+ * @memberof KnowledgeBaseWithFilesUio
35
+ */
36
+ indexed: boolean;
37
+ /**
38
+ *
39
+ * @type {string}
40
+ * @memberof KnowledgeBaseWithFilesUio
41
+ */
42
+ organisationId: string;
43
+ /**
44
+ *
45
+ * @type {Date}
46
+ * @memberof KnowledgeBaseWithFilesUio
47
+ */
48
+ createdAt?: Date;
49
+ /**
50
+ *
51
+ * @type {Date}
52
+ * @memberof KnowledgeBaseWithFilesUio
53
+ */
54
+ updatedAt?: Date;
55
+ /**
56
+ *
57
+ * @type {Array<string>}
58
+ * @memberof KnowledgeBaseWithFilesUio
59
+ */
60
+ authorizedAgents?: Array<string>;
61
+ /**
62
+ *
63
+ * @type {Array<KnowledgeFileSummaryUio>}
64
+ * @memberof KnowledgeBaseWithFilesUio
65
+ */
66
+ files: Array<KnowledgeFileSummaryUio>;
67
+ }
68
+ /**
69
+ * Check if a given object implements the KnowledgeBaseWithFilesUio interface.
70
+ */
71
+ export declare function instanceOfKnowledgeBaseWithFilesUio(value: object): value is KnowledgeBaseWithFilesUio;
72
+ export declare function KnowledgeBaseWithFilesUioFromJSON(json: any): KnowledgeBaseWithFilesUio;
73
+ export declare function KnowledgeBaseWithFilesUioFromJSONTyped(json: any, ignoreDiscriminator: boolean): KnowledgeBaseWithFilesUio;
74
+ export declare function KnowledgeBaseWithFilesUioToJSON(json: any): KnowledgeBaseWithFilesUio;
75
+ export declare function KnowledgeBaseWithFilesUioToJSONTyped(value?: KnowledgeBaseWithFilesUio | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,73 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * brain-client
6
+ * Api ands models for brain-app and brain-app
7
+ *
8
+ * The version of the OpenAPI document: 0.0.0-SNAPSHOT
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.instanceOfKnowledgeBaseWithFilesUio = instanceOfKnowledgeBaseWithFilesUio;
17
+ exports.KnowledgeBaseWithFilesUioFromJSON = KnowledgeBaseWithFilesUioFromJSON;
18
+ exports.KnowledgeBaseWithFilesUioFromJSONTyped = KnowledgeBaseWithFilesUioFromJSONTyped;
19
+ exports.KnowledgeBaseWithFilesUioToJSON = KnowledgeBaseWithFilesUioToJSON;
20
+ exports.KnowledgeBaseWithFilesUioToJSONTyped = KnowledgeBaseWithFilesUioToJSONTyped;
21
+ const KnowledgeFileSummaryUio_1 = require("./KnowledgeFileSummaryUio");
22
+ /**
23
+ * Check if a given object implements the KnowledgeBaseWithFilesUio interface.
24
+ */
25
+ function instanceOfKnowledgeBaseWithFilesUio(value) {
26
+ if (!('id' in value) || value['id'] === undefined)
27
+ return false;
28
+ if (!('name' in value) || value['name'] === undefined)
29
+ return false;
30
+ if (!('indexed' in value) || value['indexed'] === undefined)
31
+ return false;
32
+ if (!('organisationId' in value) || value['organisationId'] === undefined)
33
+ return false;
34
+ if (!('files' in value) || value['files'] === undefined)
35
+ return false;
36
+ return true;
37
+ }
38
+ function KnowledgeBaseWithFilesUioFromJSON(json) {
39
+ return KnowledgeBaseWithFilesUioFromJSONTyped(json, false);
40
+ }
41
+ function KnowledgeBaseWithFilesUioFromJSONTyped(json, ignoreDiscriminator) {
42
+ if (json == null) {
43
+ return json;
44
+ }
45
+ return {
46
+ 'id': json['id'],
47
+ 'name': json['name'],
48
+ 'indexed': json['indexed'],
49
+ 'organisationId': json['organisationId'],
50
+ 'createdAt': json['createdAt'] == null ? undefined : (new Date(json['createdAt'])),
51
+ 'updatedAt': json['updatedAt'] == null ? undefined : (new Date(json['updatedAt'])),
52
+ 'authorizedAgents': json['authorizedAgents'] == null ? undefined : json['authorizedAgents'],
53
+ 'files': (json['files'].map(KnowledgeFileSummaryUio_1.KnowledgeFileSummaryUioFromJSON)),
54
+ };
55
+ }
56
+ function KnowledgeBaseWithFilesUioToJSON(json) {
57
+ return KnowledgeBaseWithFilesUioToJSONTyped(json, false);
58
+ }
59
+ function KnowledgeBaseWithFilesUioToJSONTyped(value, ignoreDiscriminator = false) {
60
+ if (value == null) {
61
+ return value;
62
+ }
63
+ return {
64
+ 'id': value['id'],
65
+ 'name': value['name'],
66
+ 'indexed': value['indexed'],
67
+ 'organisationId': value['organisationId'],
68
+ 'createdAt': value['createdAt'] == null ? undefined : ((value['createdAt']).toISOString()),
69
+ 'updatedAt': value['updatedAt'] == null ? undefined : ((value['updatedAt']).toISOString()),
70
+ 'authorizedAgents': value['authorizedAgents'],
71
+ 'files': (value['files'].map(KnowledgeFileSummaryUio_1.KnowledgeFileSummaryUioToJSON)),
72
+ };
73
+ }
@@ -0,0 +1,21 @@
1
+ /**
2
+ * brain-client
3
+ * Api ands models for brain-app and brain-app
4
+ *
5
+ * The version of the OpenAPI document: 0.0.0-SNAPSHOT
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ * @type KnowledgeFileSummaryKnowledgeBaseIdUio
14
+ *
15
+ * @export
16
+ */
17
+ export type KnowledgeFileSummaryKnowledgeBaseIdUio = Array<string> | string;
18
+ export declare function KnowledgeFileSummaryKnowledgeBaseIdUioFromJSON(json: any): KnowledgeFileSummaryKnowledgeBaseIdUio;
19
+ export declare function KnowledgeFileSummaryKnowledgeBaseIdUioFromJSONTyped(json: any, ignoreDiscriminator: boolean): KnowledgeFileSummaryKnowledgeBaseIdUio;
20
+ export declare function KnowledgeFileSummaryKnowledgeBaseIdUioToJSON(json: any): any;
21
+ export declare function KnowledgeFileSummaryKnowledgeBaseIdUioToJSONTyped(value?: KnowledgeFileSummaryKnowledgeBaseIdUio | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,37 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * brain-client
6
+ * Api ands models for brain-app and brain-app
7
+ *
8
+ * The version of the OpenAPI document: 0.0.0-SNAPSHOT
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.KnowledgeFileSummaryKnowledgeBaseIdUioFromJSON = KnowledgeFileSummaryKnowledgeBaseIdUioFromJSON;
17
+ exports.KnowledgeFileSummaryKnowledgeBaseIdUioFromJSONTyped = KnowledgeFileSummaryKnowledgeBaseIdUioFromJSONTyped;
18
+ exports.KnowledgeFileSummaryKnowledgeBaseIdUioToJSON = KnowledgeFileSummaryKnowledgeBaseIdUioToJSON;
19
+ exports.KnowledgeFileSummaryKnowledgeBaseIdUioToJSONTyped = KnowledgeFileSummaryKnowledgeBaseIdUioToJSONTyped;
20
+ function KnowledgeFileSummaryKnowledgeBaseIdUioFromJSON(json) {
21
+ return KnowledgeFileSummaryKnowledgeBaseIdUioFromJSONTyped(json, false);
22
+ }
23
+ function KnowledgeFileSummaryKnowledgeBaseIdUioFromJSONTyped(json, ignoreDiscriminator) {
24
+ if (json == null) {
25
+ return json;
26
+ }
27
+ return {};
28
+ }
29
+ function KnowledgeFileSummaryKnowledgeBaseIdUioToJSON(json) {
30
+ return KnowledgeFileSummaryKnowledgeBaseIdUioToJSONTyped(json, false);
31
+ }
32
+ function KnowledgeFileSummaryKnowledgeBaseIdUioToJSONTyped(value, ignoreDiscriminator = false) {
33
+ if (value == null) {
34
+ return value;
35
+ }
36
+ return {};
37
+ }
@@ -0,0 +1,45 @@
1
+ /**
2
+ * brain-client
3
+ * Api ands models for brain-app and brain-app
4
+ *
5
+ * The version of the OpenAPI document: 0.0.0-SNAPSHOT
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import type { KnowledgeFileSummaryKnowledgeBaseIdUio } from './KnowledgeFileSummaryKnowledgeBaseIdUio';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface KnowledgeFileSummaryUio
17
+ */
18
+ export interface KnowledgeFileSummaryUio {
19
+ /**
20
+ *
21
+ * @type {string}
22
+ * @memberof KnowledgeFileSummaryUio
23
+ */
24
+ id: string;
25
+ /**
26
+ *
27
+ * @type {string}
28
+ * @memberof KnowledgeFileSummaryUio
29
+ */
30
+ name: string;
31
+ /**
32
+ *
33
+ * @type {KnowledgeFileSummaryKnowledgeBaseIdUio}
34
+ * @memberof KnowledgeFileSummaryUio
35
+ */
36
+ knowledgeBaseId?: KnowledgeFileSummaryKnowledgeBaseIdUio;
37
+ }
38
+ /**
39
+ * Check if a given object implements the KnowledgeFileSummaryUio interface.
40
+ */
41
+ export declare function instanceOfKnowledgeFileSummaryUio(value: object): value is KnowledgeFileSummaryUio;
42
+ export declare function KnowledgeFileSummaryUioFromJSON(json: any): KnowledgeFileSummaryUio;
43
+ export declare function KnowledgeFileSummaryUioFromJSONTyped(json: any, ignoreDiscriminator: boolean): KnowledgeFileSummaryUio;
44
+ export declare function KnowledgeFileSummaryUioToJSON(json: any): KnowledgeFileSummaryUio;
45
+ export declare function KnowledgeFileSummaryUioToJSONTyped(value?: KnowledgeFileSummaryUio | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,57 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * brain-client
6
+ * Api ands models for brain-app and brain-app
7
+ *
8
+ * The version of the OpenAPI document: 0.0.0-SNAPSHOT
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.instanceOfKnowledgeFileSummaryUio = instanceOfKnowledgeFileSummaryUio;
17
+ exports.KnowledgeFileSummaryUioFromJSON = KnowledgeFileSummaryUioFromJSON;
18
+ exports.KnowledgeFileSummaryUioFromJSONTyped = KnowledgeFileSummaryUioFromJSONTyped;
19
+ exports.KnowledgeFileSummaryUioToJSON = KnowledgeFileSummaryUioToJSON;
20
+ exports.KnowledgeFileSummaryUioToJSONTyped = KnowledgeFileSummaryUioToJSONTyped;
21
+ const KnowledgeFileSummaryKnowledgeBaseIdUio_1 = require("./KnowledgeFileSummaryKnowledgeBaseIdUio");
22
+ /**
23
+ * Check if a given object implements the KnowledgeFileSummaryUio interface.
24
+ */
25
+ function instanceOfKnowledgeFileSummaryUio(value) {
26
+ if (!('id' in value) || value['id'] === undefined)
27
+ return false;
28
+ if (!('name' in value) || value['name'] === undefined)
29
+ return false;
30
+ return true;
31
+ }
32
+ function KnowledgeFileSummaryUioFromJSON(json) {
33
+ return KnowledgeFileSummaryUioFromJSONTyped(json, false);
34
+ }
35
+ function KnowledgeFileSummaryUioFromJSONTyped(json, ignoreDiscriminator) {
36
+ if (json == null) {
37
+ return json;
38
+ }
39
+ return {
40
+ 'id': json['id'],
41
+ 'name': json['name'],
42
+ 'knowledgeBaseId': json['knowledgeBaseId'] == null ? undefined : (0, KnowledgeFileSummaryKnowledgeBaseIdUio_1.KnowledgeFileSummaryKnowledgeBaseIdUioFromJSON)(json['knowledgeBaseId']),
43
+ };
44
+ }
45
+ function KnowledgeFileSummaryUioToJSON(json) {
46
+ return KnowledgeFileSummaryUioToJSONTyped(json, false);
47
+ }
48
+ function KnowledgeFileSummaryUioToJSONTyped(value, ignoreDiscriminator = false) {
49
+ if (value == null) {
50
+ return value;
51
+ }
52
+ return {
53
+ 'id': value['id'],
54
+ 'name': value['name'],
55
+ 'knowledgeBaseId': (0, KnowledgeFileSummaryKnowledgeBaseIdUio_1.KnowledgeFileSummaryKnowledgeBaseIdUioToJSON)(value['knowledgeBaseId']),
56
+ };
57
+ }
@@ -54,6 +54,12 @@ export interface PromptCreateResponseUio {
54
54
  * @memberof PromptCreateResponseUio
55
55
  */
56
56
  toolsUsed?: Array<ToolUsedUio> | null;
57
+ /**
58
+ *
59
+ * @type {object}
60
+ * @memberof PromptCreateResponseUio
61
+ */
62
+ agent?: object;
57
63
  }
58
64
  /**
59
65
  * Check if a given object implements the PromptCreateResponseUio interface.
@@ -49,6 +49,7 @@ function PromptCreateResponseUioFromJSONTyped(json, ignoreDiscriminator) {
49
49
  'suggestions': json['suggestions'] == null ? undefined : (json['suggestions'].map(SuggestionUio_1.SuggestionUioFromJSON)),
50
50
  'input': (0, InputUio_1.InputUioFromJSON)(json['input']),
51
51
  'toolsUsed': json['toolsUsed'] == null ? undefined : (json['toolsUsed'].map(ToolUsedUio_1.ToolUsedUioFromJSON)),
52
+ 'agent': json['agent'] == null ? undefined : json['agent'],
52
53
  };
53
54
  }
54
55
  function PromptCreateResponseUioToJSON(json) {
@@ -65,5 +66,6 @@ function PromptCreateResponseUioToJSONTyped(value, ignoreDiscriminator = false)
65
66
  'suggestions': value['suggestions'] == null ? undefined : (value['suggestions'].map(SuggestionUio_1.SuggestionUioToJSON)),
66
67
  'input': (0, InputUio_1.InputUioToJSON)(value['input']),
67
68
  'toolsUsed': value['toolsUsed'] == null ? undefined : (value['toolsUsed'].map(ToolUsedUio_1.ToolUsedUioToJSON)),
69
+ 'agent': value['agent'],
68
70
  };
69
71
  }
@@ -122,6 +122,9 @@ export * from './InstanceUio';
122
122
  export * from './KnowledgeBaseFilesInnerUio';
123
123
  export * from './KnowledgeBasePrivacyUio';
124
124
  export * from './KnowledgeBaseUio';
125
+ export * from './KnowledgeBaseWithFilesUio';
126
+ export * from './KnowledgeFileSummaryKnowledgeBaseIdUio';
127
+ export * from './KnowledgeFileSummaryUio';
125
128
  export * from './LipsyncUio';
126
129
  export * from './ManifestCreateRequestUio';
127
130
  export * from './ManifestUio';
@@ -140,6 +140,9 @@ __exportStar(require("./InstanceUio"), exports);
140
140
  __exportStar(require("./KnowledgeBaseFilesInnerUio"), exports);
141
141
  __exportStar(require("./KnowledgeBasePrivacyUio"), exports);
142
142
  __exportStar(require("./KnowledgeBaseUio"), exports);
143
+ __exportStar(require("./KnowledgeBaseWithFilesUio"), exports);
144
+ __exportStar(require("./KnowledgeFileSummaryKnowledgeBaseIdUio"), exports);
145
+ __exportStar(require("./KnowledgeFileSummaryUio"), exports);
143
146
  __exportStar(require("./LipsyncUio"), exports);
144
147
  __exportStar(require("./ManifestCreateRequestUio"), exports);
145
148
  __exportStar(require("./ManifestUio"), exports);
package/dist/openapi.json CHANGED
@@ -4340,6 +4340,51 @@
4340
4340
  "tags" : [ "knowledge" ]
4341
4341
  }
4342
4342
  },
4343
+ "/agents/{agentId}/knowledge-files" : {
4344
+ "get" : {
4345
+ "description" : "Returns all knowledge bases attached to the agent and their indexed files.",
4346
+ "operationId" : "getAgentKnowledgeFiles",
4347
+ "parameters" : [ {
4348
+ "description" : "ID of the agent",
4349
+ "in" : "path",
4350
+ "name" : "agentId",
4351
+ "required" : true,
4352
+ "schema" : {
4353
+ "format" : "uuid",
4354
+ "type" : "string"
4355
+ }
4356
+ } ],
4357
+ "responses" : {
4358
+ "200" : {
4359
+ "content" : {
4360
+ "application/json" : {
4361
+ "schema" : {
4362
+ "items" : {
4363
+ "$ref" : "#/components/schemas/KnowledgeBaseWithFiles"
4364
+ },
4365
+ "type" : "array"
4366
+ }
4367
+ }
4368
+ },
4369
+ "description" : "List of knowledge bases gand their files"
4370
+ },
4371
+ "401" : {
4372
+ "description" : "Unauthorized"
4373
+ },
4374
+ "403" : {
4375
+ "description" : "Forbidden - User cannot access this brain"
4376
+ },
4377
+ "404" : {
4378
+ "description" : "Agent not found or no knowledge base attached"
4379
+ },
4380
+ "500" : {
4381
+ "description" : "Server error"
4382
+ }
4383
+ },
4384
+ "summary" : "Get knowledge bases and files for an agent",
4385
+ "tags" : [ "knowledge" ]
4386
+ }
4387
+ },
4343
4388
  "/agents/{agentId}/knowledge/project-imports" : {
4344
4389
  "post" : {
4345
4390
  "description" : "Imports project data from a local JSON file into the agent's knowledge base",
@@ -4733,6 +4778,56 @@
4733
4778
  "tags" : [ "knowledge" ]
4734
4779
  }
4735
4780
  },
4781
+ "/organizations/{organizationId}/agents/{agentId}/available-knowledge-bases" : {
4782
+ "get" : {
4783
+ "description" : "Returns all knowledge bases belonging to the organization that can be assigned to the specified agent…\n",
4784
+ "operationId" : "getAvailableKnowledgeBases",
4785
+ "parameters" : [ {
4786
+ "in" : "path",
4787
+ "name" : "organizationId",
4788
+ "required" : true,
4789
+ "schema" : {
4790
+ "type" : "string"
4791
+ }
4792
+ }, {
4793
+ "in" : "path",
4794
+ "name" : "agentId",
4795
+ "required" : true,
4796
+ "schema" : {
4797
+ "type" : "string"
4798
+ }
4799
+ } ],
4800
+ "responses" : {
4801
+ "200" : {
4802
+ "content" : {
4803
+ "application/json" : {
4804
+ "schema" : {
4805
+ "items" : {
4806
+ "$ref" : "#/components/schemas/KnowledgeBase"
4807
+ },
4808
+ "type" : "array"
4809
+ }
4810
+ }
4811
+ },
4812
+ "description" : "Successful retrieval of available knowledge bases"
4813
+ },
4814
+ "401" : {
4815
+ "description" : "Unauthorized"
4816
+ },
4817
+ "403" : {
4818
+ "description" : "Forbidden – user does not belong to the organization"
4819
+ },
4820
+ "404" : {
4821
+ "description" : "Organization or agent not found"
4822
+ },
4823
+ "500" : {
4824
+ "description" : "Server error"
4825
+ }
4826
+ },
4827
+ "summary" : "List available knowledge bases for an agent",
4828
+ "tags" : [ "knowledge" ]
4829
+ }
4830
+ },
4736
4831
  "/organizations/{organizationId}/knowledge/resets" : {
4737
4832
  "post" : {
4738
4833
  "description" : "Reset knowledge base",
@@ -5721,6 +5816,48 @@
5721
5816
  "summary" : "Get a specific message from a conversation",
5722
5817
  "tags" : [ "prompts" ]
5723
5818
  }
5819
+ },
5820
+ "/conversations/{conversationId}/messages/{messageId}/status" : {
5821
+ "get" : {
5822
+ "description" : "Get the status of a message",
5823
+ "operationId" : "getMessageStatus",
5824
+ "parameters" : [ {
5825
+ "description" : "The ID of the conversation",
5826
+ "in" : "path",
5827
+ "name" : "conversationId",
5828
+ "required" : true,
5829
+ "schema" : {
5830
+ "type" : "string"
5831
+ }
5832
+ }, {
5833
+ "description" : "The ID of the message",
5834
+ "in" : "path",
5835
+ "name" : "messageId",
5836
+ "required" : true,
5837
+ "schema" : {
5838
+ "type" : "string"
5839
+ }
5840
+ } ],
5841
+ "responses" : {
5842
+ "200" : {
5843
+ "description" : "Message status retrieved successfully"
5844
+ },
5845
+ "401" : {
5846
+ "description" : "Unauthorized"
5847
+ },
5848
+ "403" : {
5849
+ "description" : "Forbidden - User cannot access this conversation"
5850
+ },
5851
+ "404" : {
5852
+ "description" : "Conversation or message not found"
5853
+ },
5854
+ "500" : {
5855
+ "description" : "Server error"
5856
+ }
5857
+ },
5858
+ "summary" : "Get the status of a message",
5859
+ "tags" : [ "prompts" ]
5860
+ }
5724
5861
  }
5725
5862
  },
5726
5863
  "components" : {
@@ -8519,6 +8656,59 @@
8519
8656
  "required" : [ "shortDesc", "title" ],
8520
8657
  "type" : "object"
8521
8658
  },
8659
+ "KnowledgeBaseWithFiles" : {
8660
+ "properties" : {
8661
+ "id" : {
8662
+ "type" : "string"
8663
+ },
8664
+ "name" : {
8665
+ "type" : "string"
8666
+ },
8667
+ "indexed" : {
8668
+ "type" : "boolean"
8669
+ },
8670
+ "organisationId" : {
8671
+ "type" : "string"
8672
+ },
8673
+ "createdAt" : {
8674
+ "format" : "date-time",
8675
+ "type" : "string"
8676
+ },
8677
+ "updatedAt" : {
8678
+ "format" : "date-time",
8679
+ "type" : "string"
8680
+ },
8681
+ "authorizedAgents" : {
8682
+ "items" : {
8683
+ "type" : "string"
8684
+ },
8685
+ "type" : "array"
8686
+ },
8687
+ "files" : {
8688
+ "items" : {
8689
+ "$ref" : "#/components/schemas/KnowledgeFileSummary"
8690
+ },
8691
+ "type" : "array"
8692
+ }
8693
+ },
8694
+ "required" : [ "files", "id", "indexed", "name", "organisationId" ],
8695
+ "type" : "object"
8696
+ },
8697
+ "KnowledgeFileSummary" : {
8698
+ "properties" : {
8699
+ "id" : {
8700
+ "type" : "string"
8701
+ },
8702
+ "name" : {
8703
+ "type" : "string"
8704
+ },
8705
+ "knowledgeBaseId" : {
8706
+ "$ref" : "#/components/schemas/KnowledgeFileSummary_knowledgeBaseId"
8707
+ }
8708
+ },
8709
+ "required" : [ "id", "name" ],
8710
+ "type" : "object"
8711
+ },
8522
8712
  "DocumentAddRequest" : {
8523
8713
  "properties" : {
8524
8714
  "document" : {
@@ -8769,6 +8959,9 @@
8769
8959
  },
8770
8960
  "nullable" : true,
8771
8961
  "type" : "array"
8962
+ },
8963
+ "agent" : {
8964
+ "type" : "object"
8772
8965
  }
8773
8966
  },
8774
8967
  "required" : [ "conversationId", "input", "messageId", "text" ],
@@ -8836,6 +9029,10 @@
8836
9029
  "required" : [ "message" ],
8837
9030
  "type" : "object"
8838
9031
  },
9032
+ "KnowledgeBasePrivacy" : {
9033
+ "enum" : [ "private", "public" ],
9034
+ "type" : "string"
9035
+ },
8839
9036
  "HealthStatus" : {
8840
9037
  "enum" : [ "ok", "degraded", "down" ],
8841
9038
  "type" : "string"
@@ -8977,10 +9174,6 @@
8977
9174
  "enum" : [ "ELEVENLABS" ],
8978
9175
  "type" : "string"
8979
9176
  },
8980
- "KnowledgeBasePrivacy" : {
8981
- "enum" : [ "private", "public" ],
8982
- "type" : "string"
8983
- },
8984
9177
  "importFileToAgentKnowledge_request" : {
8985
9178
  "properties" : {
8986
9179
  "file" : {
@@ -9314,6 +9507,16 @@
9314
9507
  "required" : [ "id", "name" ],
9315
9508
  "type" : "object"
9316
9509
  },
9510
+ "KnowledgeFileSummary_knowledgeBaseId" : {
9511
+ "oneOf" : [ {
9512
+ "type" : "string"
9513
+ }, {
9514
+ "items" : {
9515
+ "type" : "string"
9516
+ },
9517
+ "type" : "array"
9518
+ } ]
9519
+ },
9317
9520
  "ToolSecure_configuration" : {
9318
9521
  "additionalProperties" : true,
9319
9522
  "properties" : {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@breign/client",
3
- "version": "1.0.41",
3
+ "version": "1.0.43",
4
4
  "main": "dist/index.js",
5
5
  "exports": {
6
6
  ".": "./dist/index.js",