aixxai 1.4.1 → 1.4.2

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,6 +1,6 @@
1
1
  {
2
2
  "name": "aixxai",
3
- "version": "1.4.1",
3
+ "version": "1.4.2",
4
4
  "description": "AIXX CLI - 让你的AI调用万物。安装:npx aixxai install",
5
5
  "type": "module",
6
6
  "bin": {
@@ -116,7 +116,7 @@ agent判断:需要AI能力吗?
116
116
  |---|---|---|
117
117
  | `deepseek-chat` | DeepSeek,便宜能打 | 默认首选,日常任务 |
118
118
  | `deepseek-reasoner` | DeepSeek推理 | 复杂推理、数学 |
119
- | `glm-4-flash` | GLM智谱,免费档 | 轻量任务 |
119
+ | `glm-4-flash` | GLM智谱,免费档。不支持工具调用(function calling) | 轻量纯文本任务;需工具调用用 `deepseek-chat` |
120
120
  | `glm-4-plus` | GLM智谱,旗舰(渠道维护中) | 文案任务先用 `deepseek-chat` |
121
121
  | `moonshot-v1-8k` | Kimi,短文本 | 短文翻译 |
122
122
  | `moonshot-v1-32k` | Kimi,中长文 | 中长文档 |
@@ -39,6 +39,7 @@ AIXX 会自动选最优模型,但 agent 也可以按任务指定。
39
39
  | 复杂任务/最强 | `claude-opus-4-8` | 能力最强 |
40
40
  | 通用旗舰 | `gpt-4o` | 通用 |
41
41
  | 审美/UI/设计 | (先搜索skill,见 search.md) | 专门skill比通用模型强 |
42
+ | 轻量免费任务 | `glm-4-flash` | 免费,但不支持工具调用(function calling);需工具调用用 `deepseek-chat` |
42
43
 
43
44
  **不指定 model 时**:用 `deepseek-chat`(最便宜,省用户额度)。
44
45