Polly

Capture instant feedback on Slack and Teams with Polly

Integrate the Polly API with the Formatting API

Setup the Polly API trigger to run a workflow which integrates with the Formatting API. Pipedream's integration platform allows you to integrate Polly and Formatting remarkably fast. Free for developers.

[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
Try it
[Data] Parse JSON with the Formatting API

Parse a JSON string

 
Try it
[Date/Time] Add/Subtract Time with the Formatting API

Add or subtract time from a given input

 
Try it
[Date/Time] Compare Dates with the Formatting API

Get the duration between two dates in days, hours, minutes, and seconds along with checking if they are the same.

 
Try it
[Date/Time] Format with the Formatting API

Format a date string to another date string

 
Try it

Overview of Polly

Polly AI is an AI-powered natural language processing (NLP) platform that can take any text and turn it into a human-like voice. With Polly, you can easily deploy natural language applications that comprehend and respond to user interactions using natural language processing (NLP). In addition, you can build sophisticated text-to-speech applications that are capable of transforming written words into life-like conversational speech.

Here are a few examples of applications you can build with the Polly API:

  • Voice-activated virtual assistant applications
  • Text-to-speech applications
  • Speech-driven video and gaming applications
  • Text-to-audio conversions
  • Speech recognition systems and applications
  • Natural language understanding (NLU) solutions and applications
  • Automated customer service solutions
  • Automated audio transcription solutions
  • Voice biometrics and authentication solutions
  • Text analytics solutions

Connect Polly

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: {
    polly: {
      type: "app",
      app: "polly",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      method: "post",
      url: `https://app.polly.ai/api/workflows.trigger`,
      params: {
        "X-API-TOKEN": `${this.polly.$auth.api_key}`,
      },
    })
  },
})

Connect Formatting

1
2
3
4
5
6
export default defineComponent({
  async run({ steps, $ }) {
    const text = ' Hello world! ';
    return text.trim()
  },
})