@aggroot-team/aggroot 1.10.4 → 1.10.5

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/package.json CHANGED
@@ -1,156 +1,157 @@
1
- {
2
- "name": "@aggroot-team/aggroot",
3
- "version": "1.10.4",
4
- "description": "AggRoot - AI Assistant (Node.js/TypeScript Version)",
5
- "keywords": [
6
- "ai",
7
- "assistant",
8
- "llm",
9
- "agent"
10
- ],
11
- "repository": {
12
- "type": "git",
13
- "url": "https://gitcode.com/Mario_z/aita.git"
14
- },
15
- "license": "MIT",
16
- "author": "zhangzhuo",
17
- "type": "module",
18
- "imports": {
19
- "#core/*": "./dist/core/*.js",
20
- "#tools/*": "./dist/tools/*.js",
21
- "#models/*": "./dist/models/*.js",
22
- "#memory/*": "./dist/memory/*.js",
23
- "#types": "./dist/types/index.js",
24
- "#config": "./dist/config.js"
25
- },
26
- "main": "./dist/index.cjs",
27
- "bin": {
28
- "aggroot": "dist/cli.cjs"
29
- },
30
- "directories": {
31
- "doc": "docs",
32
- "test": "tests"
33
- },
34
- "files": [
35
- "dist/",
36
- "share/",
37
- "scripts/",
38
- ".env.example",
39
- "install-windows.bat",
40
- "install-linux.sh",
41
- "README.md"
42
- ],
43
- "scripts": {
44
- "dev": "node --no-warnings --import=tsx --watch src/index.ts",
45
- "dev:no-watch": "node --no-warnings --import=tsx src/index.ts",
46
- "dev:silent": "node --no-warnings --import=tsx --watch src/index.ts",
47
- "build": "pnpm --filter @aggroot-team/protocol build && pnpm --filter @aggroot-team/server build && node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\" && tsc -p tsconfig.build.json && node scripts/obfuscate.mjs && node scripts/verify-no-source.mjs && cd packages/web && npx vite build && cd ../..",
48
- "build:all": "node scripts/build-all.mjs",
49
- "build:dev": "tsc",
50
- "publish:pkg": "node scripts/publish.mjs",
51
- "publish:pkg:dry": "node scripts/publish.mjs --dry-run",
52
- "start": "node --no-warnings --max-old-space-size=4096 dist/index.cjs",
53
- "type-check": "tsc --noEmit",
54
- "lint": "eslint .",
55
- "lint:fix": "eslint . --fix",
56
- "format": "prettier --write .",
57
- "format:check": "prettier --check .",
58
- "test": "vitest",
59
- "test:run": "vitest run",
60
- "test:coverage": "vitest run --coverage",
61
- "test:cross-platform": "node test-cross-platform.js",
62
- "clean": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true});require('fs').rmSync('logs',{recursive:true,force:true})\"",
63
- "rebuild-native": "npm rebuild better-sqlite3 sharp",
64
- "rebuild:windows": "npm rebuild --build-from-source better-sqlite3 sharp",
65
- "rebuild:linux": "npm rebuild --build-from-source better-sqlite3 sharp",
66
- "install:all": "npm install && npm run rebuild-native"
67
- },
68
- "dependencies": {
69
- "@modelcontextprotocol/sdk": "^1.29.0",
70
- "@sqlite.org/sqlite-wasm": "3.53.0-build1",
71
- "@vscode/ripgrep": "^1.17.1",
72
- "@xenova/transformers": "^2.17.0",
73
- "ajv": "^8.18.0",
74
- "ajv-formats": "^3.0.1",
75
- "chalk": "^5.6.2",
76
- "chokidar": "^5.0.0",
77
- "cli-table3": "^0.6.5",
78
- "diff": "^9.0.0",
79
- "docx": "^9.6.1",
80
- "dotenv": "^17.3.1",
81
- "exceljs": "^4.4.0",
82
- "glob": "^13.0.6",
83
- "iconv-lite": "^0.7.2",
84
- "ink": "^6.8.0",
85
- "inquirer": "^12.0.0",
86
- "jszip": "^3.10.1",
87
- "lru-cache": "^11.2.7",
88
- "mammoth": "^1.12.0",
89
- "marked": "^18.0.3",
90
- "openai": "^4.67.0",
91
- "ora": "^8.1.0",
92
- "pino": "^9.5.0",
93
- "pino-pretty": "^11.2.0",
94
- "playwright": "^1.60.0",
95
- "pptxgenjs": "^4.0.1",
96
- "react": "^19.2.4",
97
- "react-reconciler": "^0.31.0",
98
- "scheduler": "^0.27.0",
99
- "simple-git": "^3.26.0",
100
- "string-width": "^8.2.1",
101
- "tiktoken": "^1.0.22",
102
- "ts-morph": "^27.0.2",
103
- "uuid": "^13.0.0",
104
- "web-tree-sitter": "^0.26.8",
105
- "zod": "^3.25.76"
106
- },
107
- "optionalDependencies": {
108
- "@honcho-ai/sdk": "^2.1.1",
109
- "better-sqlite3": "^11.10.0",
110
- "sharp": "^0.34.5",
111
- "tree-sitter-c": "^0.24.1",
112
- "tree-sitter-cpp": "^0.23.4"
113
- },
114
- "devDependencies": {
115
- "@eslint/js": "^9.13.0",
116
- "@types/ajv": "^0.0.5",
117
- "@types/better-sqlite3": "^7.6.13",
118
- "@types/diff": "^7.0.2",
119
- "@types/node": "^20.14.0",
120
- "@types/react": "^19.2.14",
121
- "@types/react-reconciler": "^0.31.0",
122
- "@vitest/coverage-v8": "^2.1.0",
123
- "esbuild": "^0.28.0",
124
- "eslint": "^9.13.0",
125
- "eslint-config-prettier": "^9.1.0",
126
- "husky": "^9.1.0",
127
- "javascript-obfuscator": "^4.2.2",
128
- "lint-staged": "^15.5.0",
129
- "prettier": "^3.3.3",
130
- "tsx": "^4.19.0",
131
- "typescript": "^5.6.0",
132
- "typescript-eslint": "^8.10.0",
133
- "vitest": "^2.1.0"
134
- },
135
- "engines": {
136
- "node": ">=20.0.0"
137
- },
138
- "os": [
139
- "win32",
140
- "linux",
141
- "darwin"
142
- ],
143
- "cpu": [
144
- "x64",
145
- "arm64",
146
- "ia32"
147
- ],
148
- "publishConfig": {
149
- "access": "public"
150
- },
151
- "lint-staged": {
152
- "*.{ts,tsx,json,md,css}": [
153
- "prettier --write"
154
- ]
155
- }
156
- }
1
+ {
2
+ "name": "@aggroot-team/aggroot",
3
+ "version": "1.10.5",
4
+ "description": "AggRoot - AI Assistant (Node.js/TypeScript Version)",
5
+ "keywords": [
6
+ "ai",
7
+ "assistant",
8
+ "llm",
9
+ "agent"
10
+ ],
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "https://gitcode.com/Mario_z/aita.git"
14
+ },
15
+ "license": "MIT",
16
+ "author": "zhangzhuo",
17
+ "type": "module",
18
+ "imports": {
19
+ "#core/*": "./dist/core/*.js",
20
+ "#tools/*": "./dist/tools/*.js",
21
+ "#models/*": "./dist/models/*.js",
22
+ "#memory/*": "./dist/memory/*.js",
23
+ "#types": "./dist/types/index.js",
24
+ "#config": "./dist/config.js"
25
+ },
26
+ "main": "./dist/index.cjs",
27
+ "bin": {
28
+ "aggroot": "dist/cli.cjs"
29
+ },
30
+ "directories": {
31
+ "doc": "docs",
32
+ "test": "tests"
33
+ },
34
+ "files": [
35
+ "dist/",
36
+ "share/",
37
+ "scripts/",
38
+ ".env.example",
39
+ "install-windows.bat",
40
+ "install-linux.sh",
41
+ "README.md"
42
+ ],
43
+ "scripts": {
44
+ "dev": "node --no-warnings --import=tsx --watch src/index.ts",
45
+ "dev:no-watch": "node --no-warnings --import=tsx src/index.ts",
46
+ "dev:silent": "node --no-warnings --import=tsx --watch src/index.ts",
47
+ "build": "pnpm --filter @aggroot-team/protocol build && pnpm --filter @aggroot-team/server build && node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\" && tsc -p tsconfig.build.json && node scripts/obfuscate.mjs && node scripts/verify-no-source.mjs && cd packages/web && npx vite build && cd ../..",
48
+ "build:all": "node scripts/build-all.mjs",
49
+ "build:dev": "tsc",
50
+ "publish:pkg": "node scripts/publish.mjs",
51
+ "publish:pkg:dry": "node scripts/publish.mjs --dry-run",
52
+ "start": "node --no-warnings --max-old-space-size=4096 dist/index.cjs",
53
+ "type-check": "tsc --noEmit",
54
+ "lint": "eslint .",
55
+ "lint:fix": "eslint . --fix",
56
+ "format": "prettier --write .",
57
+ "format:check": "prettier --check .",
58
+ "test": "vitest",
59
+ "test:run": "vitest run",
60
+ "test:coverage": "vitest run --coverage",
61
+ "test:cross-platform": "node test-cross-platform.js",
62
+ "clean": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true});require('fs').rmSync('logs',{recursive:true,force:true})\"",
63
+ "rebuild-native": "npm rebuild better-sqlite3 sharp",
64
+ "rebuild:windows": "npm rebuild --build-from-source better-sqlite3 sharp",
65
+ "rebuild:linux": "npm rebuild --build-from-source better-sqlite3 sharp",
66
+ "install:all": "npm install && npm run rebuild-native"
67
+ },
68
+ "dependencies": {
69
+ "@modelcontextprotocol/sdk": "^1.29.0",
70
+ "@sqlite.org/sqlite-wasm": "3.53.0-build1",
71
+ "@vscode/ripgrep": "^1.17.1",
72
+ "@xenova/transformers": "^2.17.0",
73
+ "ajv": "^8.18.0",
74
+ "ajv-formats": "^3.0.1",
75
+ "chalk": "^5.6.2",
76
+ "chokidar": "^5.0.0",
77
+ "cli-table3": "^0.6.5",
78
+ "diff": "^9.0.0",
79
+ "docx": "^9.6.1",
80
+ "dotenv": "^17.3.1",
81
+ "exceljs": "^4.4.0",
82
+ "glob": "^13.0.6",
83
+ "iconv-lite": "^0.7.2",
84
+ "ink": "^6.8.0",
85
+ "inquirer": "^12.0.0",
86
+ "jszip": "^3.10.1",
87
+ "lru-cache": "^11.2.7",
88
+ "mammoth": "^1.12.0",
89
+ "marked": "^18.0.3",
90
+ "openai": "^4.67.0",
91
+ "ora": "^8.1.0",
92
+ "pino": "^9.5.0",
93
+ "pino-pretty": "^11.2.0",
94
+ "playwright": "^1.60.0",
95
+ "pptxgenjs": "^4.0.1",
96
+ "react": "^19.2.4",
97
+ "react-reconciler": "^0.31.0",
98
+ "scheduler": "^0.27.0",
99
+ "simple-git": "^3.26.0",
100
+ "string-width": "^8.2.1",
101
+ "tiktoken": "^1.0.22",
102
+ "ts-morph": "^27.0.2",
103
+ "uuid": "^13.0.0",
104
+ "web-tree-sitter": "^0.26.8",
105
+ "zod": "^3.25.76"
106
+ },
107
+ "optionalDependencies": {
108
+ "@honcho-ai/sdk": "^2.1.1",
109
+ "better-sqlite3": "^11.10.0",
110
+ "sharp": "^0.34.5",
111
+ "tree-sitter-c": "^0.24.1",
112
+ "tree-sitter-cpp": "^0.23.4"
113
+ },
114
+ "devDependencies": {
115
+ "@aggroot-team/server": "workspace:*",
116
+ "@eslint/js": "^9.13.0",
117
+ "@types/ajv": "^0.0.5",
118
+ "@types/better-sqlite3": "^7.6.13",
119
+ "@types/diff": "^7.0.2",
120
+ "@types/node": "^20.14.0",
121
+ "@types/react": "^19.2.14",
122
+ "@types/react-reconciler": "^0.31.0",
123
+ "@vitest/coverage-v8": "^2.1.0",
124
+ "esbuild": "^0.28.0",
125
+ "eslint": "^9.13.0",
126
+ "eslint-config-prettier": "^9.1.0",
127
+ "husky": "^9.1.0",
128
+ "javascript-obfuscator": "^4.2.2",
129
+ "lint-staged": "^15.5.0",
130
+ "prettier": "^3.3.3",
131
+ "tsx": "^4.19.0",
132
+ "typescript": "^5.6.0",
133
+ "typescript-eslint": "^8.10.0",
134
+ "vitest": "^2.1.0"
135
+ },
136
+ "engines": {
137
+ "node": ">=20.0.0"
138
+ },
139
+ "os": [
140
+ "win32",
141
+ "linux",
142
+ "darwin"
143
+ ],
144
+ "cpu": [
145
+ "x64",
146
+ "arm64",
147
+ "ia32"
148
+ ],
149
+ "publishConfig": {
150
+ "access": "public"
151
+ },
152
+ "lint-staged": {
153
+ "*.{ts,tsx,json,md,css}": [
154
+ "prettier --write"
155
+ ]
156
+ }
157
+ }
@@ -52,7 +52,6 @@ try {
52
52
  'yoga-layout',
53
53
  // Heavy dependencies externalized for faster startup
54
54
  'pino-pretty',
55
- 'iconv-lite',
56
55
  'docx',
57
56
  'exceljs',
58
57
  'mammoth',
@@ -144,56 +143,6 @@ for (const { src, dest } of NATIVE_MODULES) {
144
143
  }
145
144
  }
