Node package manager
Emit new event with the latest count of downloads for an npm package. See the documentation.
Emit new event when a new version of an npm package is published. See the documentation
Recognize objects within a provided image and retrieve it with great accuracy. See the documentation
Assess sentiment of a provided text. Vibes can be positive, negative, or neutral. See the documentation
Validate any email address and determine deliverability as well as disposable status. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
jigsawstack: {
type: "app",
app: "jigsawstack",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.jigsawstack.com/v1/prompt_engine`,
headers: {
"x-api-key": `${this.jigsawstack.$auth.api_key}`,
},
})
},
})