0.0.6 • Published 12 months ago

@deepmindlabs/dml-chatbot-kit v0.0.6

Weekly downloads
-
License
ISC
Repository
github
Last release
12 months ago

@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.

0.0.6

12 months ago

0.0.5

12 months ago

0.0.4

12 months ago

0.0.3

12 months ago

0.0.2

12 months ago

0.0.1

12 months ago