APIs that make your app understand language. Summarize conversations, categorize articles, and more.
Go to siteimport { axios } from "@pipedream/platform"
export default defineComponent({
props: {
one_ai: {
type: "app",
app: "one_ai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.oneai.com/api/v0/org/info`,
headers: {
"api-key": `${this.one_ai.$auth.api_key}`,
"Accept": `application/json`,
},
})
},
})
Find clusters with a similar meaning of a given text. See the documentation.
One AI uses API keys for authentication. When you connect your One AI account, Pipedream securely stores the keys so you can easily authenticate to One AI APIs in both code and no-code steps.
Sign in and get your API Keys from your Dashboard under API Keys.