Massively scalable and secure object storage for cloud-native workloads, archives, data lakes, HPC, and machine learning.
Emit new event when a blob is deleted from a specified container in Azure Storage. See the documentation.
Emit new event when a new blob is created to a specified container in Azure Storage. See the documentation.
Emit new event when a new container is created in the specified Azure Storage account. See the documentation.
Emit new event when a new batch is completed in OpenAI. See the documentation
Emit new event when a new file is created in OpenAI. See the documentation
The Chat API, using the gpt-3.5-turbo
or gpt-4
model. See the documentation
Creates a new container under the specified account. If a container with the same name already exists, the operation fails. See the documentation.
Summarizes text using the Chat API. See the documentation
Deletes a specific blob from a container in Azure Storage. See the documentation.
Classify items into specific categories using the Chat API. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
azure_storage: {
type: "app",
app: "azure_storage",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://graph.microsoft.com/v1.0/me`,
headers: {
Authorization: `Bearer ${this.azure_storage.$auth.oauth_access_token}`,
},
})
},
})
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}`,
},
})
},
})