sfdx-hardis
Version:
Swiss-army-knife Toolbox for Salesforce. Allows you to define a complete CD/CD Pipeline. Orchestrate base commands and assist users with interactive wizards
16 lines • 352 B
JavaScript
export class AbstractLLMProvider {
model;
modelName;
config;
constructor(modelName, config) {
this.modelName = modelName;
this.config = config;
}
getModelName() {
return this.modelName;
}
getLabel() {
return "LangChain connector";
}
}
//# sourceMappingURL=langChainBaseProvider.js.map