您如何在python中实现API.AI机器人?

时间:2018-07-11 11:57:37

标签: python dialogflow

我在dialogflow中创建了一个代理。我想知道是否可以通过python发送请求并从dialogflow代理获取响应。 .net我也有办法。我们通过clientAccessToken访问它。

public class ViewModel
{
    public IEnumerable Items { get; set; }
    public IEnumerable SelectedItems { get; set; }

    public ViewModel()
    {
        Items = new List<string> { "Test", "Test1" };
        SelectedItems = new List<string> { "Test" };
    }
}

以上代码在c#中。 有什么办法可以在python中做同样的事情?

0 个答案:

没有答案