init: 初始化demo项目,新增deepseek和千问api调用demo;

This commit is contained in:
2026-04-15 16:25:05 +08:00
parent 8e8b19cce3
commit 2c1cd85e77
7 changed files with 1360 additions and 1 deletions

23
package.json Normal file
View File

@@ -0,0 +1,23 @@
{
"name": "chat-api-demo",
"version": "1.0.0",
"description": "调用ai的demo",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "node --watch index.js",
"test": "echo \"No test configured\""
},
"repository": {
"type": "git",
"url": "ssh://git@git.alboped.com:8022/alboped/chat-api-demo.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"dotenv": "^17.4.2",
"express": "^5.2.1"
}
}