besper-frontend-site-dev-0935
Version:
Professional B-esper Frontend Site - Site-wide integration toolkit for full website bot deployment
20 lines (17 loc) • 723 B
JavaScript
// B-esper Bot Management component for comprehensive bot configuration
import { BesperBotManagement as ModularBotManagement } from './management/BotManagement.js';
/**
* B-esper Bot Management Interface
* Professional management system for bot configuration, knowledge management
* Designed for integration into WordPress plugins and other platforms
*
* This is the main export that uses the modular management component
* with enhanced instruction system and comprehensive styling options.
*/
export class BesperBotManagement extends ModularBotManagement {
constructor(credentials, options = {}) {
super(credentials, options);
}
}
// Export for backward compatibility
export default BesperBotManagement;