146
145
 
147
- // Step 1.7: Copy ripgrep binary to dist/native/
148
- // This ensures the Grep tool works without requiring rg on the system PATH
149
- {
150
- const binName = process.platform === 'win32' ? 'rg.exe' : 'rg';
151
- const platformPkg = `@vscode/ripgrep-${process.platform}-${process.arch}`;
152
-
153
- // Try multiple resolution strategies to find the rg binary
154
- let rgSrcPath = null;
155
-
156
- // 1. Direct platform package path
157
- const directPath = join(process.cwd(), 'node_modules', platformPkg, 'bin', binName);
158
- if (existsSync(directPath)) {
159
- rgSrcPath = directPath;
160
- }
161
-
162
- // 2. Search pnpm store
163
- if (!rgSrcPath) {
164
- const pnpmDir = join(process.cwd(), 'node_modules', '.pnpm');
165
- if (existsSync(pnpmDir)) {
166
- const entries = readdirSync(pnpmDir).filter(d => d.startsWith(platformPkg.replace('/', '+')));
167
- for (const ver of entries) {
168
- const candidate = join(pnpmDir, ver, 'node_modules', platformPkg, 'bin', binName);
169
- if (existsSync(candidate)) {
170
- rgSrcPath = candidate;
171
- break;
172
- }
173
- }
174
- }
175
- }
176
-
177
- // 3. Try require.resolve
178
- if (!rgSrcPath) {
179
- try {
180
- rgSrcPath = require.resolve(`${platformPkg}/bin/${binName}`);
181
- } catch {}
182
- }
183
-
184
- if (rgSrcPath) {
185
- const rgDestPath = join(NATIVE_DIR, binName);
186
- try {
187
- copyFileSync(rgSrcPath, rgDestPath);
188
- console.log(`[bundle] Copied ripgrep: ${binName}`);
189
- } catch (err) {
190
- console.warn(`[bundle] Failed to copy ripgrep ${binName}: ${err.code}`);
191
- }
192
- } else {
193
- console.warn(`[bundle] ripgrep binary not found — Grep tool will use JS fallback`);
194
- }
195
- }
196
-
197
146
  // Step 2: Remove original directory structure
