What do you want to automate

with Kraken.io and Cerebras?

Prompt, edit and deploy AI agents that connect to Kraken.io, Cerebras and 2,500+ other apps in seconds.

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Create Chat Completion with the Cerebras API

Create a chat completion with Cerebras AI. See the documentation

 
Try it
Create Completion with the Cerebras API

Create a completion with Cerebras AI. See the documentation

 
Try it
List Models with the Cerebras API

List all available Cerebras models. See the documentation

 
Try it
Integrate the Kraken.io API with the Cerebras API
Setup the Kraken.io API trigger to run a workflow which integrates with the Cerebras API. Pipedream's integration platform allows you to integrate Kraken.io and Cerebras remarkably fast. Free for developers.

Connect Kraken.io

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    kraken_io: {
      type: "app",
      app: "kraken_io",
    }
  },
  async run({steps, $}) {
    const data = {
      "auth": {
        "api_key": `${this.kraken_io.$auth.api_key}`,
        "api_secret": `${this.kraken_io.$auth.api_secret}`
      }
    };
    return await axios($, {
      method: "post",
      url: `https://api.kraken.io/user_status`,
      headers: {
        "content-type": `application/json`,
        "accept": `application/json`,
      },
      data,
    })
  },
})

Connect Cerebras

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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}`,
      },
    })
  },
})

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo