A simple Cleverbot API implmentation in Elixir that supports think
converstations.
Add Cleverbot to your mix.exs dependencies.
def deps do
  [{:cleverbot, "~> 0.0.1"}]
endThen create a new Cleverbot and think!
{:ok, pid} = Cleverbot.start_link
Cleverbot.think(pid, "Hello!") |> IO.puts