Capture instant feedback on Slack and Teams with Polly
Write Python and use any of the 350k+ PyPi packages available. Refer to the Pipedream Python docs to learn more.
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:
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}`,
},
})
},
})
Python API on Pipedream offers developers to build or automate a variety of
tasks from their web and cloud apps. With the Python API, users are able to
create comprehensive and flexible scripts, compose and manage environment
variables, and configure resources to perform a range of functions.
By using Pipedream, you can easily:
def handler(pd: "pipedream"):
# Reference data from previous steps
print(pd.steps["trigger"]["context"]["id"])
# Return data for use in future steps
return {"foo": {"test":True}}