Integration platform for developers
Exposes an HTTP API for scheduling messages to be emitted at a future time
Emit new event based on a time interval before an upcoming event in the calendar. This source uses Pipedream's Task Scheduler. See the documentation for more information and instructions for connecting your Pipedream account.
Emit new event at a specified time before a card is due.
Emit new event when a Calendar event is upcoming, this source is using reminderMinutesBeforeStart
property of the event to determine the time it should emit.
Determine the sentiment of the given text (positive, negative, or neutral). See the documentation.
Identify and extract significant keywords from the given text. See the documentation.
Generate a blog post based on the given prompt. See the documentation.
Generate a short summary for news headlines. See the documentation.
Pipedream is an API that allows you to build applications that can connect to
various data sources and processes them in real-time. You can use Pipedream to
create applications that can perform ETL (Extract, Transform, and Load) tasks,
as well as to create data-driven workflows.
Some examples of applications you can build using the Pipedream API include:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
pipedream: {
type: "app",
app: "pipedream",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.pipedream.com/v1/users/me`,
headers: {
Authorization: `Bearer ${this.pipedream.$auth.api_key}`,
},
})
},
})
The Metatext.AI Pre-built AI Models API offers various artificial intelligence capabilities such as natural language processing, image recognition, and sentiment analysis. This API enables users to add AI features to their applications without the need for extensive machine learning expertise. Utilizing this API in Pipedream workflows allows for automation and integration with other services, making it possible to process and analyze text and images within a serverless environment efficiently.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
metatext_ai_pre_build_ai_models_api: {
type: "app",
app: "metatext_ai_pre_build_ai_models_api",
}
},
async run({steps, $}) {
const data = {
"text": `{your_text}`,
}
return await axios($, {
method: "post",
url: `https://api.metatext.ai/hub-inference/sentiment-analysis`,
headers: {
"Content-Type": `application/json`,
"x-api-key": `${this.metatext_ai_pre_build_ai_models_api.$auth.api_key}`,
},
data,
})
},
})