mirror of
https://github.com/modelstudioai/cli.git
synced 2026-09-14 19:49:23 +08:00
e681263049
- 新增知识库管理命令实现创建、查询、更新、删除等功能 - 支持文档上传、本地目录扫描及OSS导入,覆盖完整文档生命周期 - 增加检索与问答服务的管理及部署操作 - 实现文档切片管理,支持添加、列表、更新和删除功能 - 引入数据中心管理命令,管理类目、文件和数据集 - 检索和问答支持指定服务版本参数,方便调试和版本控制 - 所有知识库命令同步支持kscli工具,提供更短命令路径 - 移除无效参数`bl knowledge search --query-history`,建议改用聊天命令传递历史 - 请求增加静态OpenAPI来源标识请求头,改进后台渠道归因 - 添加知识库端到端测试套件,覆盖多条使用场景 - 版本号统一更新至1.16.0,文档同步更新相关版本信息
68 lines
1.7 KiB
JSON
68 lines
1.7 KiB
JSON
{
|
|
"name": "bailian-cli-runtime",
|
|
"version": "1.16.0",
|
|
"description": "Runtime framework for bailian-cli (createCli, registry, args, output, pipeline). See https://www.npmjs.com/package/bailian-cli for usage.",
|
|
"homepage": "https://bailian.console.aliyun.com/cli",
|
|
"bugs": {
|
|
"url": "https://github.com/modelstudioai/cli/issues"
|
|
},
|
|
"license": "Apache-2.0",
|
|
"author": "Aliyun Model Studio",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/modelstudioai/cli.git",
|
|
"directory": "packages/runtime"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"type": "module",
|
|
"types": "./dist/index.d.mts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./src/index.ts",
|
|
"default": "./src/index.ts"
|
|
},
|
|
"./package.json": "./package.json"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"exports": {
|
|
".": "./dist/index.mjs",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"registry": "https://registry.npmjs.org/"
|
|
},
|
|
"scripts": {
|
|
"build": "vp pack",
|
|
"dev": "vp pack --watch",
|
|
"test": "vp test",
|
|
"check": "vp check"
|
|
},
|
|
"dependencies": {
|
|
"bailian-cli-core": "workspace:*",
|
|
"boxen": "catalog:",
|
|
"chalk": "catalog:",
|
|
"undici": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"@clack/prompts": "^0.7.0",
|
|
"@types/node": "catalog:",
|
|
"@typescript/native-preview": "7.0.0-dev.20260328.1",
|
|
"ajv": "catalog:",
|
|
"e2e": "workspace:*",
|
|
"typescript": "^6.0.2",
|
|
"vite-plus": "0.1.22",
|
|
"yaml": "catalog:"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.17.0"
|
|
},
|
|
"inlinedDependencies": {
|
|
"ajv": "8.20.0",
|
|
"fast-deep-equal": "3.1.3",
|
|
"fast-uri": "3.1.2",
|
|
"json-schema-traverse": "1.0.0"
|
|
}
|
|
}
|