Node package manager
Emit new event with the latest count of downloads for an npm package. See the documentation.
Emit new event when a new version of an npm package is published. See the documentation
Send a message to an assistant on Dust and receive an answer. See the documentation
Upsert a document to a chosen Dust data source. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
dust: {
type: "app",
app: "dust",
}
},
async run({steps, $}) {
return await axios($, {
url: ` https://dust.tt/api/v1/w/${this.dust.$auth.workspace_id}/assistant/agent_configurations`,
headers: {
Authorization: `Bearer ${this.dust.$auth.api_key}`,
"Accept": `application/json`,
},
})
},
})