Automate your customer support with ChatGPT. SiteSpeakAI helps you create a custom trained AI powered support chatbot for your business or website.
Go to siteSiteSpeakAI 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}`,
},
})
},
})
Dynamic Audio Content Creation: Process new blog posts or written content, and use SiteSpeakAI to convert them into spoken word audio files. Store these audio files, or distribute them through podcast platforms or content delivery networks for a wider reach.
Voice-Enabled Notifications: Set up a Pipedream workflow that listens to triggers such as form submissions or support tickets. Utilize SiteSpeakAI to create audio messages and integrate with messaging platforms like Twilio to send voice messages, providing a personal touch to notifications.
Multilingual Support for Global Audiences: Use SiteSpeakAI within a workflow that takes user-generated content, detects the language with Google's Cloud Translation API, and produces audio in the user's native tongue, enhancing global accessibility and user engagement.
Emit new event when a new lead is created in SiteSpeakAI. See the documentation
Queries your chatbot and returns the answer and URLs used to find the answer. See the documentation
SiteSpeakAI uses API keys for authentication. When you connect your SiteSpeakAI account, Pipedream securely stores the keys so you can easily authenticate to SiteSpeakAI APIs in both code and no-code steps.