What do you want to automate

with AI/ML API and MindStudio?

Prompt, edit and deploy AI agents that connect to AI/ML API, MindStudio 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
Integrate the AI/ML API API with the MindStudio API
Setup the AI/ML API API trigger to run a workflow which integrates with the MindStudio API. Pipedream's integration platform allows you to integrate AI/ML API and MindStudio remarkably fast. Free for developers.

Connect AI/ML API

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
28
29
30
31
32
33
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    ai_ml_api: {
      type: "app",
      app: "ai_ml_api",
    }
  },
  async run({steps, $}) {
    const data = {
          "model": "mistralai/Mistral-7B-v0.1",
          "messages":  [
            {
                "role": "system",
                "content": "You are an AI assistant who knows everything.",
            },
            {
                "role": "user",
                "content": "Tell me, why is the sky blue?"
            },
        ]
    }
    return await axios($, {
      method: "POST",
      url: `https://api.aimlapi.com/chat/completions`,
      headers: {
        Authorization: `Bearer ${this.ai_ml_api.$auth.api_key}`,
      },
      data,
    })
  },
})

Connect MindStudio

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
28
29
30
31
32
33
34
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    mindstudio: {
      type: "app",
      app: "mindstudio",
    }
  },
  async run({steps, $}) {
    const data = {
        "workerId": `${this.mindstudio.$auth.agent_id}`,
        "includeBillingCosts": true,
        "variables": {
          "key1": "value1",
          "key2": "value2"
        },
        "metadata": {
          "tags": ["tag1", "tag2"]
        },
        "workflow": "optional-workflow-name",
        "callbackUrl": "https://your-callback-url.com/endpoint"
      }
    return await axios($, {
      method: "post",
      url: `https://api.mindstudio.ai/developer/v2/agents/run`,
      headers: {
        Authorization: `Bearer ${this.mindstudio.$auth.api_key}`,
        "content-type": `application/json`,
      },
      data,
    })
  },
})

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