├── .babelrc ├── .github └── workflows │ └── nodejs.yml ├── .gitignore ├── .jshintrc ├── .npmignore ├── .travis.yml ├── .vscode ├── launch.json └── settings.json ├── ISSUE_TEMPLATE.md ├── LICENSE ├── README.md ├── package.json ├── src ├── commonService.js ├── helpers.js ├── index.d.ts ├── index.js ├── knowledge │ ├── qnaMaker.d.ts │ ├── qnaMaker.js │ ├── qnaMakerV4.d.ts │ ├── qnaMakerV4.js │ ├── recommendations.d.ts │ └── recommendations.js ├── language │ ├── bingSpellCheckV7.js │ ├── languageUnderstanding.js │ ├── textAnalytics.d.ts │ ├── textAnalytics.js │ ├── textTranslator.d.ts │ └── textTranslator.js ├── search │ ├── bingAutosuggest.d.ts │ ├── bingAutosuggest.js │ ├── bingAutosuggestV7.js │ ├── bingEntitySearch.d.ts │ ├── bingEntitySearch.js │ ├── bingImageSearch.d.ts │ ├── bingImageSearch.js │ ├── bingImageSearchV7.js │ ├── bingNewsSearch.d.ts │ ├── bingNewsSearch.js │ ├── bingNewsSearchV7.js │ ├── bingVideoSearch.d.ts │ ├── bingVideoSearch.js │ ├── bingVideoSearchV7.js │ ├── bingWebSearch.d.ts │ ├── bingWebSearch.js │ └── bingWebSearchV7.js ├── speech │ ├── bingSpeech.d.ts │ ├── bingSpeech.js │ ├── commonSpeaker.js │ ├── speakerIdentification.d.ts │ ├── speakerIdentification.js │ ├── speakerVerification.d.ts │ └── speakerVerification.js ├── tokenService.js └── vision │ ├── computerVision.d.ts │ ├── computerVision.js │ ├── contentModerator.d.ts │ ├── contentModerator.js │ ├── face.d.ts │ ├── face.js │ └── video.d.ts └── test ├── assets ├── LUIS │ ├── TravelAgent-import-app.json │ ├── TravelAgent-import-version.json │ ├── api_endpoints.json │ └── prebuiltdomains.json ├── barack_obama.wav ├── books_catalog.txt ├── books_catalog_items.txt ├── books_usage.txt ├── cat.jpg ├── enrollment_1.wav ├── enrollment_2.wav ├── enrollment_3.wav ├── handwritten_text.png ├── happy_face.jpg ├── identification_test.wav ├── license_plate.png ├── verification_test.wav ├── video_girl_laughing.mp4 └── whatstheweatherlike.wav ├── config.js ├── helpersTest.js ├── knowledge ├── qnaMakerTest.js ├── qnaMakerTestV4.js └── recommendationsTest.js ├── language ├── bingSpellCheckv7Test.js ├── languageUnderstandingTest.js ├── textAnalyticsTest.js └── textTranslatorTest.js ├── search ├── bingAutosuggestTest.js ├── bingAutosuggestV7Test.js ├── bingEntitySearchTest.js ├── bingImageSearchTest.js ├── bingImageSearchV7Test.js ├── bingNewsSearchTest.js ├── bingNewsSearchV7Test.js ├── bingVideoSearchTest.js ├── bingVideoSearchV7Test.js ├── bingWebSearchTest.js └── bingWebSearchV7Test.js ├── speech ├── bingSpeechTest.js ├── speakerIdentificationTest.js └── speakerVerificationTest.js └── vision ├── computerVisionTest.js ├── contentModeratorTest.js └── faceTest.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/.babelrc -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | src 2 | test -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/package.json -------------------------------------------------------------------------------- /src/commonService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/src/commonService.js -------------------------------------------------------------------------------- /src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/src/helpers.js -------------------------------------------------------------------------------- /src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/src/index.d.ts -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/src/index.js -------------------------------------------------------------------------------- /src/knowledge/qnaMaker.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/src/knowledge/qnaMaker.d.ts -------------------------------------------------------------------------------- /src/knowledge/qnaMaker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/src/knowledge/qnaMaker.js -------------------------------------------------------------------------------- /src/knowledge/qnaMakerV4.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/src/knowledge/qnaMakerV4.d.ts -------------------------------------------------------------------------------- /src/knowledge/qnaMakerV4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/src/knowledge/qnaMakerV4.js -------------------------------------------------------------------------------- /src/knowledge/recommendations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/src/knowledge/recommendations.d.ts -------------------------------------------------------------------------------- /src/knowledge/recommendations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/src/knowledge/recommendations.js -------------------------------------------------------------------------------- /src/language/bingSpellCheckV7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/src/language/bingSpellCheckV7.js -------------------------------------------------------------------------------- /src/language/languageUnderstanding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/src/language/languageUnderstanding.js -------------------------------------------------------------------------------- /src/language/textAnalytics.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/src/language/textAnalytics.d.ts -------------------------------------------------------------------------------- /src/language/textAnalytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/src/language/textAnalytics.js -------------------------------------------------------------------------------- /src/language/textTranslator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/src/language/textTranslator.d.ts -------------------------------------------------------------------------------- /src/language/textTranslator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/src/language/textTranslator.js -------------------------------------------------------------------------------- /src/search/bingAutosuggest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/src/search/bingAutosuggest.d.ts -------------------------------------------------------------------------------- /src/search/bingAutosuggest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/src/search/bingAutosuggest.js -------------------------------------------------------------------------------- /src/search/bingAutosuggestV7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/src/search/bingAutosuggestV7.js -------------------------------------------------------------------------------- /src/search/bingEntitySearch.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/src/search/bingEntitySearch.d.ts -------------------------------------------------------------------------------- /src/search/bingEntitySearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/src/search/bingEntitySearch.js -------------------------------------------------------------------------------- /src/search/bingImageSearch.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/src/search/bingImageSearch.d.ts -------------------------------------------------------------------------------- /src/search/bingImageSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/src/search/bingImageSearch.js -------------------------------------------------------------------------------- /src/search/bingImageSearchV7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/src/search/bingImageSearchV7.js -------------------------------------------------------------------------------- /src/search/bingNewsSearch.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/src/search/bingNewsSearch.d.ts -------------------------------------------------------------------------------- /src/search/bingNewsSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/src/search/bingNewsSearch.js -------------------------------------------------------------------------------- /src/search/bingNewsSearchV7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/src/search/bingNewsSearchV7.js -------------------------------------------------------------------------------- /src/search/bingVideoSearch.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/src/search/bingVideoSearch.d.ts -------------------------------------------------------------------------------- /src/search/bingVideoSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/src/search/bingVideoSearch.js -------------------------------------------------------------------------------- /src/search/bingVideoSearchV7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/src/search/bingVideoSearchV7.js -------------------------------------------------------------------------------- /src/search/bingWebSearch.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/src/search/bingWebSearch.d.ts -------------------------------------------------------------------------------- /src/search/bingWebSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/src/search/bingWebSearch.js -------------------------------------------------------------------------------- /src/search/bingWebSearchV7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/src/search/bingWebSearchV7.js -------------------------------------------------------------------------------- /src/speech/bingSpeech.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/src/speech/bingSpeech.d.ts -------------------------------------------------------------------------------- /src/speech/bingSpeech.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/src/speech/bingSpeech.js -------------------------------------------------------------------------------- /src/speech/commonSpeaker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/src/speech/commonSpeaker.js -------------------------------------------------------------------------------- /src/speech/speakerIdentification.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/src/speech/speakerIdentification.d.ts -------------------------------------------------------------------------------- /src/speech/speakerIdentification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/src/speech/speakerIdentification.js -------------------------------------------------------------------------------- /src/speech/speakerVerification.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/src/speech/speakerVerification.d.ts -------------------------------------------------------------------------------- /src/speech/speakerVerification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/src/speech/speakerVerification.js -------------------------------------------------------------------------------- /src/tokenService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/src/tokenService.js -------------------------------------------------------------------------------- /src/vision/computerVision.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/src/vision/computerVision.d.ts -------------------------------------------------------------------------------- /src/vision/computerVision.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/src/vision/computerVision.js -------------------------------------------------------------------------------- /src/vision/contentModerator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/src/vision/contentModerator.d.ts -------------------------------------------------------------------------------- /src/vision/contentModerator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/src/vision/contentModerator.js -------------------------------------------------------------------------------- /src/vision/face.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/src/vision/face.d.ts -------------------------------------------------------------------------------- /src/vision/face.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/src/vision/face.js -------------------------------------------------------------------------------- /src/vision/video.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/src/vision/video.d.ts -------------------------------------------------------------------------------- /test/assets/LUIS/TravelAgent-import-app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/test/assets/LUIS/TravelAgent-import-app.json -------------------------------------------------------------------------------- /test/assets/LUIS/TravelAgent-import-version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/test/assets/LUIS/TravelAgent-import-version.json -------------------------------------------------------------------------------- /test/assets/LUIS/api_endpoints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/test/assets/LUIS/api_endpoints.json -------------------------------------------------------------------------------- /test/assets/LUIS/prebuiltdomains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/test/assets/LUIS/prebuiltdomains.json -------------------------------------------------------------------------------- /test/assets/barack_obama.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/test/assets/barack_obama.wav -------------------------------------------------------------------------------- /test/assets/books_catalog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/test/assets/books_catalog.txt -------------------------------------------------------------------------------- /test/assets/books_catalog_items.txt: -------------------------------------------------------------------------------- 1 | 6485936 2 | 7141076 -------------------------------------------------------------------------------- /test/assets/books_usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/test/assets/books_usage.txt -------------------------------------------------------------------------------- /test/assets/cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/test/assets/cat.jpg -------------------------------------------------------------------------------- /test/assets/enrollment_1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/test/assets/enrollment_1.wav -------------------------------------------------------------------------------- /test/assets/enrollment_2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/test/assets/enrollment_2.wav -------------------------------------------------------------------------------- /test/assets/enrollment_3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/test/assets/enrollment_3.wav -------------------------------------------------------------------------------- /test/assets/handwritten_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/test/assets/handwritten_text.png -------------------------------------------------------------------------------- /test/assets/happy_face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/test/assets/happy_face.jpg -------------------------------------------------------------------------------- /test/assets/identification_test.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/test/assets/identification_test.wav -------------------------------------------------------------------------------- /test/assets/license_plate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/test/assets/license_plate.png -------------------------------------------------------------------------------- /test/assets/verification_test.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/test/assets/verification_test.wav -------------------------------------------------------------------------------- /test/assets/video_girl_laughing.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/test/assets/video_girl_laughing.mp4 -------------------------------------------------------------------------------- /test/assets/whatstheweatherlike.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/test/assets/whatstheweatherlike.wav -------------------------------------------------------------------------------- /test/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/test/config.js -------------------------------------------------------------------------------- /test/helpersTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/test/helpersTest.js -------------------------------------------------------------------------------- /test/knowledge/qnaMakerTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/test/knowledge/qnaMakerTest.js -------------------------------------------------------------------------------- /test/knowledge/qnaMakerTestV4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/test/knowledge/qnaMakerTestV4.js -------------------------------------------------------------------------------- /test/knowledge/recommendationsTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/test/knowledge/recommendationsTest.js -------------------------------------------------------------------------------- /test/language/bingSpellCheckv7Test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/test/language/bingSpellCheckv7Test.js -------------------------------------------------------------------------------- /test/language/languageUnderstandingTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/test/language/languageUnderstandingTest.js -------------------------------------------------------------------------------- /test/language/textAnalyticsTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/test/language/textAnalyticsTest.js -------------------------------------------------------------------------------- /test/language/textTranslatorTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/test/language/textTranslatorTest.js -------------------------------------------------------------------------------- /test/search/bingAutosuggestTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/test/search/bingAutosuggestTest.js -------------------------------------------------------------------------------- /test/search/bingAutosuggestV7Test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/test/search/bingAutosuggestV7Test.js -------------------------------------------------------------------------------- /test/search/bingEntitySearchTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/test/search/bingEntitySearchTest.js -------------------------------------------------------------------------------- /test/search/bingImageSearchTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/test/search/bingImageSearchTest.js -------------------------------------------------------------------------------- /test/search/bingImageSearchV7Test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/test/search/bingImageSearchV7Test.js -------------------------------------------------------------------------------- /test/search/bingNewsSearchTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/test/search/bingNewsSearchTest.js -------------------------------------------------------------------------------- /test/search/bingNewsSearchV7Test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/test/search/bingNewsSearchV7Test.js -------------------------------------------------------------------------------- /test/search/bingVideoSearchTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/test/search/bingVideoSearchTest.js -------------------------------------------------------------------------------- /test/search/bingVideoSearchV7Test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/test/search/bingVideoSearchV7Test.js -------------------------------------------------------------------------------- /test/search/bingWebSearchTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/test/search/bingWebSearchTest.js -------------------------------------------------------------------------------- /test/search/bingWebSearchV7Test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/test/search/bingWebSearchV7Test.js -------------------------------------------------------------------------------- /test/speech/bingSpeechTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/test/speech/bingSpeechTest.js -------------------------------------------------------------------------------- /test/speech/speakerIdentificationTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/test/speech/speakerIdentificationTest.js -------------------------------------------------------------------------------- /test/speech/speakerVerificationTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/test/speech/speakerVerificationTest.js -------------------------------------------------------------------------------- /test/vision/computerVisionTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/test/vision/computerVisionTest.js -------------------------------------------------------------------------------- /test/vision/contentModeratorTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/test/vision/contentModeratorTest.js -------------------------------------------------------------------------------- /test/vision/faceTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbalfour/node-cognitive-services/HEAD/test/vision/faceTest.js --------------------------------------------------------------------------------