Is it possible to insert animated emoji into the sending text using the Telegram Api? - animation

Telegram has a premium subscription that allows you to write a message and add to the text (important! not separately, like stickers, but specifically to the text). Is it possible to do something similar with the Telegram API?
I looked in the documentation and found only https://core.telegram.org/api/animated-emojis#emoji-reactions, there were animated reactions to messages, sending animated emoji like stickers, but not what I seem to need.

Animated emoji are a "premium" feature of Telegram and so far bots can't use them. The documentation that you linked is part of the "Telegram API", i.e. the API that user clients like your mobile Telegram app use. The documentation of the Telegram Bot API is here: https://core.telegram.org/bots/api. It does not indicate in any way that bots are able to use the emoji.
See also Telegram API Custom Emoji sending in message.

Related

Adding Speech to Text feature in RASA

I need to add Speech to text feature in RASA, where user can ask questionsusing his voice and bot will answer him by chat. Does anyone know how can I do it in RASA?
As my front-end will be an Android Application. Kindly do tell me how to do it.
Thanks in Advance.
You can build a voice bot with Rasa Open Source as long as you use a Speech to Text (STT) API, since Rasa will only process text. This would involve building a custom channel that takes the voice as input, sends it to a STT API and returns the text to Rasa.
You can find some detailed examples on the Rasa blog:
https://blog.rasa.com/how-to-build-a-voice-assistant-with-open-source-rasa-and-mozilla-tools/
https://blog.rasa.com/how-to-build-a-mobile-voice-assistant-with-open-source-rasa-and-aimybox/
If you don't mind using something closed source, integrating the Google Speech API is also an option.

How can I create a response with rich messages in Dialogflow to Twilio?

I am using Dialogflow integrated into Twilio to send SMS messages back and forth via text. I am wondering if/how I can send a response that is an image. I have the image loaded as a url on the web that I am trying to include as an image in the response but I cannot get it to work.
Thanks so much for any help
Mike
I worked with Twilio a lot for sms and I tried myself Autopilot but the issue with Twilio is not a rich content kind of engine. Twilio will only post images to it, so you can "mimic" a rich response with an image but if you click that image nothing happens. I gave up on Twilio and change to Dialogflow in which I can create rich context out of the box for facebook, skype, etc but also I can integrate it with Kommunicate and have a hybrid bot human engine with web integration for chat that also support rich content.

How to integrate Speech to Text with QnA Maker Based Bot?

I have developed a FAQ Bot using C# and Bot Builder SDK 3.15.3. We have a large set of question/answer pairs which are uploaded to a QNA Maker Service. I have enabled the Direct Line Channel and the bot is displayed on a web page. I have used the Web Chat control provided by Microsoft with some customization and skinning.
Now I want to enable voice interaction with the bot, for that I decided to use the Microsoft Speech to Text Cognitive Service.
What I want to do is that when ever user speaks some utterance, I want to send the utterance to my bot service similar to like text is sent. Then inside C# code I want to run the Speech to Text and further do a Spell Check on the text retrieved and finally send to QNA Maker Service. The response for now will only be showed as text, but can also opt to read the response for the user.
Kindly guide my how this is achievable, as after looking at CognitiveService.js and other articles on enabling speech, I notice that Web Chat control directly sends the voice input to speech to text service.
You can make a hybrid between a calling bot which utilizes speech to text and a QnA bot to achieve your goal. For the calling bot, look over the SimpleIVRbot sample to get you going. For QnAMaker, you can reference the SimpleQnABot. It shouldn't take too much work bridging the two into a single unified bot. Just be sure to remove duplicate code and combine files where necessary.
Hope of help!

How to detect and read facebook Emojis in Microsoft BOT framework

I want to create an interaction based on the Emojis passed from facebook user on chatbot. Not able to get anything related to parsing the value at BOT end. Chatbot solution with normal text is working fine.

Google api: hangout send and get chat messages

Ok, so I'm trying to make like a minigame bot for me and my friends to play like text based games in google hangouts, but i really don't understand how the hangouts api works?
Can you make a chrome app that sends messages to a group chat and if so how? I have checked out the google dev api page but it seems like it explains how to do stuff with videochats, not "regular chat".
I have checked out: Using Google+ Hangouts API but i don't know where i should use that code.
And i want it to be for just hangouts chat, not like the videochatting chat

Resources