Getting Started
An introduction to using Deepgram’s text intelligence features to analyze text using Deepgram SDKs.
In this guide, you’ll learn how to analyze text using Deepgram’s text intelligence features: Summarization, Topic Detection, Intent Recognition, and Sentiment Analysis. The code examples use Deepgram’s SDKs.
Before you start, you’ll need to follow the steps in the Make Your First API Request guide to obtain a Deepgram API key, and configure your environment if you are choosing to use a Deepgram SDK.
What is Text Intelligence?
Deepgram’s Text Intelligence API lets users send a text source to Deepgram, and Deepgram will perform one of four types of analysis on the content of that text. Read about each feature in its individual feature guides:
API Playground
First, quickly explore Deepgram Text Intelligence in our API Playground.
Try this feature out in our API Playground!
Make the Request
A request made using one of the text intelligence features will follow the same form for each of the features; therefore, this guide will walk you through how to make one request, and you can use the feature(s) of your choice depending on which feature you want to use (Summarization, Topic Detection, Intent Recognition, or Sentiment Analysis).
Choose a Text
A text source can be sent to Deepgram as text (a text string or local text file) or as a url (hosted text file). These are referred to as a basic text request (string of text such as "This is a string of text."
) or a basic url request (a hosted url such as https://YOUR_FILE_URL.txt
).
Basic Text Request
This example shows how to analyze a local text file as your text source.
Basic URL Request
This example shows how to analyze a hosted url file as your text source.
Start the Application
Run your application from the terminal.
See Results
Your results will appear in your shell.
Analyze the Response
When the file is finished processing (often after only a few seconds), you’ll receive a JSON response:
Following are explanations of each of the example responses. Be sure to click the tabs in the code block above to view the example response for each text analysis feature.
Summarization
In the metadata
object, we see:
summary_info
: information about the model used and the input/output tokens. Summarization pricing is based on the number of input and output tokens. Read more at deepgram.com/pricing.
In the results
object, we see:
summary
: thetext
property in this object gives you the summary of the text you requested to be analyzed.
Topic Detection
In the metadata
object, we see:
topics_info
: information about the model used and the input/output tokens. Topic Detection pricing is based on the number of input and output tokens. Read more at deepgram.com/pricing.
In the results
object, we see:
-
topics
(object): contains the data about Topic Detection. -
segments
: each segment object contains a span of text taken from the input text; thistext
segment is analyzed for its topic. -
topics
(array): a list of topic objects, each containing thetopic
and aconfidence_score
.topic
: Deepgram analyzes the segmented text to identify the main topic of each.confidence_score
: a floating point value between 0 and 1 indicating the overall reliability of the analysis.
Intent Recognition
In the metadata
object, we see:
intents_info
: information about the model used and the input/output tokens. Intent Recognition pricing is based on the number of input and output tokens. Read more at deepgram.com/pricing.
In the results
object, we see:
-
intents
(object): contains the data about Intent Recognition. -
segments
: each segment object contains a span of text taken from the input text; thistext
segment is analyzed for its intent. -
intents
(array): a list of intent objects, each containing theintent
and aconfidence_score
.intent
: Deepgram analyzes the segmented text to identify the intent of each.confidence_score
: a floating point value between 0 and 1 indicating the overall reliability of the analysis.
Sentiment Analysis
In the metadata
object, we see:
sentiment_info
: information about the model used and the input/output tokens. Sentiment Analysis pricing is based on the number of input and output tokens. Read more at deepgram.com/pricing.
In the results
object, we see:
sentiments
(object): contains the data about Sentiment Analysis.segments
: each segment object contains a span of text taken from the input text; these segments of text show when the sentiment shifts throughout the text, and each one is analyzed for its sentiment.sentiment
can bepositive
,negative
, orneutral
.sentiment_score
: a floating point value between -1 and 1 representing the sentiment of the associated span of text, with -1 being the most negative sentiment, and 1 being the most positive sentiment.average
: the average sentiment for the entire input text.
Constraints
Here are a few constraints to keep in mind when making your request.
Language
At this time, text analysis features only work for English language texts. You must add a language parameter and set it to English when you make a text analysis request.
Token Limit
The input token limit is 150K tokens. When that limit is exceeded, a 400
error will be thrown.