import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
vectorshift: {
type: "app",
app: "vectorshift",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.vectorshift.ai/v1/pipelines`,
headers: {
Authorization: `Bearer ${this.vectorshift.$auth.api_key}`,
},
})
},
})
Adds data to a knowledge base in VectorShift. See the documentation
Creates a new pipeline in VectorShift. See the documentation
Executes a VectorShift pipeline with specified inputs. See the documentation
VectorShift uses API keys for authentication. When you connect your VectorShift account, Pipedream securely stores the keys so you can easily authenticate to VectorShift APIs in both code and no-code steps.