Packages

A wrapper of the Adapt Python Project. It allows the processing of user input to extract intentions in a machine readable way.

Current section

Files

Jump to
adapt lib adapt.ex
Raw

lib/adapt.ex

defmodule Adapt do
use Application
@moduledoc """
Adapt is an application for natural language parser to deduce intent from a string. It uses the [Adapt] python project.
Since it uses the adapt python module, it requires that python and adapt are both installed locally. Please follow the instructions on the [Adapt] site for instructions.
[Adapt]: https://adapt.mycroft.ai/
"""
def start(_type, _args) do
import Supervisor.Spec, warn: false
children = [
]
opts = [strategy: :one_for_one, name: Adapt.Supervisor]
Supervisor.start_link(children, opts)
end
end