with Zenventory and Ollama?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
zenventory: {
type: "app",
app: "zenventory",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.zenventory.com/rest/inventory/items`,
auth: {
username: `${this.zenventory.$auth.api_key}`,
password: `${this.zenventory.$auth.api_secret}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
ollama: {
type: "app",
app: "ollama",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.ollama.$auth.url}`,
})
},
})