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 model entity.ex
Raw

lib/adapt/model/entity.ex

defmodule Adapt.Model.Entity do
@type t :: %Adapt.Model.Entity{type: String.t, name: String.t, values: list(String.t)}
defstruct type: "string", name: "", values: []
end