@iblai/iblai-api 4.129.0-pre-ai → 4.129.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 CHANGED
@@ -110,7 +110,7 @@ class CancelablePromise {
110
110
 
111
111
  const OpenAPI = {
112
112
  BASE: 'https://base.manager.iblai.app',
113
- VERSION: '4.129.0-ai-plus',
113
+ VERSION: '4.129.1-ai-plus',
114
114
  WITH_CREDENTIALS: false,
115
115
  CREDENTIALS: 'include',
116
116
  TOKEN: undefined,
@@ -19386,7 +19386,7 @@ class AiMentorService {
19386
19386
  });
19387
19387
  }
19388
19388
  /**
19389
- * Retrieve tools available for a particular mentor. The 'is_allowed' field indicates whether the tool is compatible with the mentor's current LLM configuration.
19389
+ * Retrieve tools available for a particular mentor.
19390
19390
  * @returns ToolResponse
19391
19391
  * @throws ApiError
19392
19392
  */
package/dist/index.esm.js CHANGED
@@ -108,7 +108,7 @@ class CancelablePromise {
108
108
 
109
109
  const OpenAPI = {
110
110
  BASE: 'https://base.manager.iblai.app',
111
- VERSION: '4.129.0-ai-plus',
111
+ VERSION: '4.129.1-ai-plus',
112
112
  WITH_CREDENTIALS: false,
113
113
  CREDENTIALS: 'include',
114
114
  TOKEN: undefined,
@@ -19384,7 +19384,7 @@ class AiMentorService {
19384
19384
  });
19385
19385
  }
19386
19386
  /**
19387
- * Retrieve tools available for a particular mentor. The 'is_allowed' field indicates whether the tool is compatible with the mentor's current LLM configuration.
19387
+ * Retrieve tools available for a particular mentor.
19388
19388
  * @returns ToolResponse
19389
19389
  * @throws ApiError
19390
19390
  */
package/dist/index.umd.js CHANGED
@@ -114,7 +114,7 @@
114
114
 
115
115
  const OpenAPI = {
116
116
  BASE: 'https://base.manager.iblai.app',
117
- VERSION: '4.129.0-ai-plus',
117
+ VERSION: '4.129.1-ai-plus',
118
118
  WITH_CREDENTIALS: false,
119
119
  CREDENTIALS: 'include',
120
120
  TOKEN: undefined,
@@ -19390,7 +19390,7 @@
19390
19390
  });
19391
19391
  }
19392
19392
  /**
19393
- * Retrieve tools available for a particular mentor. The 'is_allowed' field indicates whether the tool is compatible with the mentor's current LLM configuration.
19393
+ * Retrieve tools available for a particular mentor.
19394
19394
  * @returns ToolResponse
19395
19395
  * @throws ApiError
19396
19396
  */
@@ -12,5 +12,4 @@ export type ToolResponse = {
12
12
  allow_openai_agent?: boolean;
13
13
  allow_openai_assistant?: boolean;
14
14
  allow_google_agent?: boolean;
15
- readonly is_allowed: string;
16
15
  };
@@ -79,4 +79,8 @@ export type TrainDocumentViewRequest = {
79
79
  * Description of an image submitted by the user for RAG.
80
80
  */
81
81
  user_image_description?: string;
82
+ /**
83
+ * GitHub access token with repo scope. Required for private repositories.
84
+ */
85
+ github_access_token?: string;
82
86
  };
@@ -4380,7 +4380,7 @@ export declare class AiMentorService {
4380
4380
  requestBody?: AutoMemoryPrompt;
4381
4381
  }): CancelablePromise<AutoMemoryPrompt>;
