n8n-nodes-assemblyai-stream
Version:
n8n node for streaming audio to AssemblyAI using node-microphone
25 lines • 770 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AssemblyAIApi = void 0;
class AssemblyAIApi {
constructor() {
this.name = 'assemblyAIApi';
this.displayName = 'AssemblyAI API';
this.documentationUrl = 'https://www.assemblyai.com/docs';
this.properties = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
typeOptions: {
password: true,
},
default: '',
required: true,
description: 'AssemblyAI API key',
},
];
}
}
exports.AssemblyAIApi = AssemblyAIApi;
//# sourceMappingURL=AssemblyAIApi.credentials.js.map