├── .eslintrc.js ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── MAINTAINERS.md ├── README.md ├── _config.yml ├── actions ├── action.json ├── action_fr.json ├── action_fr_CA.json └── action_fr_fr.json ├── conversation-api.png ├── data └── assistant │ └── workspaces │ └── rent_a_car.json ├── doc └── source │ ├── cf.md │ ├── images │ ├── architecture.png │ ├── cf_deploy.png │ ├── credentials.png │ ├── openshift-console-options.png │ ├── simulator.png │ └── toolchain_pipeline.png │ └── openshift.md ├── index.js ├── lib └── watson-assistant-setup.js ├── manifest.yml └── package.json /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-google-assistant/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-google-assistant/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-google-assistant/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-google-assistant/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-google-assistant/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-google-assistant/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-google-assistant/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-google-assistant/HEAD/_config.yml -------------------------------------------------------------------------------- /actions/action.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-google-assistant/HEAD/actions/action.json -------------------------------------------------------------------------------- /actions/action_fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-google-assistant/HEAD/actions/action_fr.json -------------------------------------------------------------------------------- /actions/action_fr_CA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-google-assistant/HEAD/actions/action_fr_CA.json -------------------------------------------------------------------------------- /actions/action_fr_fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-google-assistant/HEAD/actions/action_fr_fr.json -------------------------------------------------------------------------------- /conversation-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-google-assistant/HEAD/conversation-api.png -------------------------------------------------------------------------------- /data/assistant/workspaces/rent_a_car.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-google-assistant/HEAD/data/assistant/workspaces/rent_a_car.json -------------------------------------------------------------------------------- /doc/source/cf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-google-assistant/HEAD/doc/source/cf.md -------------------------------------------------------------------------------- /doc/source/images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-google-assistant/HEAD/doc/source/images/architecture.png -------------------------------------------------------------------------------- /doc/source/images/cf_deploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-google-assistant/HEAD/doc/source/images/cf_deploy.png -------------------------------------------------------------------------------- /doc/source/images/credentials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-google-assistant/HEAD/doc/source/images/credentials.png -------------------------------------------------------------------------------- /doc/source/images/openshift-console-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-google-assistant/HEAD/doc/source/images/openshift-console-options.png -------------------------------------------------------------------------------- /doc/source/images/simulator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-google-assistant/HEAD/doc/source/images/simulator.png -------------------------------------------------------------------------------- /doc/source/images/toolchain_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-google-assistant/HEAD/doc/source/images/toolchain_pipeline.png -------------------------------------------------------------------------------- /doc/source/openshift.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-google-assistant/HEAD/doc/source/openshift.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-google-assistant/HEAD/index.js -------------------------------------------------------------------------------- /lib/watson-assistant-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-google-assistant/HEAD/lib/watson-assistant-setup.js -------------------------------------------------------------------------------- /manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-google-assistant/HEAD/manifest.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-google-assistant/HEAD/package.json --------------------------------------------------------------------------------