Trigger workflows on new emails, and send emails to yourself as part of a Pipedream workflow.
Get a unique address where you can send emails to trigger your workflow.
Customize and send an email to the email address you registered with Pipedream. The email will be sent by notifications@pipedream.com.
Scans a webpage for AI generated content. See the documentation
Scans a string for plagiarism as well as readability. See the documentation
export default defineComponent({
async run({ $ }) {
const options = {
subject: 'Your subject here',
text: 'Your text here'
};
$.send.email(options);
},
});
The Originality.ai API provides functionality to check content for potential plagiarism and AI-generated text. Within Pipedream's serverless environment, you can construct workflows that automate the process of evaluating originality in large volumes of text, integrate plagiarism checks into content pipelines, and flag content for further review. By leveraging this API in Pipedream, you can harness event-driven, scalable workflows to ensure content integrity across various platforms.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
originality_ai: {
type: "app",
app: "originality_ai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.originality.ai/api/v1/account/credits/balance`,
headers: {
"X-OAI-API-KEY": `${this.originality_ai.$auth.api_key}`,
},
})
},
})