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