@mulmochat-plugin/form 0.3.0 → 0.3.1
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 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
#
|
|
1
|
+
# @mulmochat-plugin/form
|
|
2
|
+
|
|
3
|
+
[](https://www.npmjs.com/package/@mulmochat-plugin/form)
|
|
2
4
|
|
|
3
5
|
A plugin for [MulmoChat](https://github.com/receptron/MulmoChat) - a multi-modal voice chat application with OpenAI's GPT-4 Realtime API.
|
|
4
6
|
|
|
@@ -44,6 +46,14 @@ yarn typecheck
|
|
|
44
46
|
yarn lint
|
|
45
47
|
```
|
|
46
48
|
|
|
49
|
+
## Test Prompts
|
|
50
|
+
|
|
51
|
+
Try these prompts to test the plugin:
|
|
52
|
+
|
|
53
|
+
1. "Create a contact form with name, email, and message fields"
|
|
54
|
+
2. "Make a survey form about user preferences"
|
|
55
|
+
3. "Generate a registration form with username and password"
|
|
56
|
+
|
|
47
57
|
## License
|
|
48
58
|
|
|
49
59
|
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mulmochat-plugin/form",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "Form plugin for MulmoChat",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"vue": "^3.5.0"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"gui-chat-protocol": "^0.0.
|
|
40
|
+
"gui-chat-protocol": "^0.0.3"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@tailwindcss/vite": "^4.1.18",
|