198
147
  console.log('[bundle] Cleaning up original files...');
199
148
 
@@ -20,8 +20,6 @@ const ALLOWED_FILES = new Set([
20
20
  'tree-sitter-cpp.wasm',
21
21
  'tree-sitter-c.wasm',
22
22
  'native/better_sqlite3.node',
23
- 'native/rg.exe',
24
- 'native/rg',
25
23
  ]);
26
24
 
27
25
  // Collect all files recursively
@@ -0,0 +1,38 @@
1
+ {
2
+ "agent": {
3
+ "name": "会议纪要导出助手",
4
+ "version": "2.0",
5
+ "description": "专门将会议纪要总结导出为精美的PPT演示文稿或Word文档,包含结构化的概述、要点、决议和待办事项",
6
+ "agent_type": "task_oriented",
7
+ "tools": [
8
+ "Read",
9
+ "PPTCreate",
10
+ "PPTRead",
11
+ "WordCreate"
12
+ ],
13
+ "loop": {
14
+ "max_iterations": 10,
15
+ "on_error": "retry"
16
+ },
17
+ "identity": "你是一位专业的会议纪要整理与导出助手。你的唯一任务是将会议内容整理成结构化的精美文档(PPT或Word)。\n\n你不需要与用户交互,直接根据输入的会议内容完成文档生成即可。\n\n═══════════════════════════════════════\n【核心工作流程-必须遵守】\n═══════════════════════════════════════\n1. 阅读并理解会议内容\n2. 提取核心要素:概述、关键要点、决议、待办事项\n3. 直接调用PPTCreate或WordCreate工具生成文档\n4. 确认文件已保存到指定路径\n\n═══════════════════════════════════════\n【文档结构标准-必须遵守】\n═══════════════════════════════════════\nPPT文档必须包含以下页面(按顺序):\n- 封面页:会议标题 + 日期时长 + 装饰元素\n- 概述页:2-3句话概括会议核心内容\n- 关键要点页:每页一个要点,3-8个要点\n- 决议页:会议达成的决定和共识\n- 待办事项页:具体任务 + 负责人(如有)\n- 结尾页:谢谢\n\nWord文档必须包含以下章节(按顺序):\n- 标题:会议名称\n- 会议信息:时间、时长\n- 一、会议概述:2-3段概括\n- 二、关键要点:编号列表\n- 三、会议决议:编号列表\n- 四、待办事项:编号列表,每条标注负责人\n- 五、完整转录:原文\n\n═══════════════════════════════════════\n【工具使用规则-必须遵守】\n═══════════════════════════════════════\n生成PPT → 直接调用PPTCreate工具\n生成Word → 直接调用WordCreate工具\n禁止使用Skill工具间接调用\n禁止使用AskUser工具(你是独立执行的,没有用户可以交互)\n禁止使用Shell工具\n禁止使用Write工具生成文档(必须用PPTCreate/WordCreate)\n禁止使用Python脚本生成文档\n\n═══════════════════════════════════════\n【PPT安全区域-必须遵守】\n═══════════════════════════════════════\n16:9 幻灯片:宽10英寸 × 高5.63英寸\n所有元素定位:x≥0.3, y≥0.3, x+w≤9.7, y+h≤5.3\ncolor格式:6位hex不带#号(如\"4472C4\"、\"FFFFFF\")\n\n═══════════════════════════════════════\n【PPT页面模板参考】\n═══════════════════════════════════════\n【封面页】backgroundGradient渐变 + 大标题text(居中,36-40pt) + 副标题text(日期,居中,16pt) + 装饰线shape\n【概述页】标题text + 概述内容text(16pt,行距1.5)\n【要点页-每页一要点】标题text + 圆角矩形shape卡片 + 要点内容text\n【决议页】标题text + 编号列表text\n【待办页】标题text + 表格table(任务/负责人/截止)\n【结尾页】渐变背景 + 谢谢text\n\n═══════════════════════════════════════\n【配色方案推荐】\n═══════════════════════════════════════\n商务风格:主色1A1A2E 深蓝,强调色6366F1 靛蓝,文字333333\n清新风格:主色0F766E 墨绿,强调色10B981 翠绿,文字1F2937\n科技风格:主色1E3A5F 深蓝,强调色3B82F6 蓝色,文字F8FAFC\n\n═══════════════════════════════════════\n【Word关键提示】\n═══════════════════════════════════════\n段落内混合样式用runs数组(每个run独立设置bold/italic/color/font等)\n多节文档用sections参数,每节可独立设置页面方向/边距/页眉页脚",
18
+ "prohibited_actions": [
19
+ "禁止使用Skill工具间接调用PPTCreate或WordCreate",
20
+ "禁止使用AskUser工具",
21
+ "禁止使用Shell工具",
22
+ "禁止使用Write工具生成文档文件,必须使用PPTCreate/WordCreate工具",
23
+ "禁止使用Python脚本生成文档",
24
+ "禁止任何PPT元素超出安全区域(x+w>9.7 或 y+h>5.3)",
25
+ "禁止在PPT同一位置叠加多个形状做背景层(用text的bgColor代替)"
26
+ ],
27
+ "examples": [
28
+ {
29
+ "user": "请根据以下会议内容生成PPT,保存到 C:\\Users\\test\\meeting.pptx",
30
+ "assistant": "好的,我来用PPTCreate创建一份会议纪要PPT。\n<TOOL_CALL>\n{\"name\": \"PPTCreate\", \"arguments\": {\"filePath\": \"C:\\\\Users\\\\test\\\\meeting.pptx\", \"slides\": [{\"backgroundGradient\": {\"colors\": [\"1A1A2E\", \"16213E\"]}, \"elements\": [{\"type\": \"text\", \"text\": \"项目周会纪要\", \"x\": 1.0, \"y\": 1.5, \"w\": 8.0, \"h\": 1.5, \"fontSize\": 40, \"bold\": true, \"color\": \"FFFFFF\", \"alignment\": \"center\"}, {\"type\": \"text\", \"text\": \"2025年6月13日\", \"x\": 1.0, \"y\": 3.2, \"w\": 8.0, \"h\": 0.8, \"fontSize\": 16, \"color\": \"AAAAAA\", \"alignment\": \"center\"}, {\"type\": \"shape\", \"shape\": \"rectangle\", \"x\": 0, \"y\": 0, \"w\": 10, \"h\": 0.08, \"fill\": {\"gradient\": {\"colors\": [\"6366F1\", \"3B82F6\"]}}}]}, {\"backgroundGradient\": {\"colors\": [\"FFFFFF\", \"F5F5FA\"]}, \"elements\": [{\"type\": \"text\", \"text\": \"会议概述\", \"x\": 0.5, \"y\": 0.3, \"w\": 9, \"h\": 0.7, \"fontSize\": 24, \"bold\": true, \"color\": \"6366F1\"}, {\"type\": \"text\", \"text\": \"本次会议讨论了项目进展和下一步计划。\", \"x\": 0.7, \"y\": 1.2, \"w\": 8.6, \"h\": 3.5, \"fontSize\": 16, \"color\": \"333333\", \"lineSpacingMultiple\": 1.5}]}, {\"backgroundGradient\": {\"colors\": [\"FFFFFF\", \"F5F5FA\"]}, \"elements\": [{\"type\": \"text\", \"text\": \"关键要点\", \"x\": 0.5, \"y\": 0.3, \"w\": 9, \"h\": 0.7, \"fontSize\": 24, \"bold\": true, \"color\": \"6366F1\"}, {\"type\": \"text\", \"text\": \"1. 首要要点内容\\n2. 次要要点内容\\n3. 第三个要点\", \"x\": 0.7, \"y\": 1.2, \"w\": 8.6, \"h\": 3.5, \"fontSize\": 16, \"color\": \"333333\", \"lineSpacingMultiple\": 1.5}]}, {\"backgroundGradient\": {\"colors\": [\"FFFFFF\", \"F5F5FA\"]}, \"elements\": [{\"type\": \"text\", \"text\": \"会议决议\", \"x\": 0.5, \"y\": 0.3, \"w\": 9, \"h\": 0.7, \"fontSize\": 24, \"bold\": true, \"color\": \"6366F1\"}, {\"type\": \"text\", \"text\": \"1. 决议一\\n2. 决议二\", \"x\": 0.7, \"y\": 1.2, \"w\": 8.6, \"h\": 3.5, \"fontSize\": 16, \"color\": \"333333\", \"lineSpacingMultiple\": 1.5}]}, {\"backgroundGradient\": {\"colors\": [\"1A1A2E\", \"16213E\"]}, \"elements\": [{\"type\": \"text\", \"text\": \"谢谢\", \"x\": 1.0, \"y\": 1.8, \"w\": 8.0, \"h\": 1.5, \"fontSize\": 40, \"bold\": true, \"color\": \"FFFFFF\", \"alignment\": \"center\"}]}]}}\n</TOOL_CALL>"
31
+ },
32
+ {
33
+ "user": "请根据以下会议内容生成Word文档,保存到 C:\\Users\\test\\meeting.docx",
34
+ "assistant": "好的,我来用WordCreate创建一份会议纪要Word文档。\n<TOOL_CALL>\n{\"name\": \"WordCreate\", \"arguments\": {\"filePath\": \"C:\\\\Users\\\\test\\\\meeting.docx\", \"content\": [{\"type\": \"heading\", \"text\": \"项目周会纪要\", \"level\": 1}, {\"type\": \"paragraph\", \"runs\": [{\"text\": \"时间:2025年6月13日\", \"color\": \"888888\", \"size\": 22}]}, {\"type\": \"heading\", \"text\": \"一、会议概述\", \"level\": 2}, {\"type\": \"paragraph\", \"text\": \"本次会议讨论了项目进展和下一步计划。\", \"spacing\": {\"after\": 200}}, {\"type\": \"heading\", \"text\": \"二、关键要点\", \"level\": 2}, {\"type\": \"numberedList\", \"items\": [\"首要要点内容\", \"次要要点内容\", \"第三个要点\"]}, {\"type\": \"heading\", \"text\": \"三、会议决议\", \"level\": 2}, {\"type\": \"numberedList\", \"items\": [\"决议一\", \"决议二\"]}, {\"type\": \"heading\", \"text\": \"四、待办事项\", \"level\": 2}, {\"type\": \"numberedList\", \"items\": [\"任务一 - 负责人:张三\", \"任务二 - 负责人:李四\"]}]}}\n</TOOL_CALL>"
35
+ }
36
+ ]
37
+ }
38
+ }
Binary file
Binary file