knowmax-quest-types
Version:
Contains type definitions for communicating with Knowmax Quest.
13 lines • 715 B
TypeScript
import type { IIntelligenceBaseOptions } from '.';
export declare enum DocumentInsightResponseFormat {
Text = "Text",
Json = "Json"
}
/** Describes Knowmax Quest Document Insight request. */
export interface IDocumentInsightOptions extends IIntelligenceBaseOptions {
/** 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. */
ignoreContents?: boolean;
/** Set to requested type to instruct AI model to format results. Empty for default (text). */
responseFormat?: DocumentInsightResponseFormat;
}
//# sourceMappingURL=IDocumentInsightOptions.d.ts.map