@kmlckj/licos-ai-cli 0.0.51 → 0.0.52
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/lib/__templates__/agent/README.md +1 -1
- package/lib/__templates__/agent/pyproject.toml +4 -4
- package/lib/__templates__/expo/pnpm-lock.yaml +13109 -13109
- package/lib/__templates__/expo/server/package.json +3 -3
- package/lib/__templates__/nextjs/package.json +3 -3
- package/lib/__templates__/nextjs/pnpm-lock.yaml +12072 -12072
- package/lib/__templates__/nuxt-vue/package.json +3 -3
- package/lib/__templates__/nuxt-vue/pnpm-lock.yaml +8283 -8283
- package/lib/__templates__/taro/pnpm-lock.yaml +21216 -21216
- package/lib/__templates__/taro/server/package.json +3 -3
- package/lib/__templates__/vite/package.json +3 -3
- package/lib/__templates__/vite/pnpm-lock.yaml +2973 -2973
- package/lib/__templates__/workflow/pyproject.toml +4 -4
- package/lib/cli.js +1 -1
- package/package.json +1 -1
|
@@ -96,7 +96,7 @@ Body 可以同时带 `attachments`、`files`、`references` 等业务字段;
|
|
|
96
96
|
|
|
97
97
|
`config/agent_llm_config.json` 是平台预览读取智能体配置和工具列表的来源:
|
|
98
98
|
|
|
99
|
-
- `config`:模型、温度、超时、thinking
|
|
99
|
+
- `config`:模型、温度、超时、thinking 等运行参数;`model: "auto"` 表示使用平台默认模型
|
|
100
100
|
- `sp`:系统提示词
|
|
101
101
|
- `up`:用户提示补充
|
|
102
102
|
- `tools`:已配置工具名称列表,新增或删除工具时需要同步维护
|
|
@@ -3,10 +3,10 @@ name = "<%= appName %>"
|
|
|
3
3
|
version = "0.1.0"
|
|
4
4
|
description = "LICOS LangGraph agent project"
|
|
5
5
|
requires-python = ">=3.12"
|
|
6
|
-
dependencies = [
|
|
7
|
-
"licos-agent-runtime>=0.2.14",
|
|
8
|
-
"licos-dev-sdk>=0.2.
|
|
9
|
-
]
|
|
6
|
+
dependencies = [
|
|
7
|
+
"licos-agent-runtime>=0.2.14",
|
|
8
|
+
"licos-dev-sdk>=0.2.1",
|
|
9
|
+
]
|
|
10
10
|
|
|
11
11
|
[tool.uv]
|
|
12
12
|
[[tool.uv.index]]
|