The world’s most accurate AI Detector now available through API.
Emit new event when a new message is posted in a channel
Emit new event when a new message is received in a chat
Emit new event when a new team is joined by the authenticated user
Investigates whether AI-generated content is present within the given text. See the documentation
Create a new channel in Microsoft Teams. See the docs here
Inspects if the submitted text contains plagiarised materials. See the documentation
Get the list of shift instances for a team. See the documentation
The Winston AI API offers robust content detection, enabling developers to analyze text for various purposes such as sentiment analysis, spam detection, and more. Within Pipedream, you can harness this API to build serverless workflows that react to content, integrate with numerous other apps, and automate responses or actions based on the API's insights. You might craft workflows that filter user-generated content, trigger alerts on negative sentiments, or enhance data collection with AI-driven context.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
winston_ai: {
type: "app",
app: "winston_ai",
}
},
async run({steps, $}) {
const data = {
"sentences": true,
"text": "In the heart of an ancient forest, where sunlight filters through a canopy of emerald leaves, a small, crystal-clear stream winds its way over smooth pebbles and under fallen logs, murmuring softly as it goes. This serene haven, untouched by the hustle and bustle of modern life, is a testament to nature's enduring beauty and tranquility, offering solace to those who seek its quiet embrace and reminding us of the simple, yet profound joys that lie in the natural world around us.",
"version": "3.0"
}
return await axios($, {
method: "post",
url: `https://api.gowinston.ai/functions/v1/predict`,
headers: {
Authorization: `Bearer ${this.winston_ai.$auth.api_token}`,
},
data,
})
},
})
The Microsoft Teams API on Pipedream allows you to automate tasks, streamline communication, and integrate with other services to enhance the functionality of Teams as a collaboration hub. With this API, you can send messages to channels, orchestrate complex workflows based on Teams events, and manage Teams' settings programmatically.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
microsoft_teams: {
type: "app",
app: "microsoft_teams",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://graph.microsoft.com/v1.0/me`,
headers: {
Authorization: `Bearer ${this.microsoft_teams.$auth.oauth_access_token}`,
},
})
},
})