knowmax-quest-types 2.36.0-beta.6 → 2.36.0-beta.8
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.
|
@@ -15,6 +15,10 @@ export interface IDocumentInsightChatMessage {
|
|
|
15
15
|
}
|
|
16
16
|
/** Describes Knowmax Quest Document Insight request. */
|
|
17
17
|
export interface IDocumentInsightOptions {
|
|
18
|
+
/** The label of the intelligence model to use. If not provided, applicationName must be provided to determine intelligence model. */
|
|
19
|
+
intelligenceModelLabel?: string;
|
|
20
|
+
/** Used to determine intelligence model for application if intelligenceModelLabel is not provided. */
|
|
21
|
+
applicationName?: string;
|
|
18
22
|
/** Set to conversation id received after first request to maintain conversation history. Set to undefined to start new conversation. */
|
|
19
23
|
conversationId?: string;
|
|
20
24
|
action: DocumentInsightAction;
|