4382
4382
  /**
4383
- * Retrieve tools available for a particular mentor. The 'is_allowed' field indicates whether the tool is compatible with the mentor's current LLM configuration.
4383
+ * Retrieve tools available for a particular mentor.
4384
4384
  * @returns ToolResponse
4385
4385
  * @throws ApiError
4386
4386
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iblai/iblai-api",
3
- "version": "4.129.0-pre-ai",
3
+ "version": "4.129.1-ai",
4
4
  "main": "dist/index.cjs.js",
5
5
  "module": "dist/index.esm.js",
6
6
  "type": "module",
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.129.0-ai-plus
4
+ version: 4.129.1-ai-plus
5
5
  description: API for iblai
6
6
  paths:
7
7
  /api/ai-account/connected-services/callback/:
@@ -24229,9 +24229,7 @@ paths:
24229
24229
  /api/ai-mentor/orgs/{org}/users/{user_id}/mentors/{mentor}/available-tools/:
24230
24230
  get:
24231
24231
  operationId: ai_mentor_orgs_users_mentors_available_tools_list
24232
- description: Retrieve tools available for a particular mentor. The 'is_allowed'
24233
- field indicates whether the tool is compatible with the mentor's current LLM
24234
- configuration.
24232
+ description: Retrieve tools available for a particular mentor.
24235
24233
  parameters:
24236
24234
  - in: path
24237
24235
  name: mentor
@@ -24279,7 +24277,6 @@ paths:
24279
24277
  name: Web Search
24280
24278
  slug: web-search
24281
24279
  metadata: null
24282
- is_allowed: true
24283
24280
  category:
24284
24281
  id: 1
24285
24282
  name: Category 1
@@ -24288,20 +24285,10 @@ paths:
24288
24285
  name: Trained Documents
24289
24286
  slug: trained-documents
24290
24287
  metadata: null
24291
- is_allowed: true
24292
24288
  category:
24293
24289
  id: 2
24294
24290
  name: Category 2
24295
24291
  description: description
24296
- - id: 3
24297
- name: Image Generation
24298
- slug: image-generation
24299
- metadata: null
24300
- is_allowed: false
24301
- category:
24302
- id: 1
24303
- name: Category 1
24304
- description: description
24305
24292
  summary: List of tools
24306
24293
  description: ''
24307
24294
  /api/ai-mentor/orgs/{org}/users/{user_id}/mentors/{mentor}/create-call-credentials/:
@@ -92267,13 +92254,9 @@ components:
92267
92254
  type: boolean
92268
92255
  allow_google_agent:
92269
92256
  type: boolean
92270
- is_allowed:
92271
- type: string
92272
- readOnly: true
92273
92257
  required:
92274
92258
  - category
92275
92259
  - id
92276
- - is_allowed
92277
92260
  - name
92278
92261
  TopContent:
92279
92262
  type: object
@@ -92570,6 +92553,9 @@ components:
92570
92553
  user_image_description:
92571
92554
  type: string
92572
92555
  description: Description of an image submitted by the user for RAG.
92556
+ github_access_token:
92557
+ type: string
92558
+ description: GitHub access token with repo scope. Required for private repositories.
92573
92559
  required:
92574
92560
  - type
92575
92561
  TrainDocumentViewResponse:
@@ -21,7 +21,7 @@ export type OpenAPIConfig = {
21
21
 
22
22
  export const OpenAPI: OpenAPIConfig = {
23
23
  BASE: 'https://base.manager.iblai.app',
24
- VERSION: '4.129.0-ai-plus',
24
+ VERSION: '4.129.1-ai-plus',
25
25
  WITH_CREDENTIALS: false,
26
26
  CREDENTIALS: 'include',
27
27
  TOKEN: undefined,
@@ -16,6 +16,5 @@ export type ToolResponse = {
16
16
  allow_openai_agent?: boolean;
17
17
  allow_openai_assistant?: boolean;
18
18
  allow_google_agent?: boolean;
19
- readonly is_allowed: string;
20
19
  };
21
20
 
@@ -83,5 +83,9 @@ export type TrainDocumentViewRequest = {
83
83
  * Description of an image submitted by the user for RAG.
84
84
  */
85
85
  user_image_description?: string;
86
+ /**
87
+ * GitHub access token with repo scope. Required for private repositories.
88
+ */
89
+ github_access_token?: string;
86
90
  };
87
91
 
@@ -8084,7 +8084,7 @@ export class AiMentorService {
8084
8084
  });
8085
8085
  }
8086
8086
  /**
8087
- * Retrieve tools available for a particular mentor. The 'is_allowed' field indicates whether the tool is compatible with the mentor's current LLM configuration.
8087
+ * Retrieve tools available for a particular mentor.
8088
8088
  * @returns ToolResponse
8089
8089
  * @throws ApiError
8090
8090
  */