-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add action types * add ,
- Loading branch information
Showing
25 changed files
with
293 additions
and
149 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeSentimentAction.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
namespace Azure.AI.TextAnalytics | ||
{ | ||
/// <summary> | ||
/// Configurations that allow callers to specify details about how to execute | ||
/// an Analyze Sentiment action in a set of documents. | ||
/// For example, execute opinion mining, set model version, and more. | ||
/// </summary> | ||
public class AnalyzeSentimentAction : AnalyzeSentimentOptions | ||
{ | ||
/// <summary> | ||
/// Initializes a new instance of the <see cref="AnalyzeSentimentAction"/> | ||
/// class which allows callers to specify details about how to execute | ||
/// an Analyze Sentiment action in a set of documents. | ||
/// For example, execute opinion mining, set model version, and more. | ||
/// </summary> | ||
public AnalyzeSentimentAction() | ||
{ | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
sdk/textanalytics/Azure.AI.TextAnalytics/src/ExtractKeyPhrasesAction.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
namespace Azure.AI.TextAnalytics | ||
{ | ||
/// <summary> | ||
/// Configurations that allow callers to specify details about how to execute | ||
/// an Extract KeyPhrases action in a set of documents. | ||
/// For example, set model version, disable service logging, and more. | ||
/// </summary> | ||
public class ExtractKeyPhrasesAction : ExtractKeyPhrasesOptions | ||
{ | ||
/// <summary> | ||
/// Initializes a new instance of the <see cref="ExtractKeyPhrasesAction"/> | ||
/// class which allows callers to specify details about how to execute | ||
/// an Extract KeyPhrases action in a set of documents. | ||
/// For example, set model version, disable service logging, and more. | ||
/// </summary> | ||
public ExtractKeyPhrasesAction() | ||
{ | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeEntitiesAction.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
namespace Azure.AI.TextAnalytics | ||
{ | ||
/// <summary> | ||
/// Configurations that allow callers to specify details about how to execute | ||
/// a Recognize Entities action in a set of documents. | ||
/// For example, set model version, disable service logging, and more. | ||
/// </summary> | ||
public class RecognizeEntitiesAction : RecognizeEntitiesOptions | ||
{ | ||
/// <summary> | ||
/// Initializes a new instance of the <see cref="RecognizeEntitiesAction"/> | ||
/// class which allows callers to specify details about how to execute | ||
/// a Recognize Entities action in a set of documents. | ||
/// For example, set model version, disable service logging, and more. | ||
/// </summary> | ||
public RecognizeEntitiesAction() | ||
{ | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeLinkedEntitiesAction.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
namespace Azure.AI.TextAnalytics | ||
{ | ||
/// <summary> | ||
/// Configurations that allow callers to specify details about how to execute | ||
/// a Recognize Linked Entities action in a set of documents. | ||
/// For example, set model version, disable service logging, and more. | ||
/// </summary> | ||
public class RecognizeLinkedEntitiesAction : RecognizeLinkedEntitiesOptions | ||
{ | ||
/// <summary> | ||
/// Initializes a new instance of the <see cref="RecognizeLinkedEntitiesAction"/> | ||
/// class which allows callers to specify details about how to execute | ||
/// a Recognize Linked Entities action in a set of documents. | ||
/// For example, set model version, disable service logging, and more. | ||
/// </summary> | ||
public RecognizeLinkedEntitiesAction() | ||
{ | ||
} | ||
} | ||
} |
6 changes: 2 additions & 4 deletions
6
sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeLinkedEntitiesOptions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizePiiEntitiesAction.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
namespace Azure.AI.TextAnalytics | ||
{ | ||
/// <summary> | ||
/// Configurations that allow callers to specify details about how to execute | ||
/// a Recognize PII Entities action in a set of documents. | ||
/// For example, set model version, filter the response entities by a given | ||
/// domain filter, and more. | ||
/// </summary> | ||
public class RecognizePiiEntitiesAction : RecognizePiiEntitiesOptions | ||
{ | ||
/// <summary> | ||
/// Initializes a new instance of the <see cref="RecognizePiiEntitiesAction"/> | ||
/// class which allows callers to specify details about how to execute | ||
/// a Recognize PII Entities action in a set of documents. | ||
/// For example, set model version, filter the response entities by a given | ||
/// domain filter, and more. | ||
/// </summary> | ||
public RecognizePiiEntitiesAction() | ||
{ | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.