@mulmochat-plugin/summarize-pdf 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/summarize-pdf
|
|
2
|
+
|
|
3
|
+
[](https://www.npmjs.com/package/@mulmochat-plugin/summarize-pdf)
|
|
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 (after uploading a PDF):
|
|
52
|
+
|
|
53
|
+
1. "Summarize this PDF document for me"
|
|
54
|
+
2. "What are the main points in this PDF?"
|
|
55
|
+
3. "Give me a brief overview of the uploaded document"
|
|
56
|
+
|
|
47
57
|
## License
|
|
48
58
|
|
|
49
59
|
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mulmochat-plugin/summarize-pdf",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "PDF summarization 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",
|