with IBM Cloud - Speech to Text and Belco?
Emit new conversation event when a new conversation is created. See the documentation
Add a note to a conversation specified by ID. See the documentation
Get a list of conversations from Belco. See the documentation
The IBM Cloud - Speech to Text API transforms spoken language into written text, offering a powerful tool for creating transcriptions, enabling voice control and command features, and feeding speech into analytics platforms. With Pipedream, you can build automated workflows that leverage this capability, such as transcribing meetings in real-time, analyzing customer service calls for sentiment and keywords, or even creating subtitles for videos. The ability to connect with other apps on Pipedream allows for complex workflows that can turn spoken data into actionable insights or accessible content.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
ibm_cloud_speech_to_text: {
type: "app",
app: "ibm_cloud_speech_to_text",
}
},
async run({steps, $}) {
const data = {
"text": `hello world`,
}
return await axios($, {
method: "post",
url: `${this.ibm_cloud_speech_to_text.$auth.instance_url}/v1/synthesize`,
headers: {
"Content-Type": `application/json`,
"Accept": `audio/wav`,
},
auth: {
username: `apikey`,
password: `${this.ibm_cloud_speech_to_text.$auth.api_key}`,
},
data,
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
belco: {
type: "app",
app: "belco",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.belco.io/v1/users`,
headers: {
Authorization: `Bearer ${this.belco.$auth.api_token}`,
"accept": `application/json`,
},
})
},
})