UNPKG

knowmax-quest-types

Version:

Contains type definitions for communicating with Knowmax Quest.

11 lines 685 B
import type { DocumentInsightResponseFormat } from '.'; import type { IIntelligenceBaseOptions } from '.'; export interface IIndexResearchOptions extends IIntelligenceBaseOptions { /** Azure AI Search filter expression to use for filtering the search results from which to extract the answer. */ filter?: string; /** Set to attempt to determine intent of the question in order to add an extra filter to improve the quality of the answer. */ filterIntent?: boolean; /** Set to requested type to instruct AI model to format results. Empty for default (text). */ responseFormat?: DocumentInsightResponseFormat; } //# sourceMappingURL=IIndexResearchOptions.d.ts.map