import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
langbase: {
type: "app",
app: "langbase",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.langbase.com/beta/org/${this.langbase.$auth.org}/pipes`,
headers: {
Authorization: `Bearer ${this.langbase.$auth.org_api_key}`,
},
})
},
})
Create a new organization memory by sending the memory data. See the documentation
Langbase uses API keys for authentication. When you connect your Langbase account, Pipedream securely stores the keys so you can easily authenticate to Langbase APIs in both code and no-code steps.