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 apps like ChatGPT and DALL·E 2.
Go to siteThe OpenAI API is a powerful tool that provides access to a range of high-powered machine learning models. With the OpenAI API, developers can create products, services, and tools that enable humanizing AI experiences, and build applications that extend the power of human language.
Using the OpenAI API, developers can create language-driven applications such as:
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 Chat API, using the gpt-3.5-turbo
or gpt-4
model. See docs here
Classify items into specific categories using the Chat API
Translate text from one language to another using the Chat API
Transcribes audio into the input language. See docs here.
OpenAI (ChatGPT) uses API keys for authentication. When you connect your OpenAI (ChatGPT) account, Pipedream securely stores the keys so you can easily authenticate to OpenAI (ChatGPT) APIs in both code and no-code steps.
Create a new API key and enter it below.