Hexabot's API is a RESTful API built with NestJS, designed to handle requests from both the UI admin panel and various communication channels. The API powers core functionalities such as chatbot management, message flow, NLU (Natural Language Understanding), and plugin integrations.
- RESTful Architecture: Simple, standardized API architecture following REST principles.
- Multi-Channel Support: Handles requests from different communication channels (e.g., web, mobile).
- Modular Design: Organized into multiple modules for better scalability and maintainability.
- Real-Time Communication: Integrates WebSocket support for real-time features.
The API is divided into several key modules, each responsible for specific functionalities:
- Analytics: Tracks and serves analytics data such as the number of messages exchanged and end-user retention statistics.
- Attachment: Manages file uploads and downloads, enabling attachment handling across the chatbot.
- Channel: Manages different communication channels through which the chatbot operates (e.g., web, mobile apps, etc.).
- Chat: The core module for handling incoming channel requests and managing the chat flow as defined by the visual editor in the UI.
- Knowledge Base: Content management module for defining content types, managing content, and configuring menus for chatbot interactions.
- NLU: Manages NLU (Natural Language Understanding) entities such as intents, languages, and values used to detect and process user inputs intelligently.
- Plugins: Manages extensions and plugins that integrate additional features and functionalities into the chatbot.
- User: Manages user authentication, roles, and permissions, ensuring secure access to different parts of the system.
- Extensions: A container for all types of extensions (channels, plugins, helpers) that can be added to expand the chatbot's functionality.
- Settings: A module for management all types of settings that can be adjusted to customize the chatbot.
- WebSocket: Adds support for Websicket with Socket.IO, enabling real-time communication for events like live chat and user interactions.
- Logger: Provides logging functionality to track and debug API requests and events.
$ npm install
# development
$ npm run start
# watch mode
$ npm run start:dev
# production mode
$ npm run start:prod
# unit tests
$ npm run test
# e2e tests
$ npm run test:e2e
# test coverage
$ npm run test:cov
Hexabot includes a migrations feature to help manage database schema and data changes over time. Migrations allow you to apply or revert changes to the database in a consistent and controlled manner.
To create a new migration, use the following command from the root directory of Hexabot:
$ npx hexabot migrate create <migration-name>
Example:
$ npx hexabot migrate create all-users-language-fr
This command generates a new migration file in the /api/migrations
folder. The file will look like this:
import getModels from '@/models/index';
export async function up(): Promise<void> {
// Write migration here
}
export async function down(): Promise<void> {
// Write migration here
}
Within the migration file, you can define the changes to be made in the up() function. For example, if you want to update the language field of all users to 'fr', your migration might look like this:
import getModels from '@/models/index';
export async function up(): Promise<void> {
const { UserModel } = await getModels();
await UserModel.updateMany({}, { language: 'fr' });
}
export async function down(): Promise<void> {}
You can run the following command to run all pending migrations:
$ npx hexabot migrate up
If you want to run specific actions manually, you can get help by running the following command:
$ npx hexabot migrate help
Access the Swagger API documentation by visiting the API url /docs
once run it in development mode.
It's also possible to access the API reference documentation by running npm run doc
.
For detailed information about the API routes and usage, refer to the API documentation or visit https://docs.hexabot.ai.
We welcome contributions from the community! Whether you want to report a bug, suggest new features, or submit a pull request, your input is valuable to us.
Feel free to join us on Discord
This software is licensed under the GNU Affero General Public License v3.0 (AGPLv3) with the following additional terms:
- The name "Hexabot" is a trademark of Hexastack. You may not use this name in derivative works without express written permission.
- All derivative works must include clear attribution to the original creator and software, Hexastack and Hexabot, in a prominent location (e.g., in the software's "About" section, documentation, and README file).