This looks like a great tool for working with and constructing bots and bot-like applications! I'm curious how existing bots could be retrofitted to take advantage of this framework...?
@chrismessina so for Surebot we did exactly this. Most of the existing code for receiving events from facebook was kept.
We started off by just having one massive listening function with the millions of if statements we had before.
Then we gradually broke it down into smaller components to match the convention of the framework.
It was fairly straightforward as we could re-use a lot of the existing APIs as before, Eventline focuses more on the flow of the bot.
@giologist@notaboutdave Its better than if statmens as it also supports promises, rx etc as first class citizens.
Meaning you just list the steps you want done and it does it. Not sure which demos you are looking at?
@notaboutdave@jcampbell_05 I see. I was looking @ the code in the gif + briefly glanced at the site. Maybe you should show a few real-life examples on your site.
Thanks for hunting us @chrismessina ๐
Team Sure and Bottr are excited to share our latest creation - A micro chatbot-framework to easily handle the logic of your bot or IoT-app. โจโจWhile developing Sure bot, we discovered how hard it can become to handle and change the logic of complex chatbots. Eventline uses a simple "If This Then That"-approach providing developers with a clear overview of their logic.
Earlier bot frameworks take an all-or-nothing approach where youโre tight to particular clients. With Eventline, you can still use other frameworks or even combine several different libraries.
You can read more about Eventline here: https://blog.surebot.io/introduc...
We would love to hear all your feedback and will be here answering all your questions today ๐ฌ๐ช
@krumhausen@ekryski Indeed it is. So this purely focuses on handling events and what to do when handling them i.e the flow.
It doesn't care where it get those events or provide the code for what to do.
That way you can use this in combination with Botkit, Botpress or any other framework. You can even use it for your custom code or just basic prototpying of a bot.
@natalie_korotaeva It took a couple of days to build the core framework in terms of developer hours.
But we've been testing and refining it in the bot for the past month :) it's already in production so battle tested too !