@mulmochat-plugin/quiz 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 +10 -0
- package/README.npm.md +10 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# MulmoChat Plugin Quiz
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/@mulmochat-plugin/quiz)
|
|
4
|
+
|
|
3
5
|
> **📦 Template Repository**
|
|
4
6
|
> This is the reference implementation for [MulmoChat](https://github.com/receptron/MulmoChat) plugins.
|
|
5
7
|
> Use this repository as a template to create your own plugins.
|
|
@@ -216,6 +218,14 @@ interface ToolPlugin<T, J, A> extends ToolPluginCore<T, J, A> {
|
|
|
216
218
|
}
|
|
217
219
|
```
|
|
218
220
|
|
|
221
|
+
## Test Prompts
|
|
222
|
+
|
|
223
|
+
Try these prompts to test the plugin:
|
|
224
|
+
|
|
225
|
+
1. "Give me a 3-question quiz about world geography"
|
|
226
|
+
2. "Quiz me on basic JavaScript concepts"
|
|
227
|
+
3. "Create a history quiz about World War II"
|
|
228
|
+
|
|
219
229
|
## License
|
|
220
230
|
|
|
221
231
|
MIT
|
package/README.npm.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# @mulmochat-plugin/{plugin-name}
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/@mulmochat-plugin/{plugin-name})
|
|
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
|
|
|
5
7
|
## What this plugin does
|
|
@@ -78,6 +80,14 @@ yarn typecheck
|
|
|
78
80
|
yarn lint
|
|
79
81
|
```
|
|
80
82
|
|
|
83
|
+
## Test Prompts
|
|
84
|
+
|
|
85
|
+
Try these prompts to test the plugin:
|
|
86
|
+
|
|
87
|
+
1. "{test-prompt-1}"
|
|
88
|
+
2. "{test-prompt-2}"
|
|
89
|
+
3. "{test-prompt-3}"
|
|
90
|
+
|
|
81
91
|
## License
|
|
82
92
|
|
|
83
93
|
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mulmochat-plugin/quiz",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "Quiz plugin for MulmoChat",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -84,6 +84,6 @@
|
|
|
84
84
|
],
|
|
85
85
|
"license": "MIT",
|
|
86
86
|
"dependencies": {
|
|
87
|
-
"gui-chat-protocol": "^0.0.
|
|
87
|
+
"gui-chat-protocol": "^0.0.3"
|
|
88
88
|
}
|
|
89
89
|
}
|