Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
@picovoice/cheetah-react
Advanced tools
Made in Vancouver, Canada by Picovoice
Cheetah is an on-device streaming speech-to-text engine. Cheetah is:
IndexedDB and WebWorkers are required to use Cheetah React
. Browsers without support (e.g. Firefox Incognito Mode) should use the CheetahWeb binding
main thread method.
Cheetah requires a valid Picovoice AccessKey
at initialization. AccessKey
acts as your credentials when using Cheetah SDKs.
You can get your AccessKey
for free. Make sure to keep your AccessKey
secret.
Signup or Login to Picovoice Console to get your AccessKey
.
Using yarn
:
yarn add @picovoice/cheetah-react @picovoice/web-voice-processor
or using npm
:
npm install --save @picovoice/cheetah-react @picovoice/web-voice-processor
Cheetah requires a model file (.pv
) at initialization. Use the default language model found in lib/common, or create a custom Cheetah model (.pv
) in the Picovoice Console for the target platform Web (WASM)
.
There are two methods to initialize Cheetah.
NOTE: Due to modern browser limitations of using a file URL, this method does not work if used without hosting a server.
This method fetches the model file from the public directory and feeds it to Cheetah. Copy the model file into the public directory:
cp ${CHEETAH_MODEL_FILE} ${PATH_TO_PUBLIC_DIRECTORY}
NOTE: This method works without hosting a server, but increases the size of the model file roughly by 33%.
This method uses a base64 string of the model file and feeds it to Cheetah. Use the built-in script pvbase64
to
base64 your model file:
npx pvbase64 -i ${CHEETAH_MODEL_FILE} -o ${OUTPUT_DIRECTORY}/${MODEL_NAME}.js
The output will be a js file which you can import into any file of your project. For detailed information about pvbase64
,
run:
npx pvbase64 -h
Cheetah saves and caches your model file in IndexedDB to be used by WebAssembly. Use a different customWritePath
variable to hold multiple models and set the forceWrite
value to true to force re-save a model file.
If the model file changes, version
should be incremented to force the cached models to be updated.
Either base64
or publicPath
must be set to instantiate Cheetah. If both are set, Cheetah will use the base64
model.
const cheetahModel = {
publicPath: "${MODEL_RELATIVE_PATH}",
// or
base64: "${MODEL_BASE64_STRING}",
// Optionals
customWritePath: "custom_model",
forceWrite: true,
version: 1,
}
Additional engine options are provided via the options
parameter. Set endpointDurationSec
value to 0 if you do not wish to detect endpoint (period of silence). Set enableAutomaticPunctuation
to true to enable punctuation in the transcript.
// Optional - below are default values
const options = {
endpointDurationSec: 1.0,
enableAutomaticPunctuation: false
}
Use useCheetah
and init
to initialize Cheetah
:
const {
result,
isLoaded,
isListening,
error,
init,
start,
stop,
release,
} = useCheetah();
const initCheetah = async () => {
await init(
"${ACCESS_KEY}",
cheetahModel,
options
)
}
In case of any errors, use the error
state variable to check the error message. Use the isLoaded
state variable to check if Cheetah
has loaded.
Cheetah React binding uses WebVoiceProcessor to record audio with a microphone.
To start recording and transcribing, run the start
function:
await start();
If WebVoiceProcessor
has started correctly, isListening
will be set to true.
Use the result
state to get transcription results:
useEffect(() => {
if (result !== null) {
console.log(result.transcript);
console.log(result.isComplete);
}
}, [result])
result.transcript
: transcript returned from Cheetahresult.isComplete
: whether the corresponding transcript
marks the end of a transcript (i.e. the end of a sentence)Run stop
to stop recording:
await stop();
If WebVoiceProcessor
has stopped correctly, isListening
will be set to false.
While running in a component, you can call release
to clean up all resources used by Cheetah and WebVoiceProcessor:
await release();
This will set isLoaded
and isListening
to false, and error
to null.
If any arguments require changes, call release
, then init
again to initialize Cheetah with the new settings.
You do not need to call release
when your component is unmounted - the hook will clean up automatically on unmount.
In order to detect non-English wake words you need to use the corresponding model file (.pv
). The model files for all
supported languages are available here.
For example usage refer to our React demo application.
FAQs
React hook for Cheetah Web SDK
The npm package @picovoice/cheetah-react receives a total of 85 weekly downloads. As such, @picovoice/cheetah-react popularity was classified as not popular.
We found that @picovoice/cheetah-react demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.