JavaScript rename

This commit is contained in:
Reuben Morais 2020-08-04 12:13:11 +02:00
parent 5449f21a47
commit b301cdf83e
2 changed files with 5 additions and 5 deletions

View File

@ -62,7 +62,7 @@ export interface Metadata {
}
/**
* Provides an interface to a DeepSpeech stream. The constructor cannot be called
* Provides an interface to a Mozilla Voice STT stream. The constructor cannot be called
* directly, use :js:func:`Model.createStream`.
*/
class Stream {
@ -136,7 +136,7 @@ class Stream {
}
/**
* An object providing an interface to a trained DeepSpeech model.
* An object providing an interface to a trained Mozilla Voice STT model.
*/
export class Model {
/** @internal */
@ -233,7 +233,7 @@ export class Model {
}
/**
* Use the DeepSpeech model to perform Speech-To-Text.
* Use the Mozilla Voice STT model to perform Speech-To-Text.
*
* @param aBuffer A 16-bit, mono raw audio signal at the appropriate sample rate (matching what the model was trained on).
*
@ -244,7 +244,7 @@ export class Model {
}
/**
* Use the DeepSpeech model to perform Speech-To-Text and output metadata
* Use the Mozilla Voice STT model to perform Speech-To-Text and output metadata
* about the results.
*
* @param aBuffer A 16-bit, mono raw audio signal at the appropriate sample rate (matching what the model was trained on).

View File

@ -1,7 +1,7 @@
{
"name" : "$(PROJECT_NAME)",
"version" : "$(PROJECT_VERSION)",
"description" : "DeepSpeech NodeJS bindings",
"description" : "Mozilla Voice STT NodeJS bindings",
"main" : "./index.js",
"types": "./index.d.ts",
"bin": {