/elixir-adapt

Primary LanguageElixirGNU General Public License v3.0GPL-3.0

Adapt

An application that wraps the functionality of Adapt.

In a nutshell, this is a way to extract intent from natural language. These intents are represented in a machine readable format, allowing the application to act on the intentions of the user.

A big thanks goes to AdaptJS for the inspiration on how to implement this wrapper.

Installation

To use this application make sure you follow the installation guide for Adapt.

If available in Hex, the package can be installed as:

  1. Add adapt to your list of dependencies in mix.exs:
```elixir
def deps do
  [{:adapt, "~> 0.1.0"}]
end
```
  1. Ensure adapt is started before your application:
```elixir
def application do
  [applications: [:adapt]]
end
```