dochub-sdk 0.1.385 → 0.1.386

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.
Files changed (2) hide show
  1. package/interfaces/ai.ts +4 -4
  2. package/package.json +1 -1
package/interfaces/ai.ts CHANGED
@@ -227,7 +227,7 @@ export interface IDocHubComposerProvider {
227
227
  fetchCommands(): Promise<IDocHubAIComposerCommand[]>;
228
228
  }
229
229
 
230
- export enum IDocHubAICapabilityID {
230
+ export enum DocHubAICapabilityID {
231
231
  text = 'text',
232
232
  attachment = 'attachment',
233
233
  contextWindow = 'context-window'
@@ -246,15 +246,15 @@ export interface IDocHubAICapabilities {
246
246
  /**
247
247
  * Способность обрабатывать прикрепленные файлы к сообщению
248
248
  */
249
- [IDocHubAICapabilityID.attachment]?: DocHubAIAttachmentFileContentType[];
249
+ [DocHubAICapabilityID.attachment]?: DocHubAIAttachmentFileContentType[];
250
250
  /**
251
251
  * Способность воспринимать текс в запросе
252
252
  */
253
- [IDocHubAICapabilityID.text]?: boolean;
253
+ [DocHubAICapabilityID.text]?: boolean;
254
254
  /**
255
255
  * Размер контекстного окна
256
256
  */
257
- [IDocHubAICapabilityID.contextWindow]?: number;
257
+ [DocHubAICapabilityID.contextWindow]?: number;
258
258
  }
259
259
 
260
260
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dochub-sdk",
3
- "version": "0.1.385",
3
+ "version": "0.1.386",
4
4
  "description": "The DocHub System Development Kit.",
5
5
  "private": false,
6
6
  "main": "index.ts",