knowmax-quest-types
Version:
Contains type definitions for communicating with Knowmax Quest.
13 lines • 732 B
TypeScript
export interface IPromptSuggestionOptions {
/** The label of the intelligence model to use. If not provided, applicationName must be provided to determine intelligence model. */
intelligenceModelLabel?: string;
/** Used to determine intelligence model for application if intelligenceModelLabel is not provided. */
applicationName?: string;
/** Id of existing conversation to generate prompt suggestions for. */
conversationId: string;
/** Maximum number of suggestions to generate. */
max?: number;
/** Maximum number of words to include in title of each suggestion. (actual prompt might be longer) */
maxWordsPerSuggestion?: number;
}
//# sourceMappingURL=IPromptSuggestionOptions.d.ts.map