mirror of
https://github.com/jambonz/batch-speech-utils.git
synced 2026-01-25 02:08:27 +00:00
27 lines
416 B
JavaScript
27 lines
416 B
JavaScript
const transcriptionOptions = {
|
|
model: 'nova-2',
|
|
smart_format: true,
|
|
detect_entities: true,
|
|
multichannel:true
|
|
};
|
|
|
|
const redactionOptions = {
|
|
model: 'nova-2',
|
|
smart_format: true,
|
|
redact: 'pii',
|
|
multichannel:true
|
|
};
|
|
|
|
const analysisOptions = {
|
|
language: 'en',
|
|
sentiment: true,
|
|
intents: true,
|
|
summarize: true
|
|
};
|
|
|
|
module.exports = {
|
|
transcriptionOptions,
|
|
redactionOptions,
|
|
analysisOptions
|
|
};
|