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
Copies a model, creating a model with another name from an existing model. See the documentation.
Generates the next message in a chat with a provided model. See the documentation.
Generates a response for a given prompt with a provided model. See the documentation.
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}`,
})
},
})