zhaoyingbo 9545670a51
All checks were successful
Egg Server CI/CD / build-image (push) Successful in 45s
Egg Server CI/CD / refresh-image (push) Successful in 12s
Egg Server CI/CD / fast-deploy (push) Successful in 2s
feat: 支持清洗历史数据
2024-10-15 01:20:21 +00:00

22 lines
424 B
TypeScript

import llm from "../../utils/llm"
const chatHistory = [
{
user: "user",
text: "你好",
time: "2022-01-01 00:00:00",
},
{
user: "bot",
text: "你好",
time: "2022-01-01 00:00:01",
},
]
const res = await llm.invoke("summary-qwen-72b-instruct-int4", {
chatHistory: JSON.stringify(chatHistory),
time: new Date().toLocaleString("zh-CN", { timeZone: "Asia/Shanghai" }),
})
console.log(res)