You missed us at SIGNAL!
We used our bot to generate TwiML for use in Twilio apps.
This application makes use of Open AI's API and GPT-3 to generate TwiML for use in Twilio apps. It also uses Microsoft Azure's Cognitive services for content moderation. It runs completely on Twilio's Runtime platform. Check out the code on GitHub if you would like to spin up your own instance and learn more.
Deploy our favorites.
Build an app that plays whale sounds
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Response> | |
<Say> | |
*cachunk* | |
</Say> | |
</Response> |
Create an app that gives me the price of bitcoin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Response> | |
<Say> | |
1 BTC (bitcoin) = 100,000 MTG (magic the gathering) | |
</Say> | |
</Response> |
Build an app that sends me a short poem
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Response> | |
<Say> | |
I used to cry but now I smile. | |
</Say> | |
</Response> |
create an app that send message for quote of the day
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Response> | |
<Message action="http://www.google.com/" method="POST"> | |
Twilio rocks! | |
</Message> | |
</Response> |