What do you want to automate

with Leap and Langfuse?

Prompt, edit and deploy AI agents that connect to Leap, Langfuse 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
Add Feedback with Langfuse API on New Image Sample Created from Leap API
Leap + Langfuse
 
Try it
Add Feedback with Langfuse API on New Model Created from Leap API
Leap + Langfuse
 
Try it
Add Feedback with Langfuse API on New Model Version Created from Leap API
Leap + Langfuse
 
Try it
Create Image Generation Job with Leap API on New Score Received from Langfuse API
Langfuse + Leap
 
Try it
Create Image Generation Job with Leap API on New Trace Received from Langfuse API
Langfuse + Leap
 
Try it
New Image Sample Created from the Leap API

Emit new event when a new image sample is created for a model. See the documentation

 
Try it
New Score Received from the Langfuse API

Emit new event when user feedback (score) is submitted on a trace in Langfuse. See the documentation

 
Try it
New Model Created from the Leap API

Emit new event when a new model is created. See the documentation

 
Try it
New Trace Received from the Langfuse API

Emit new event when a new trace is recorded in Langfuse. See the documentation

 
Try it
New Model Version Created from the Leap API

Emit new event when a new model version is created/queued for training. See the documentation

 
Try it
Create Image Generation Job with the Leap API

Queues an image generation job and returns the job details. See the documentation

 
Try it
Add Feedback with the Langfuse API

Attach user feedback to an existing trace in Langfuse. See the documentation

 
Try it
Create Model with the Leap API

Creates a new custom model entity, which serves as a container that can be trained on custom images. See the documentation

 
Try it
Log Trace with the Langfuse API

Log a new trace in LangFuse with details. See the documentation

 
Try it
Upload Image Samples with the Leap API

Uploads image samples to a custom model. See the documentation

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

Overview of Leap

The Leap API enables automated interactions with the Leap.ai platform, which focuses on matching users with optimal job opportunities based on skills and preferences. In Pipedream, you can harness this API to create workflows that streamline the job search process, manage and analyze job matching data, or even integrate with other platforms to enhance the job seeking experience. With Pipedream's serverless execution environment, you can trigger these workflows on a schedule, via webhooks, or in response to events from other apps.

Connect Leap

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    leap: {
      type: "app",
      app: "leap",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.tryleap.ai/api/v1/images/models`,
      headers: {
        Authorization: `Bearer ${this.leap.$auth.api_key}`,
        "accept": `application/json`,
      },
    })
  },
})

Connect Langfuse

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    langfuse: {
      type: "app",
      app: "langfuse",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.langfuse.$auth.region}.langfuse.com/api/public/observations`,
      auth: {
        username: `${this.langfuse.$auth.public_key}`,
        password: `${this.langfuse.$auth.secret_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