with actiTIME and Ollama?
Emit new event when a new customer is created. See the documentation
Emit new event when a new task is created. See the documentation
Emit new event when the user's working time is updated. See the documentation
Copies a model, creating a model with another name from an existing model. See the documentation
Changes the existing leave time record with a given value in actiTIME. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
actitime: {
type: "app",
app: "actitime",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.actitime.$auth.url}/api/v1/users`,
auth: {
username: `${this.actitime.$auth.email}`,
password: `${this.actitime.$auth.password}`,
},
})
},
})
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}`,
})
},
})