with Orshot and Albus?
Generate an image from a pre-designed library template using the Orshot API. See the documentation
Generate an image from an Orshot Studio template using the Orshot API. See the documentation
Get available modification keys for a studio template
Get available modification keys for a library template
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
orshot: {
type: "app",
app: "orshot",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.orshot.com/v1/templates`,
headers: {
Authorization: `Bearer ${this.orshot.$auth.token}`,
"content-type": `application/json`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
albus: {
type: "app",
app: "albus",
}
},
async run({steps, $}) {
const data = {
"prompt": `Once upon`,
}
return await axios($, {
method: "post",
url: `https://api-albus.springworks.in/chat/completions/custom`,
headers: {
"Authorization": `${this.albus.$auth.api_key}`,
},
data,
})
},
})