@vamlabs/vam-chatbot 0.1.8 → 0.1.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,3 +1,16 @@
1
- Chatbot package.
1
+ ## Steps to use the VAM Chatbot
2
2
 
3
- Instructions coming soon...
3
+ 1. **Import the Package:**
4
+
5
+ - To import the VAM chatbot package, add the following `<script>` tag to the `<head>` section of your root HTML file. This will load the package from our CDN:
6
+ ```html
7
+ <script src="https://cdn.jsdelivr.net/npm/@vamlabs/vam-chatbot/dist/web-component.min.js"></script>
8
+ ```
9
+
10
+ 2. **Place the Chatbot Component:**
11
+ - Insert the chatbot component into your HTML where you want it to be displayed. Use the following code snippet, replacing the `client-id` with your specific client ID:
12
+ ```html
13
+ <vam-chatbot client-id="<your-client-id>"></vam-chatbot>
14
+ ```
15
+
16
+ These steps will help you integrate the VAM chatbot into your webpage seamlessly. Ensure you replace the `client-id` with the one provided to you for proper configuration.