|

|  How to Access Microsoft Cognitive Services Text Analytics API in C#

How to Access Microsoft Cognitive Services Text Analytics API in C#

October 31, 2024

Learn how to seamlessly integrate Microsoft Cognitive Services Text Analytics API in C# to enhance your app's capabilities with natural language processing features.

How to Access Microsoft Cognitive Services Text Analytics API in C#

 

Initialize the Project and Install the Required Package

 

  • Create a new .NET project in Visual Studio by selecting "Console App" from the template list.
  •  

  • Go to the NuGet Package Manager Console (or use the NuGet Package Manager GUI) and install the `Azure.AI.TextAnalytics` library to facilitate calls to the Microsoft Cognitive Services Text Analytics API.
Install-Package Azure.AI.TextAnalytics

 

Set Up the Azure Text Analytics Client

 

  • Import the necessary namespaces in your C# program to access Azure Text Analytics.
  •  

  • Create a method to initialize the `TextAnalyticsClient` using the endpoint URL and API key provided by your Azure portal.
using Azure;
using Azure.AI.TextAnalytics;

public class TextAnalyticsService
{
    private readonly TextAnalyticsClient _client;

    public TextAnalyticsService(string endpoint, string apiKey)
    {
        var credentials = new AzureKeyCredential(apiKey);
        _client = new TextAnalyticsClient(new Uri(endpoint), credentials);
    }
}

 

Analyze Sentiment

 

  • Implement a method within your C# class to analyze the sentiment of a given text string. The method should handle potential exceptions that could be thrown during the API call.
public string AnalyzeSentiment(string text)
{
    try
    {
        DocumentSentiment documentSentiment = _client.AnalyzeSentiment(text);
        return documentSentiment.Sentiment.ToString();
    }
    catch (RequestFailedException e)
    {
        Console.WriteLine($"Error processing the sentiment analysis: {e.Message}");
        return "Error";
    }
}

 

Extract Key Phrases

 

  • Add functionality to extract key phrases from text input, providing insights into the most significant terms within the text.
public IList<string> ExtractKeyPhrases(string text)
{
    try
    {
        KeyPhraseCollection keyPhrases = _client.ExtractKeyPhrases(text);

        return keyPhrases.ToList();
    }
    catch (RequestFailedException e)
    {
        Console.WriteLine($"Error extracting key phrases: {e.Message}");
        return new List<string>();
    }
}

 

Detect Language

 

  • Implement a method to detect the language of a given input text, which can be useful for multilingual applications.
public string DetectLanguage(string text)
{
    try
    {
        DetectedLanguage detectedLanguage = _client.DetectLanguage(text);
        return detectedLanguage.Name;
    }
    catch (RequestFailedException e)
    {
        Console.WriteLine($"Error detecting language: {e.Message}");
        return "Error";
    }
}

 

Execute the Main Program Logic

 

  • In your `Main` method, instantiate the `TextAnalyticsService` class with the endpoint and API key. Call the implemented methods to demonstrate their functionality.
public class Program
{
    private static void Main(string[] args)
    {
        string endpoint = "<Your-Endpoint-URL>";
        string apiKey = "<Your-API-Key>";

        var service = new TextAnalyticsService(endpoint, apiKey);

        string textToAnalyze = "Microsoft Cognitive Services provides powerful AI tools.";

        string sentiment = service.AnalyzeSentiment(textToAnalyze);
        Console.WriteLine($"Sentiment: {sentiment}");

        IList<string> keyPhrases = service.ExtractKeyPhrases(textToAnalyze);
        Console.WriteLine("Key Phrases: " + string.Join(", ", keyPhrases));

        string language = service.DetectLanguage(textToAnalyze);
        Console.WriteLine($"Language: {language}");
    }
}

 

Incorporate these steps into your .NET application, and make appropriate adjustments to handle additional edge cases or customize functionalities according to project requirements.

Pre-order Friend AI Necklace

Pre-Order Friend Dev Kit

Open-source AI wearable
Build using the power of recall

Order Now

OMI AI PLATFORM
Remember Every Moment,
Talk to AI and Get Feedback

Omi Necklace

The #1 Open Source AI necklace: Experiment with how you capture and manage conversations.

Build and test with your own Omi Dev Kit 2.

Omi App

Fully Open-Source AI wearable app: build and use reminders, meeting summaries, task suggestions and more. All in one simple app.

Github →

Join the #1 open-source AI wearable community

Build faster and better with 3900+ community members on Omi Discord

Participate in hackathons to expand the Omi platform and win prizes

Participate in hackathons to expand the Omi platform and win prizes

Get cash bounties, free Omi devices and priority access by taking part in community activities

Join our Discord → 

OMI NECKLACE + OMI APP
First & only open-source AI wearable platform

a person looks into the phone with an app for AI Necklace, looking at notes Friend AI Wearable recorded a person looks into the phone with an app for AI Necklace, looking at notes Friend AI Wearable recorded
a person looks into the phone with an app for AI Necklace, looking at notes Friend AI Wearable recorded a person looks into the phone with an app for AI Necklace, looking at notes Friend AI Wearable recorded
online meeting with AI Wearable, showcasing how it works and helps online meeting with AI Wearable, showcasing how it works and helps
online meeting with AI Wearable, showcasing how it works and helps online meeting with AI Wearable, showcasing how it works and helps
App for Friend AI Necklace, showing notes and topics AI Necklace recorded App for Friend AI Necklace, showing notes and topics AI Necklace recorded
App for Friend AI Necklace, showing notes and topics AI Necklace recorded App for Friend AI Necklace, showing notes and topics AI Necklace recorded

OMI NECKLACE: DEV KIT
Order your Omi Dev Kit 2 now and create your use cases

Omi Dev Kit 2

Endless customization

OMI Necklace

$69.99

Make your life more fun with your AI wearable clone. It gives you thoughts, personalized feedback and becomes your second brain to discuss your thoughts and feelings. Available on iOS and Android.

Your Omi will seamlessly sync with your existing omi persona, giving you a full clone of yourself – with limitless potential for use cases:

  • Real-time conversation transcription and processing;
  • Develop your own use cases for fun and productivity;
  • Hundreds of community apps to make use of your Omi Persona and conversations.

Learn more

Omi Dev Kit 2: build at a new level

Key Specs

OMI DEV KIT

OMI DEV KIT 2

Microphone

Yes

Yes

Battery

4 days (250mAH)

2 days (250mAH)

On-board memory (works without phone)

No

Yes

Speaker

No

Yes

Programmable button

No

Yes

Estimated Delivery 

-

1 week

What people say

“Helping with MEMORY,

COMMUNICATION

with business/life partner,

capturing IDEAS, and solving for

a hearing CHALLENGE."

Nathan Sudds

“I wish I had this device

last summer

to RECORD

A CONVERSATION."

Chris Y.

“Fixed my ADHD and

helped me stay

organized."

David Nigh

OMI NECKLACE: DEV KIT
Take your brain to the next level

LATEST NEWS
Follow and be first in the know

Latest news
FOLLOW AND BE FIRST IN THE KNOW

San Francisco

team@basedhardware.com
Title

Company

About

Careers

Invest
Title

Products

Omi Dev Kit 2

Openglass

Other

App marketplace

Affiliate

Privacy

Customizations

Discord

Docs

Help