with Domo and Metatext.AI Pre-build AI models API?
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
Generate text based on the given prompt. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
domo: {
type: "app",
app: "domo",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.domo.com/v1/users`,
headers: {
Authorization: `Bearer ${this.domo.$auth.oauth_access_token}`,
},
})
},
})
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,
})
},
})