Personal cloud storage
Emit new event when a new file is added to a specific drive in OneDrive
Emit an event when a new file is added to a specific directory tree in a OneDrive drive
Emit an event when a new file of a specific type is created under a directory tree in a OneDrive drive
Emit new event when a new folder is created in a OneDrive drive
Emit an event when a new folder is created under a directory tree in a OneDrive drive
Download a file stored in OneDrive. See the documentation
The Chat API, using the gpt-3.5-turbo
or gpt-4
model. See docs here
Retrieve a table from an Excel spreadsheet stored in OneDrive See the documentation
Classify items into specific categories using the Chat API
Microsoft OneDrive API allows developers to access the OneDrive service, which
enables users to store and share their personal data, such as files, photos,
and OneNote notebooks, across all their devices.
With the Microsoft OneDrive API, developers can build a variety of applications
and services that take advantage of the following features:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
microsoft_onedrive: {
type: "app",
app: "microsoft_onedrive",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://graph.microsoft.com/v1.0/me`,
headers: {
Authorization: `Bearer ${this.microsoft_onedrive.$auth.oauth_access_token}`,
},
})
},
})
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}`,
},
})
},
})