@lemonsliceai/lemon-slice-widget 1.0.0
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 +11 -0
- package/dist/index.js +55 -0
- package/package.json +61 -0
package/README.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# LemonSlice Agent Widget
|
|
2
|
+
|
|
3
|
+
LemonSlice Agent Widget is an embeddable web component that enables real-time video chat with LemonSlice AI agents. It provides a floating or inline widget that connects users to LemonSlice AI agents via video and audio. The widget is distributed as an npm package and can be embedded in any webpage with a single HTML tag.
|
|
4
|
+
|
|
5
|
+
LemonSlice agents are created on [https://lemonslice.com/](https://lemonslice.com/)
|
|
6
|
+
|
|
7
|
+
## How to use it
|
|
8
|
+
``` html
|
|
9
|
+
<lemon-slice-widget agent-id="agent_id"></lemon-slice-widget>
|
|
10
|
+
<script type="module" src="https://unpkg.com/@lemonsliceai/lemon-slice-widget"></script>
|
|
11
|
+
```
|