Automate your customer support with ChatGPT. SiteSpeakAI helps you create a custom trained AI powered support chatbot for your business or website.
Emit new event when a new lead is created in SiteSpeakAI. See the documentation
Emit new event for each attachment in a message received. This source is capped at 100 max new messages per run.
Emit new event when an email matching the search criteria is received. This source is capped at 100 max new messages per run.
Queries your chatbot and returns the answer and URLs used to find the answer. See the documentation
Create a draft from your Google Workspace email account. See the documentation
Download an attachment by attachmentId to the /tmp directory. See the documentation
SiteSpeakAI is a versatile API that brings voice to your digital spaces. You can use it to convert text into lifelike spoken audio in various languages and dialects. With Pipedream, you can automate and integrate this capability into various workflows, reacting to events, processing data, and connecting with other APIs or services. Whether to enhance user experience with voice responses, create audio content dynamically, or provide accessibility features, SiteSpeakAI opens up a world of audio interaction possibilities.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
sitespeakai: {
type: "app",
app: "sitespeakai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.sitespeak.ai/v1/me`,
headers: {
Authorization: `Bearer ${this.sitespeakai.$auth.api_token}`,
},
})
},
})
By connecting your personal Gmail account to Pipedream, you'll be able to incorporate email into whatever you're building with any of the thousands of apps that are available on Pipedream.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
gmail: {
type: "app",
app: "gmail",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.googleapis.com/oauth2/v1/userinfo`,
headers: {
Authorization: `Bearer ${this.gmail.$auth.oauth_access_token}`,
},
})
},
})