@azure/ai-text-analytics 5.2.0-alpha.20211028.2 → 5.2.0-alpha.20211201.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -884,7 +884,8 @@ export declare interface Match {
884
884
  }
885
885
 
886
886
  /**
887
- * Options for a custom classify document multi categories action.
887
+ * Options for a custom classify document multi categories action. For more information, please refer
888
+ * to the service documentation: {@link https://aka.ms/azsdk/textanalytics/customfunctionalities}
888
889
  */
889
890
  export declare interface MultiCategoryClassifyAction extends CustomTextAnalyticsAction {
890
891
  /**
@@ -1328,7 +1329,8 @@ export declare interface RecognizeCategorizedEntitiesSuccessResult extends TextA
1328
1329
  }
1329
1330
 
1330
1331
  /**
1331
- * Options for a custom recognize entities action.
1332
+ * Options for a custom recognize entities action. For more information, please refer
1333
+ * to the service documentation: {@link https://aka.ms/azsdk/textanalytics/customentityrecognition}
1332
1334
  */
1333
1335
  export declare interface RecognizeCustomEntitiesAction extends CustomTextAnalyticsAction {
1334
1336
  /**
@@ -1670,7 +1672,8 @@ export declare interface SentimentConfidenceScores {
1670
1672
  }
1671
1673
 
1672
1674
  /**
1673
- * Options for an custom classify document single category action.
1675
+ * Options for an custom classify document single category action. For more information, please refer
1676
+ * to the service documentation: {@link https://aka.ms/azsdk/textanalytics/customfunctionalities}
1674
1677
  */
1675
1678
  export declare interface SingleCategoryClassifyAction extends CustomTextAnalyticsAction {
1676
1679
  /**
@@ -1859,15 +1862,18 @@ export declare interface TextAnalyticsActions {
1859
1862
  */
1860
1863
  extractSummaryActions?: ExtractSummaryAction[];
1861
1864
  /**
1862
- * A collection of descriptions of custom entity recognition actions.
1865
+ * A collection of descriptions of custom entity recognition actions. For more information, please refer
1866
+ * to the service documentation: {@link https://aka.ms/azsdk/textanalytics/customentityrecognition}
1863
1867
  */
1864
1868
  recognizeCustomEntitiesActions?: RecognizeCustomEntitiesAction[];
1865
1869
  /**
1866
- * A collection of descriptions of custom single classification actions.
1870
+ * A collection of descriptions of custom single classification actions. For more information, please refer
1871
+ * to the service documentation: {@link https://aka.ms/azsdk/textanalytics/customfunctionalities}
1867
1872
  */
1868
1873
  singleCategoryClassifyActions?: SingleCategoryClassifyAction[];
1869
1874
  /**
1870
- * A collection of descriptions of custom multi classification actions.
1875
+ * A collection of descriptions of custom multi classification actions. For more information, please refer
1876
+ * to the service documentation: {@link https://aka.ms/azsdk/textanalytics/customfunctionalities}
1871
1877
  */
1872
1878
  multiCategoryClassifyActions?: MultiCategoryClassifyAction[];
1873
1879
  }