Project

api-ai

0.0
Repository is archived
No commit activity in last 3 years
No release in over 3 years
A library that provides a plain function-call interface to the api.ai web endpoints.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

~> 1.7
~> 0.8.0
~> 10.0
>= 3.2.0, ~> 3.2
>= 1.21.0, ~> 1.21
>= 0.8.0, ~> 0.8.7
 Project Readme

ApiAi

Gem Version Build Status Code Climate Coverage Status

A library that provides a plain function-call interface to the Slack API web endpoints.

Installation

Add this line to your application's Gemfile:

gem 'api-ai'

And then execute:

bundle

Or install it yourself as:

gem install api-ai

Usage

client = ApiAi::Client.new AI_ACCESS_TOKEN, AI_SUBSCRIPTION_TOKEN
response = client.query 'query' => "test", 'lang' => 'en', 'sessionId' => current_user.id, 'timezone' => current_user.timezone
# { "id"=>"...",
#   "timestamp"=>"...",
#   "result"=>{
#     "source"=>"domains",
#     "resolvedQuery"=>"test",
#     "action"=>"smalltalk.user",
#     "parameters"=>{"simplified"=>"i am testing you"},
#     "metadata"=>{},
#     "fulfillment"=>{"speech"=>"I encourage you to test me often. That helps my developers improve my performance."}
#   },
#  "status"=>{"code"=>200, "errorType"=>"success"}}

Additional Resources

api.ai docs: https://docs.api.ai/docs/welcome

Contributing

  1. Fork it ( https://github.com/[my-github-username]/api-ai/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

License

MIT License. Copyright 2015 Gustavo Bazan. http://gustavobazan.com