Make your sales funnel completely clear.
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: {
sidetracker: {
type: "app",
app: "sidetracker",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.sidetracker.io/api/lists`,
headers: {
"Authorization": `${this.sidetracker.$auth.api_key}`,
},
})
},
})
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}`,
})
},
})