Keyword Extraction
Zia Keyword Extractionは、Text Analyticsの一部で、テキストコンテンツを処理してテキストのハイライトを抽出します。抽出された用語は、KeywordsとKeyphrasesの2つのカテゴリにグループ化されます。これらのハイライトは、テキストの簡潔な要約を提供し、テキスト全体の抽象化を提供します。
レスポンスには、テキストから抽出されたキーワードの配列と、キーフレーズの配列が含まれます。
以下に示すように、1回のリクエストで最大1500文字のテキストブロックを入力として渡すことができます。テキストはgetKeywordExtraction()に渡されます。キーワードとキーフレーズは個別のリストとして取得されます。
以下で使用されているziaリファレンスは、 コンポーネントインスタンスページで定義されています。
copy
zia.getKeywordExtraction(['Zoho Corporation, is an Indian multinational technology company that makes web-based business tools. It is best known for Zoho Office Suite. The company was founded by Sridhar Vembu and Tony Thomas and has a presence in seven locations with its global headquarters in Chennai, India, and corporate headquarters in Pleasanton, California.'])
//入力テキストを渡す to be processed
.then((result) => console.log(result))
.catch((error) => console.log(error.toString()));
受信するサンプルレスポンスを以下に示します。レスポンスはNode.jsの両方のバージョンで同じです。
Node js
copy
"keyword_extractor": {
"keywords": [
"Chennai",
"company",
"India",
"Indian",
"presence",
"locations",
"Pleasanton",
"California"
],
"keyphrases": [
"corporate headquarters",
"multinational technology company",
"Zoho Corporation",
"Zoho Office Suite",
"global headquarters",
"Tony Thomas",
"web-based business tools",
"Sridhar Vembu"
]
}
最終更新日 2026-03-30 13:40:30 +0530 IST
Yes
No
Send your feedback to us
Skip
Submit