Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: single orchestrator bug and #3841 #3843

Merged
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,13 @@ export class OrchestratorRecognizer extends AdaptiveRecognizer implements Orches
// (undocumented)
static $kind: string;
// Warning: (ae-forgotten-export) The symbol "LabelResolver" needs to be exported by the entry point index.d.ts
constructor(modelFolder?: string, snapshotFile?: string, resolver?: LabelResolver);
constructor(modelFolder?: string, snapshotFile?: string, resolverExternal?: LabelResolver);
readonly chooseIntent = "ChooseIntent";
detectAmbiguousIntents: BoolExpression;
disambiguationScoreThreshold: NumberExpression;
readonly entityProperty = "entityResult";
externalEntityRecognizer: Recognizer;
protected fillRecognizerResultTelemetryProperties(recognizerResult: RecognizerResult, telemetryProperties: Record<string, string>, dialogContext?: DialogContext): Record<string, string>;
externalEntityRecognizer?: Recognizer;
protected fillRecognizerResultTelemetryProperties(recognizerResult: RecognizerResult, telemetryProperties?: Record<string, string>, dialogContext?: DialogContext): Record<string, string>;
// (undocumented)
getConverter(property: keyof OrchestratorRecognizerConfiguration): Converter | ConverterFactory;
modelFolder: StringExpression;
Expand Down
Loading