@deepmindlabs/dml-chatbot-kit
v0.0.6
Published
A chatbot kit for building chatbots
Downloads
4
Maintainers
Readme
@deepmindlabs/dml-chatbot-kit
A chatbot kit for building conversational interfaces.
Features
- 🚀 Blazing Fast: Instant server start and lightning-fast HMR (Hot Module Replacement).
- 🛠️ Out of the Box: Works with React, Vue, Svelte, and other popular frameworks.
- 📦 Optimized Build: Optimized for production with tree-shaking, code splitting, and minification.
- 🔧 Customizable: Extensible with plugins and customizable configurations.
Installation
To get started, install @deepmindlabs/dml-chatbot-kit via npm:
npm install @deepmindlabs/dml-chatbot-kit
Or via yarn:
yarn add @deepmindlabs/dml-chatbot-kit
Usage
Develop your chatbot with the following steps:
To start the development server, use the following command:
npm run dev
Or via yarn:
yarn dev
Build
To build your chatbot for production, use the following command:
npm run build
Or via yarn:
yarn build
Configurations
You can customize the Vite configuration by creating a vite.config.js file in your project root. Here's an example:
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
export default defineConfig({
plugins: [react()],
server: {
port: 3000,
},
build: {
outDir: 'dist',
},
});
Contributing
We welcome all contributions. Please read our CONTRIBUTING.md first.
License
This project is licensed under the MIT License - see the LICENSE file for details.