-
Notifications
You must be signed in to change notification settings - Fork 591
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Speech Partial Veneer #2421
Speech Partial Veneer #2421
Conversation
…cloud-node into vision-semi-gapic
}, | ||
"scripts": { | ||
"publish-module": "node ../../scripts/publish.js speech", | ||
"test": "mocha test/*.js", | ||
"system-test": "mocha system-test/*.js --no-timeouts --bail" | ||
"smoke-test": "mocha smoke-test/*.js --timeout 5000", |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
var sampleRateHertz = 44100; | ||
var encoding = speech.v1.types.RecognitionConfig.AudioEncoding.FLAC; | ||
var config = { | ||
languageCode : languageCode, |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
}; | ||
client.recognize(request).then(function(responses) { | ||
var response = responses[0]; | ||
console.log(response); |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
|
||
describe('SpeechSmokeTest', function() { | ||
|
||
it('successfully makes a call to the service', function(done) { |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
}); | ||
|
||
describe('streamingRecognize', () => { | ||
it('writes the config to the resulting stream', () => { |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
"proxyquire": "^1.7.10", | ||
"tmp": "^0.0.31", | ||
"uuid": "^3.0.1" | ||
"intelli-espower-loader": "^1.0.1", |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
"name": "@google-cloud/speech", | ||
"version": "0.9.4", | ||
"version": "0.10.0", |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
@@ -13,6 +13,7 @@ | |||
"extend": "^3.0.0", | |||
"glob": "^5.0.9", | |||
"globby": "^3.0.1", | |||
"intelli-espower-loader": "^1.0.1", |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
"propprop": "^0.3.1", | ||
"semver": "^5.3.0", | ||
"shelljs": "^0.7.3", | ||
"sinon": "^2.2.0", |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
@@ -25,9 +26,11 @@ | |||
"multiline": "^1.0.2", | |||
"nyc": "^10.3.0", | |||
"package-json": "^2.4.0", | |||
"power-assert": "^1.4.2", |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
Vision doesn't have any "docs" files generated. |
So there's good news and bad news. 👍 The good news is that everyone that needs to sign a CLA (the pull request submitter and all commit authors) have done so. Everything is all good there. 😕 The bad news is that it appears that one or more commits were authored by someone other than the pull request submitter. We need to confirm that they're okay with their commits being contributed to this project. Please have them confirm that here in the pull request. Note to project maintainer: This is a terminal state, meaning the |
@@ -66,17 +66,22 @@ | |||
"devDependencies": { |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
@@ -13,6 +13,7 @@ | |||
"extend": "^3.0.0", | |||
"glob": "^5.0.9", | |||
"globby": "^3.0.1", | |||
"intelli-espower-loader": "^1.0.1", |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
'use strict'; | ||
|
||
var assert = require('assert'); | ||
var sinon = require('sinon'); |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
…cloud-node into speech-semi-gapic
exposing the auto-gen surface, with some manual glue code. See googleapis#2421 for the details. This PR is the canonical one instead in order to decouple it from Vision (which I based the previous branch off of).
I just realized (not sure how I just realized) that this is entangled with Vision. Sending a new PR with just this. |
This is the new surface with breaking changes.