OpenAI is an AI research and deployment company with the mission to ensure that artificial general intelligence benefits all of humanity. They are the makers of popular models like ChatGPT, DALL-E, and Whisper.
The Chat API, using the gpt-3.5-turbo
or gpt-4
model. See the documentation
Summarizes text using the Chat API. See the documentation
Classify items into specific categories using the Chat API. See the documentation
Translate text from one language to another using the Chat API. See the documentation
Transcribes audio into the input language. See the documentation.
OpenAI provides a suite of powerful AI models through its API, enabling developers to integrate advanced natural language processing and generative capabilities into their applications. Here’s an overview of the services offered by OpenAI's API:
Use Python or Node.js code to make fully authenticated API requests with your OpenAI account:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
openai: {
type: "app",
app: "openai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.openai.com/v1/models`,
headers: {
Authorization: `Bearer ${this.openai.$auth.api_key}`,
},
})
},
})
The Wistia API lets you dive deep into video analytics, manage your media library, and automate video workflows. It's great for developers aiming to extend the functionality of their Wistia-hosted content. When used within Pipedream, you can integrate Wistia with countless other apps and services to create robust automations. You could, for instance, update a CRM with video view data, send custom email alerts based on viewer behavior, or even synchronize video uploads with a content management system.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
wistia: {
type: "app",
app: "wistia",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.wistia.com/v1/account.json`,
auth: {
username: `api`,
password: `${this.wistia.$auth.api_token}`,
},
})
},
})