I'm searching for knowledge sharing on how to connect a 3D avatar with a bot. Something like done on Bot Libre https://www.botlibre.com/forum-post?id=682689 . The implementation can be on WPF, UWP or web. I'm currently working with Botframework V4.7 and C#.
Thanks in advance, Amintas
This will likely require you to build a custom connector to pass your bot's incoming and outgoing activities thru to the Bot Libre system. There are examples out there of connectors/adapters that have been built by 3rd parties, such as this Twilio WhatsApp adapter, this Twitter adapter, or this Alexa adapter if you are planning on building in C#.
Any adapter you build won't need to be as full fledged as these are as you are only designing for what you know you need, and not for the masses.
You will also need to research Bot Libre to see which API endpoints might be relevant to you. You can see a listing of APIs here. Really, this holds true for any service like Bot Libre that you decide to land on.
Hope of help!