Packages

Rasa is an open source machine learning framework to automate text-and voice-based conversations. https://github.com/RasaHQ/rasa This library provides tools to communicate and control a Rasa application from Elixir.

Current section

Files

Jump to
rasa_sdk lib rasa_sdk model template_description.ex
Raw

lib/rasa_sdk/model/template_description.ex

# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
# https://openapi-generator.tech
# Do not edit the class manually.
defmodule RasaSdk.Model.TemplateDescription do
@moduledoc """
"""
@derive [Poison.Encoder]
defstruct [
:text
]
@type t :: %__MODULE__{
text: String.t
}
end
defimpl Poison.Decoder, for: RasaSdk.Model.TemplateDescription do
def decode(value, _options) do
value
end
end