feat: update Bailian model and improve TypeScript configuration

- Changed Bailian model from 'qwen3-235b-a22b' to 'qwen-plus' in ai.ts
- Updated model references in bailianModel to use simplified names
- Modified tsconfig.json to set module to NodeNext, target to esnext, and adjusted paths for better module resolution
- Added new query-keys.ts file in xhs package to implement getNoteByKeyword functionality with command line interface
This commit is contained in:
2025-12-25 04:53:24 +08:00
parent 52d37d0679
commit 0d42e912f5
20 changed files with 772 additions and 593 deletions

View File

@@ -21,7 +21,7 @@
"clean": "rm -rf dist",
"turbo:build": "turbo run build",
"pub": "npm run build && envision pack -p -u",
"cmd": "tsx cmd/index.ts "
"cmd": "bun packages/xhs/src/test/command.ts "
},
"keywords": [],
"author": "abearxiong <xiongxiao@xiongxiao.me>",
@@ -36,43 +36,43 @@
"access": "public"
},
"dependencies": {
"@kevisual/ai": "^0.0.8",
"@kevisual/code-center-module": "0.0.23",
"@kevisual/context": "^0.0.3",
"@kevisual/router": "0.0.23",
"@kevisual/use-config": "^1.0.19",
"cookie": "^1.0.2",
"dayjs": "^1.11.13",
"@kevisual/ai": "^0.0.19",
"@kevisual/code-center-module": "0.0.24",
"@kevisual/context": "^0.0.4",
"@kevisual/router": "0.0.49",
"@kevisual/use-config": "^1.0.21",
"cookie": "^1.1.1",
"dayjs": "^1.11.19",
"formidable": "^3.5.4",
"lodash-es": "^4.17.21",
"nanoid": "^5.1.5"
"lodash-es": "^4.17.22",
"nanoid": "^5.1.6"
},
"devDependencies": {
"@kevisual/app-assistant": "workspace:*",
"@kevisual/logger": "^0.0.4",
"@kevisual/social-prompts": "workspace:*",
"@kevisual/types": "^0.0.10",
"@kevisual/use-config": "^1.0.19",
"@kevisual/use-config": "^1.0.21",
"@kevisual/xhs": "workspace:*",
"@types/bun": "^1.2.16",
"@types/bun": "^1.3.5",
"@types/crypto-js": "^4.2.2",
"@types/formidable": "^3.4.5",
"@types/formidable": "^3.4.6",
"@types/lodash-es": "^4.17.12",
"@types/node": "^24.0.3",
"bullmq": "^5.55.0",
"commander": "^14.0.0",
"concurrently": "^9.1.2",
"cross-env": "^7.0.3",
"dotenv": "^16.5.0",
"@types/node": "^25.0.3",
"bullmq": "^5.66.2",
"commander": "^14.0.2",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"dotenv": "^17.2.3",
"inquire": "^0.4.8",
"ioredis": "^5.6.1",
"nodemon": "^3.1.10",
"openai": "^5.6.0",
"pg": "^8.16.2",
"rimraf": "^6.0.1",
"ioredis": "^5.8.2",
"nodemon": "^3.1.11",
"openai": "^6.15.0",
"pg": "^8.16.3",
"rimraf": "^6.1.2",
"sequelize": "^6.37.7",
"tape": "^5.9.0",
"typescript": "^5.8.3"
"turbo": "^2.7.2",
"typescript": "^5.9.3"
},
"packageManager": "pnpm@10.12.1"
"packageManager": "pnpm@10.26.2"
}