fix: 更新依赖版本并修复服务地址为HTTPS

This commit is contained in:
zhaoyingbo 2024-11-27 07:25:02 +00:00
parent 3e46b946e9
commit f9f71d2d7c
3 changed files with 6 additions and 6 deletions

BIN
bun.lockb

Binary file not shown.

View File

@ -37,9 +37,9 @@
},
"dependencies": {
"@egg/hooks": "^1.2.0",
"@egg/lark-msg-tool": "^1.15.0",
"@egg/logger": "^1.5.0",
"@egg/net-tool": "^1.16.0",
"@egg/lark-msg-tool": "^1.15.1",
"@egg/logger": "^1.6.0",
"@egg/net-tool": "^1.16.1",
"@egg/path-tool": "^1.4.1",
"@langchain/core": "^0.3.19",
"@langchain/openai": "^0.3.14",

View File

@ -3,9 +3,9 @@ import { NetToolBase } from "@egg/net-tool"
class AttachService extends NetToolBase {
protected hostMap: Record<string, string> = {
dev: "lark-egg-preview.ai.xiaomi.com",
preview: "lark-egg-preview.ai.xiaomi.com",
production: "lark-egg.ai.xiaomi.com",
dev: "https://lark-egg-preview.ai.xiaomi.com",
preview: "https://lark-egg-preview.ai.xiaomi.com",
production: "https://lark-egg.ai.xiaomi.com",
}
/**