Example #1
0
    void Start()
    {
        string path = Path.Combine(Application.streamingAssetsPath, fileName);

        smartReply = new SmartReply(path);

        // TODO UI
    }
Example #2
0
    void Start()
    {
        string path      = Path.Combine(Application.streamingAssetsPath, fileName);
        var    responses = responseText.text.Split('\n');

        smartReply = new SmartReply(path, responses);

        // TODO add ui
        smartReply.Invoke("How are you");
    }