jovo-asr-azure
TypeScript icon, indicating that this package has built-in type declarations

3.6.1 • Public • Published

Microsoft Azure Speech to Text Integration

To view this page on the Jovo website, visit https://v3.jovo.tech/marketplace/jovo-asr-azure

Learn how to use the Microsoft Azure Speech to Text service as ASR (automatic speech recognition) integration with the Jovo Framework.

Installation

npm install --save jovo-asr-azure
// @language=javascript

// src/app.js

const { AzureAsr } = require('jovo-asr-azure');

platform.use(
  new AzureAsr({
    endpointKey: 'yourEndpointKey',
    endpointRegion: 'yourEndpointRegion',
    language: 'en-US',
  }),
);

// @language=typescript

// src/app.ts

import { AzureAsr } from 'jovo-asr-azure';

platform.use(
  new AzureAsr({
    endpointKey: 'yourEndpointKey',
    endpointRegion: 'yourEndpointRegion',
    language: 'en-US',
  }),
);

Dependencies (1)

Dev Dependencies (13)

Package Sidebar

Install

npm i jovo-asr-azure

Weekly Downloads

1

Version

3.6.1

License

Apache-2.0

Unpacked Size

24.2 kB

Total Files

13

Last publish

Collaborators

  • jovotech