wechaty-qnamaker
Version:
QnAMaker.ai Plugin for Wechaty
11 lines • 363 B
TypeScript
import { matchers } from 'wechaty-plugin-contrib';
export interface QnAMakerOptions {
endpointKey: string;
knowledgeBaseId: string;
resourceName: string;
scoreThreshold: number;
language?: matchers.LanguageMatcherOptions;
}
declare const DEFAULT_SCORE_THRESHOLD = 70;
export { DEFAULT_SCORE_THRESHOLD, };
//# sourceMappingURL=qnamaker.d.ts.map