@codeexpander/plugin-ai 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 +11 -0
- package/dist/plugin.json +1 -1
- package/package.json +14 -3
package/README.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# AI Tools / AI 工具
|
|
2
|
+
|
|
3
|
+
**EN** — Tokenizer for LLMs: count tokens (e.g. OpenAI-style) to estimate usage and length. Single-tool plugin.
|
|
4
|
+
|
|
5
|
+
**中文** — 大模型分词:统计 token 数量(如 OpenAI 风格),用于估算用量与长度。单工具插件。
|
|
6
|
+
|
|
7
|
+
## Tools / 工具列表
|
|
8
|
+
|
|
9
|
+
| id | EN | 中文 |
|
|
10
|
+
|----|-----|------|
|
|
11
|
+
| tokenizer | Tokenizer | 分词器 |
|
package/dist/plugin.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"main":"index.html","title":"AI Tools","description":"Tokenizer for LLMs.","category":"ai","order":11,"features":[{"code":"tokenizer","explain":"Count tokens for LLM","cmds":["token","tokenizer"]}],"pluginSetting":{"height":480}}
|
|
1
|
+
{"main":"index.html","title":"AI Tools","description": "Tokenizer for LLMs: count tokens. EN | 大模型分词器。","category":"ai","order":11,"features":[{"code":"tokenizer","explain":"Count tokens for LLM","cmds":["token","tokenizer"]}],"pluginSetting":{"height":480}}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codeexpander/plugin-ai",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -9,12 +9,23 @@
|
|
|
9
9
|
"publishConfig": {
|
|
10
10
|
"access": "public"
|
|
11
11
|
},
|
|
12
|
+
"description": "CodeExpander plugin: tokenizer for LLMs (count tokens). 大模型分词器。",
|
|
13
|
+
"keywords": [
|
|
14
|
+
"codeexpander",
|
|
15
|
+
"plugin",
|
|
16
|
+
"ai",
|
|
17
|
+
"tokenizer",
|
|
18
|
+
"llm",
|
|
19
|
+
"token",
|
|
20
|
+
"分词",
|
|
21
|
+
"AI"
|
|
22
|
+
],
|
|
12
23
|
"dependencies": {
|
|
13
24
|
"lucide-react": "^0.460.0",
|
|
14
25
|
"react": "^18.3.1",
|
|
15
26
|
"react-dom": "^18.3.1",
|
|
16
|
-
"@
|
|
17
|
-
"@
|
|
27
|
+
"@codeexpander/dev-tools-i18n": "0.0.0",
|
|
28
|
+
"@codeexpander/dev-tools-ui": "0.0.0"
|
|
18
29
|
},
|
|
19
30
|
"devDependencies": {
|
|
20
31
|
"@types/react": "^18.3.3",
|