@gui-chat-plugin/text-response 0.1.0 → 0.1.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/package.json +13 -6
package/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# @gui-chat-plugin/text-response
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/@gui-chat-plugin/text-response)
|
|
4
|
+
|
|
3
5
|
Text Response plugin for GUI Chat applications. Provides markdown rendering with role-based styling for displaying text content from assistants, users, and systems.
|
|
4
6
|
|
|
5
7
|
## Features
|
|
@@ -82,6 +84,14 @@ yarn build
|
|
|
82
84
|
yarn lint
|
|
83
85
|
```
|
|
84
86
|
|
|
87
|
+
## Test Prompts
|
|
88
|
+
|
|
89
|
+
Try these prompts to test the plugin:
|
|
90
|
+
|
|
91
|
+
1. "Explain the difference between let and const in JavaScript"
|
|
92
|
+
2. "Write a short poem about programming"
|
|
93
|
+
3. "List the top 5 programming languages for web development"
|
|
94
|
+
|
|
85
95
|
## License
|
|
86
96
|
|
|
87
97
|
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gui-chat-plugin/text-response",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Text Response plugin for GUI Chat - Markdown rendering with role-based styling",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -24,7 +24,9 @@
|
|
|
24
24
|
},
|
|
25
25
|
"./style.css": "./dist/style.css"
|
|
26
26
|
},
|
|
27
|
-
"files": [
|
|
27
|
+
"files": [
|
|
28
|
+
"dist"
|
|
29
|
+
],
|
|
28
30
|
"scripts": {
|
|
29
31
|
"dev": "vite",
|
|
30
32
|
"build": "vite build && vue-tsc -p tsconfig.build.json --emitDeclarationOnly",
|
|
@@ -35,8 +37,8 @@
|
|
|
35
37
|
"vue": "^3.5.0"
|
|
36
38
|
},
|
|
37
39
|
"dependencies": {
|
|
38
|
-
"gui-chat-protocol": "^0.0.
|
|
39
|
-
"marked": "^
|
|
40
|
+
"gui-chat-protocol": "^0.0.3",
|
|
41
|
+
"marked": "^17.0.1"
|
|
40
42
|
},
|
|
41
43
|
"devDependencies": {
|
|
42
44
|
"@tailwindcss/vite": "^4.1.18",
|
|
@@ -49,10 +51,15 @@
|
|
|
49
51
|
"tailwindcss": "^4.1.18",
|
|
50
52
|
"typescript": "~5.9.3",
|
|
51
53
|
"vite": "^7.3.1",
|
|
52
|
-
"vue": "^3.5.
|
|
54
|
+
"vue": "^3.5.27",
|
|
53
55
|
"vue-eslint-parser": "^10.2.0",
|
|
54
56
|
"vue-tsc": "^3.2.2"
|
|
55
57
|
},
|
|
56
|
-
"keywords": [
|
|
58
|
+
"keywords": [
|
|
59
|
+
"guichat",
|
|
60
|
+
"plugin",
|
|
61
|
+
"text-response",
|
|
62
|
+
"markdown"
|
|
63
|
+
],
|
|
57
64
|
"license": "MIT"
|
|
58
65
|
}
|