Keywords
Extracts keywords from the input text.
In an effort to expand its KEYWORD social platform forKEYWORD virtual reality, KEYWORD Horizon Worlds, Meta is launching it in France and Spain today β building on the existing three markets including the U.S., Canada, and the UK where it was already available. In a Facebook post, Mark Zuckerberg announced the launch with an unappealing photo and noted that it plans to expand the platform to more countries.
Use Keyword Skill to extract:
Benchmarks
Coming soon...
Output labels
Type | Name | Value |
---|---|---|
keyword | The keyword text | Relevance score |
Parameters
None.
Example
Request
curl -X POST \
'https://api.oneai.com/api/v0/pipeline' \
-H 'accept: application/json' \
-H 'Content-Type: application/json' \
-H 'api-key: <YOUR-API-KEY-HERE>' \
-d '{
"input": "Tesla, Inc. is an American multinational automotive and clean energy company headquartered in Austin, Texas. Tesla designs and manufactures electric vehicles (electric cars and trucks), battery energy storage from home to grid-scale, solar panels and solar roof tiles, and related products and services. ",
"steps": [
{
"skill": "keywords"
}
]
}'
const { OneAI } = require("oneai");
const oneai = new OneAI("<YOUR-API-KEY-HERE>");
const text = "Tesla, Inc. is an American multinational automotive and clean energy company headquartered in Austin, Texas. Tesla designs and manufactures electric vehicles (electric cars and trucks), battery energy storage from home to grid-scale, solar panels and solar roof tiles, and related products and services. ";
const pipeline = new oneai.Pipeline(
oneai.skills.topics(),
);
pipeline.run(text).then(console.log);
import oneai
oneai.api_key = "<YOUR-API-KEY-HERE>"
text = "Tesla, Inc. is an American multinational automotive and clean energy company headquartered in Austin, Texas. Tesla designs and manufactures electric vehicles (electric cars and trucks), battery energy storage from home to grid-scale, solar panels and solar roof tiles, and related products and services. "
pipeline = oneai.Pipeline(
steps = [
oneai.skills.Topics(),
]
)
output = pipeline.run(text)
Response
{
"input_text": "Tesla, Inc. is an American multinational automotive and clean energy company headquartered in Austin, Texas. Tesla designs and manufactures electric vehicles (electric cars and trucks), battery energy storage from home to grid-scale, solar panels and solar roof tiles, and related products and services. ",
"status": "success",
"output": [
{
"text_generated_by_step_name": "input",
"text_generated_by_step_id": 0,
"text": "Tesla, Inc. is an American multinational automotive and clean energy company headquartered in Austin, Texas. Tesla designs and manufactures electric vehicles (electric cars and trucks), battery energy storage from home to grid-scale, solar panels and solar roof tiles, and related products and services. ",
"labels": [
{
"type": "keyword",
"skill": "keywords",
"name": "electric vehicles",
"value": 0.098,
"span_text": "electric vehicles",
"span": [
140,
157
],
"output_spans": [
{
"section": 0,
"start": 140,
"end": 157
}
]
},
{
"type": "keyword",
"skill": "keywords",
"name": "tesla",
"value": 0.085,
"span_text": "Tesla",
"span": [
0,
5
],
"output_spans": [
{
"section": 0,
"start": 0,
"end": 5
}
]
},
{
"type": "keyword",
"skill": "keywords",
"name": "tesla",
"value": 0.085,
"span_text": "Tesla",
"span": [
109,
114
],
"output_spans": [
{
"section": 0,
"start": 109,
"end": 114
}
]
}
]
}
],
"stats": {
"concurrency_wait_time": 0,
"total_running_jobs": 1,
"total_waiting_jobs": 0
}
}
{
text: 'Tesla, Inc. is an American multinational automotive and clean energy company headquartered in Austin, Texas. Tesla designs and manufactures electric vehicles (electric cars and trucks), battery energy storage from home to grid-scale, solar panels and solar roof tiles, and related products and services. ',
topics: [
{ type: 'topic', skill: 'article-topics', value: 'Clean Energy' },
{ type: 'topic', skill: 'article-topics', value: 'Tesla' },
{ type: 'topic', skill: 'article-topics', value: 'Storage' },
{ type: 'topic', skill: 'article-topics', value: 'Tesla, Inc.' },
{ type: 'topic', skill: 'article-topics', value: 'Electric Vehicles'},
{ type: 'topic', skill: 'article-topics', value: 'Home' },
{ type: 'topic', skill: 'article-topics', value: 'Grid' }
]
}
Updated 2 months ago