knowmax-quest-types 2.36.0-beta.13 → 2.36.0-beta.14

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.
@@ -25,6 +25,8 @@ export interface IDocumentInsightOptions {
25
25
  chatMessages?: IDocumentInsightChatMessage[];
26
26
  /** Set to explicitly not use the contents of the document in generating answer. In that case only technical data like metadata, version data and table of contents will be used. Defaults to false. */
27
27
  ignoreContents?: boolean;
28
- maxWords?: number;
29
- language?: string;
28
+ /** Set to ignore conversation for this request. Na data will be read or written from or to conversation history. */
29
+ ignoreConversation?: boolean;
30
+ /** Set to true to instruct AI model to format results as JSON. */
31
+ responseFormatJson?: boolean;
30
32
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "knowmax-quest-types",
3
- "version": "2.36.0-beta.13",
3
+ "version": "2.36.0-beta.14",
4
4
  "description": "Contains type definitions for communicating with Knowmax Quest.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",