Skip to content

Commit

Permalink
fix: single orchestrator bug and #3841 (#3843)
Browse files Browse the repository at this point in the history
* fix single orchestrator bug

* signature rename in doc

* removed unused (error)

* minor fixes based on review comments

* minor fix based on review comment

* add logic for removing "as"

* compatibility check fix

* remove declaration

Co-authored-by: Tien Suwandy <tiens@microsoft.com>
  • Loading branch information
hcyang and tsuwandy authored Jul 6, 2021
1 parent 290c7e0 commit 1982983
Show file tree
Hide file tree
Showing 3 changed files with 177 additions and 147 deletions.
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

0 comments on commit 1982983

Please sign in to comment.