with TransForm and Cerebras?
Emit new event when a response for a form is submitted
Create a chat completion with Cerebras AI. See the documentation
Submit a form via JSON. See the docs. For a better user experience use the Alpha TransForm Mobile App
The TransForm API allows you to automate server management tasks like creating, updating, and managing servers across multiple cloud platforms. It can be a game-changer for DevOps teams, system administrators, and developers who manage cloud infrastructure. By interfacing with TransForm via Pipedream, you can craft workflows that streamline server provisioning, configuration, and monitoring processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
transform: {
type: "app",
app: "transform",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://transform.alphasoftware.com/transformAPIVersion1.a5svc/getUsersInTransformAccount`,
headers: {
"apikey": `${this.transform.$auth.api_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
cerebras: {
type: "app",
app: "cerebras",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.cerebras.ai/v1/models`,
headers: {
Authorization: `Bearer ${this.cerebras.$auth.api_key}`,
},
})
},
})