29 March 2019

Daden U day - Slack integration

Writing to a slack channel.


At Daden we use slack to communicate with other team members and as a way of passing useful information, jokes and items of interest around the company.

An article on Code Project on how to communicate programatically with Slack grabbed my interest so for the February Daden U day I decided to see how difficult it would be to "talk to slack".

As it turns out it's actually really easy, all the information you need is here...

https://www.codeproject.com/Articles/1272964/Writing-to-a-Slack-Channel-NET-Core-Edition

From start to finish it only to about 15 minutes to have a simple example up and working, so a big thanks to Ryan Peden for writing the article.

Now we are able to write to Slack the next step is deciding what we can do with it. At the moment thoughts are along the lines of getting notifications when web sites throw exceptions as well as integrating some of Daden's many chat bots.





21 March 2019

Digital Catapult Future of Training Showcase Tour



Back in October last year we were chosen as one of "six immersive companies creating engaging and innovative content to revolutionise the way we train" by the UK Government's Digital Catapult. As well as having a system on permanent display down at heir London Headquarters we've also been invited to take part in a touring showcase of VR in training, alongside local companies in each region. The first event was in London, and the second, last month, in Gateshead. The next one is in Belfast on Tuesday 26th March, so if your in Northern Ireland (or fancy a hop across the border from Eire) then we'd love to see you there. Details at https://www.eventbrite.co.uk/e/the-future-of-training-virtual-augmented-and-mixed-reality-tickets-55902636290



11 March 2019

Daden UDay: Chatbots and Autonomous Avatars in Second Life



For my DadenU Day I spent the time revisiting our code for controlling autonomous avatars in Second Life. The system currently uses the Corrade service (although I had a look for something better), which is certainly a lot more stable than when we last used it a couple of years ago. Corrade is very much an avatar controller, it has no smarts itself (so is like LibOMV in that respect), so we built a small LSL script to provide the interface from Corrade back to our Chatscript server which now forms the core of the bot's brain. The pathway is below:



The first task has been just to re-establish existing functionality before we move on to new stuff. The LSL script reported memory errors (you only get 64k!), so we stripped out the nice-to-haves and got the core working from bot to Corrade to LSL to Corrade to bot.

To get the other functionality back in we have to use an old LSL technique of putting the extra chunks in a new script and then using the llMessage function to call with a set of parameters - very messy as you can't pass much, but still the only way to do it in LSL which has no concept of a script library, shared scripts, or a script to script API!

The final bit was talking to Chatscript. Iain sorted a plain REST API into our Chatscript environment, I uploaded the old Abi (our virtual receptionist) files to the server, and finally we had the whole path with a user in SL being able to ask the Abi/Halo avatar questions about Daden.

Next steps are to start to build some of the Halo "brain" into Chatscript, porting some of our earlier Discourse work, and maturing the LSL interface. The aim is that by December 2019 we'll actually be beyond where we were with this in December 2009 when we were finalists in the BCS Machine Intelligence Competition!