dtamind-components
Version:
DTAmindai Components
33 lines • 1.09 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class LangfuseApi {
constructor() {
this.label = 'Langfuse API';
this.name = 'langfuseApi';
this.version = 1.0;
this.description =
'Refer to <a target="_blank" href="https://langfuse.com/docs/flowise">integration guide</a> on how to get API keys on Langfuse';
this.inputs = [
{
label: 'Secret Key',
name: 'langFuseSecretKey',
type: 'password',
placeholder: 'sk-lf-abcdefg'
},
{
label: 'Public Key',
name: 'langFusePublicKey',
type: 'string',
placeholder: 'pk-lf-abcdefg'
},
{
label: 'Endpoint',
name: 'langFuseEndpoint',
type: 'string',
default: 'https://cloud.langfuse.com'
}
];
}
}
module.exports = { credClass: LangfuseApi };
//# sourceMappingURL=LangfuseApi.credential.js.map