dtamind-components
Version:
DTAmindai Components
27 lines • 890 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class PhoenixApi {
constructor() {
this.label = 'Phoenix API';
this.name = 'phoenixApi';
this.version = 1.0;
this.description =
'Refer to <a target="_blank" href="https://docs.arize.com/phoenix">official guide</a> on how to get API keys on Phoenix.';
this.inputs = [
{
label: 'API Key',
name: 'phoenixApiKey',
type: 'password',
placeholder: '<PHOENIX_API_KEY>'
},
{
label: 'Endpoint',
name: 'phoenixEndpoint',
type: 'string',
default: 'https://app.phoenix.arize.com'
}
];
}
}
module.exports = { credClass: PhoenixApi };
//# sourceMappingURL=PhoenixApi.credential.js.map