Home of cutting edge, explainable AI software that turns unstructured content into meaningful insights.
Emit new event when a new message is posted to one or more channels
Emit new event when a message was posted in a direct message channel
Emit new events on new Slack interactivity events sourced from Block Kit interactive elements, Slash commands, or Shortcuts.
Emit new event when a specific keyword is mentioned in a channel
Analyze text for language, entities, sentiment, and other insights. See the documentation
Detects languages used in the specified text fragment. See the documentation
Send a message to a user, group, private channel or public channel. See the documentation
Finds and returns a URL of an image (Creative Commons) best describing the text. See the documentation
Configure custom blocks and send to a channel, group, or user. See the documentation.
The Tisane Labs API offers advanced text analysis capabilities, focusing on abusive content detection and linguistic insights. With it, you can automate content moderation, extract entities, detect the sentiment, and identify the language of the text. In Pipedream, Tisane Labs API can be integrated into workflows to process text from various sources such as user comments, support tickets, or social media posts. By leveraging Pipedream's serverless platform, you can create real-time, event-driven applications that respond to text analyses, connect with other services, and perform actions based on the insights gained from the Tisane Labs API.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
tisane_labs: {
type: "app",
app: "tisane_labs",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.tisane.ai/languages`,
headers: {
"Ocp-Apim-Subscription-Key": `${this.tisane_labs.$auth.api_key}`,
},
})
},
})
The Pipedream Slack app enables you to build event-driven workflows that interact with the Slack API. Once you authorize the Pipedream app's access to your workspace, you can use Pipedream workflows to perform common Slack actions or write your own code against the Slack API.
The Pipedream Slack app is not a typical app. You don't interact with it directly as a bot, and it doesn't add custom functionality to your workspace out of the box. It makes it easier to automate anything you'd typically use the Slack API for, using Pipedream workflows.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
slack: {
type: "app",
app: "slack",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://slack.com/api/users.profile.get`,
headers: {
Authorization: `Bearer ${this.slack.$auth.oauth_access_token}`,
},
})
},
})