Deepgram

Intelligent, high accuracy speech recognition built for business

Integrate the Deepgram API with the OpenAI (ChatGPT) API

Setup the Deepgram API trigger to run a workflow which integrates with the OpenAI (ChatGPT) API. Pipedream's integration platform allows you to integrate Deepgram and OpenAI (ChatGPT) remarkably fast. Free for developers.

Get Balance with Deepgram API on New File Created from OpenAI (ChatGPT) API
OpenAI (ChatGPT) + Deepgram
 
Try it
Get Balance with Deepgram API on New Fine Tuning Job Created from OpenAI (ChatGPT) API
OpenAI (ChatGPT) + Deepgram
 
Try it
Get Balance with Deepgram API on New Run State Changed from OpenAI (ChatGPT) API
OpenAI (ChatGPT) + Deepgram
 
Try it
Get Project with Deepgram API on New File Created from OpenAI (ChatGPT) API
OpenAI (ChatGPT) + Deepgram
 
Try it
Get Project with Deepgram API on New Fine Tuning Job Created from OpenAI (ChatGPT) API
OpenAI (ChatGPT) + Deepgram
 
Try it
New File Created from the OpenAI (ChatGPT) API

Emit new event when a new file is created in OpenAI. See the documentation

 
Try it
New Fine Tuning Job Created from the OpenAI (ChatGPT) API

Emit new event when a new fine-tuning job is created in OpenAI. See the documentation

 
Try it
New Run State Changed from the OpenAI (ChatGPT) API

Emit new event every time a run changes its status. See the documentation

 
Try it
Get Balance with the Deepgram API

Retrieves details about the specified balance. See the documentation

 
Try it
Chat with the OpenAI (ChatGPT) API

The Chat API, using the gpt-3.5-turbo or gpt-4 model. See docs here

 
Try it
Get Project with the Deepgram API

Retrieves basic information about the specified project. See the documentation

 
Try it
Summarize Text with the OpenAI (ChatGPT) API

Summarizes text using the Chat API

 
Try it
Get Request with the Deepgram API

Retrieves the details of the specified request sent to the Deepgram API for the specified project. See the documentation

 
Try it

Overview of Deepgram

The Deepgram API offers powerful speech recognition capabilities, enabling you to transcribe, search, and analyze audio data with ease. With its cutting-edge machine learning models, you can uncover insights from voice conversations, automate content moderation, and enhance user experience by converting spoken words into text. Pipedream, as a serverless integration platform, empowers you to craft custom workflows that harness the potential of Deepgram. By connecting to various apps, you can automate complex tasks, analyze audio data on-the-fly, and respond to audio-driven events.

Connect Deepgram

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: {
    deepgram: {
      type: "app",
      app: "deepgram",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.deepgram.com/v1/projects`,
      headers: {
        "Authorization": `Token ${this.deepgram.$auth.api_key}`,
      },
    })
  },
})

Overview of OpenAI (ChatGPT)

OpenAI provides a suite of powerful AI models through its API, enabling developers to integrate advanced natural language processing and generative capabilities into their applications. Here’s an overview of the services offered by OpenAI's API:

Use Python or Node.js code to make fully authenticated API requests with your OpenAI account:

Connect OpenAI (ChatGPT)

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: {
    openai: {
      type: "app",
      app: "openai",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.openai.com/v1/models`,
      headers: {
        Authorization: `Bearer ${this.openai.$auth.api_key}`,
      },
    })
  },
})

Community Posts

Automatically Transcribe Google Drive Files with Pipedream
Automatically Transcribe Google Drive Files with Pipedream
Learn how to automate the creation of transcriptions by simply dropping files into a Google Drive folder.