Trigger workflows on an interval or cron schedule.
Recognize language and encoding of an input text stream. See the documentation
Extract named entities from a document using Intellexer API. See the documentation
Summarize a document using Intellexer API. See the documentation
Summarize text using Intellexer API. See the documentation
The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.
The Intellexer API offers a suite of linguistic and semantic analysis tools that can enhance text-based applications. With it, you can extract meaning, relations, and facts from the text, enabling smarter data management and decision-making processes. When paired with Pipedream's serverless execution model, the Intellexer API can be used to automate content analysis, enhance search functionalities, and preprocess data for more complex workflows.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
intellexer_api: {
type: "app",
app: "intellexer_api",
}
},
async run({steps, $}) {
return await axios($, {
url: `http://api.intellexer.com/sentimentAnalyzerOntologies`,
headers: {
"Content-Type": `application/json`,
},
params: {
apikey: `${this.intellexer_api.$auth.api_key}`,
},
})
},
})