├── .github └── workflows │ └── manual.yml ├── CODEOWNERS ├── LICENSE.txt ├── README.md └── src ├── lambda ├── index.js └── solution_index.js ├── models ├── en-US.json └── solution_en-US.json ├── package.json └── test ├── events.js ├── test-part1.js ├── test-part2.js └── utils.js /.github/workflows/manual.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/NLPND-VUI-Alexa/HEAD/.github/workflows/manual.yml -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/NLPND-VUI-Alexa/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/NLPND-VUI-Alexa/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/NLPND-VUI-Alexa/HEAD/README.md -------------------------------------------------------------------------------- /src/lambda/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/NLPND-VUI-Alexa/HEAD/src/lambda/index.js -------------------------------------------------------------------------------- /src/lambda/solution_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/NLPND-VUI-Alexa/HEAD/src/lambda/solution_index.js -------------------------------------------------------------------------------- /src/models/en-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/NLPND-VUI-Alexa/HEAD/src/models/en-US.json -------------------------------------------------------------------------------- /src/models/solution_en-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/NLPND-VUI-Alexa/HEAD/src/models/solution_en-US.json -------------------------------------------------------------------------------- /src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/NLPND-VUI-Alexa/HEAD/src/package.json -------------------------------------------------------------------------------- /src/test/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/NLPND-VUI-Alexa/HEAD/src/test/events.js -------------------------------------------------------------------------------- /src/test/test-part1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/NLPND-VUI-Alexa/HEAD/src/test/test-part1.js -------------------------------------------------------------------------------- /src/test/test-part2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/NLPND-VUI-Alexa/HEAD/src/test/test-part2.js -------------------------------------------------------------------------------- /src/test/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/NLPND-VUI-Alexa/HEAD/src/test/utils.js --------------------------------------------------------------------------------