Digital Services, Technology and Consulting
Emit new event when a new file is created in OpenAI. See the documentation
Emit new event when a new fine-tuning job is created in OpenAI. See the documentation
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.
What can you build with the Reply API? The possibilities are endless! Reply is
Used to power conversational Interfaces, AI Automation, and data enrichment
operations within many modern apps, websites, and services. It can be used to
create interactive chatbots, natural language processing, entity recognition,
and more.
Here are some examples of what you can build using the Reply API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
reply: {
type: "app",
app: "reply",
}
},
async run({steps, $}) {
return await axios($, {
url: ` https://api.reply.io/v1/people`,
params: {
apiKey: `${this.reply.$auth.api_key}`,
},
})
},
})
The 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}`,
},
})
},
})