axelson
Scenic Core Team
ElixirConf US 2018 – Beyond Command and Response Chatbot – Fahad Almusharraf
The talk discusses an attempt at building a chatbot framework to deliver a rich conversation that is not just responses to commands. It is motivated by my master’s research on using chatbots and natural language understanding to increase cigarettes smokers motivation to quit. This research is a collaborative project between engineering, psychology, and psychiatry, and it is powered by Elixir.
Audience: Beginner, Intermediate, Advanced
Topics: bots
All talks are available in the ElixirConf US 2018 Talks List or via the elixirconf2018 tag
Trending in Talks
Elixir’s Configuration Layers: A Visual Journey - Stephanie Lane | ElixirConf US 2025
Comments welcome! View the <span cl...
New
Leaving a BEAM cluster (basically) unattended for 2 years - Yuri Oliveira | ElixirConf US 2025
Comments welcome! View the...
New
Introducing Elixir Observer - Juan Manuel Azambuja | ElixirConf US 2025
Comments welcome! View the <span class="hashtag-i...
New
Beyond Safe Migrations: Better Practices for Ecto + PostgreSQL - Joe Harrow | ElixirConf US 2025
Comments welcome! View t...
New
How LiveDebugger makes your life easier - Krzysztof Nalepa | ElixirConf US 2025
https://www.youtube.com/watch?v=MzvauYjQgdQ
Comments w...
New
Lightning Talk: Jacob Swanner - Put your Scaller (Named Correctly) | ElixirConf US 2025
Comments welcome! View the <span ...
New
Elevating Phoenix with OpenRiak - Robert Carbone | Code BEAM Europe 2025
Comments welcome! View the <span class="hashtag-...
New
Other Trending Topics
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #phoenix_html
- #iex
- #graphql
- #ai
- #genstage
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #security
- #hex











Showing Posts 1 to 7- Show Best Posts
- Show All Posts (oldest first)
- Show All Posts (newest first)
blatyo
I’d love to see more code for this. Especially the stuff used for NLP and training.
falmusha
Speaker here. The title of talk is not the best representative of its content. It is more about helping smokers quit using chatbots and elixir. Anyway, I’m happy to discuss it here if anyone has questions.
blatyo
In another talk about a bot framework the speaker mentioned three different models for bots.
I assume you didn’t use 1, based off the title and the demo. I think based on your description, you used finite-state, is that correct?
For NLU, what did you use to train your model? I mean both the training set, the tool that did the training, and the tool that does the evaluation of the model in your chatbot if that’s different.
Are you going to open source any of this?
falmusha
@blatyo Yes I’m using state machines to build the conversation (not to be confused with behaviour trees which was also talked about in the conference). More specifically, my approach is what I’ve explained briefly when I talked about BotKit. The code for BotKit, which is a WIP library that enables you to build chatbots using the state machine approach is available here.
Unfortunately the NLU training/inference was not done in Elixir. I’ve used two NLP/NLU backends to train the models required for the chatbot. Namely Wit.AI and Stanford CoreNLP. I used Wit.AI through their http api and CoreNLP using Erlang’s JInterface on a dedicated Erlang node.
I’m planning on open sourcing the chatbot code once I’m done with the project.
jfc
Hi!
“I’m planning on open sourcing the chatbot code once I’m done with the project.” This is a great idea! How far are you now from it?
Thx!
onkara
@falmusha any progress on this ?
blatyo
You mean @falmusha