16 lines
310 B
TypeScript
16 lines
310 B
TypeScript
import initAppConfig from "../../constant/config"
|
|
import llm from "../../utils/llm"
|
|
|
|
await initAppConfig()
|
|
|
|
const res = await llm.invoke(
|
|
"intentRecognition",
|
|
{
|
|
userInput: "你是干嘛的",
|
|
time: new Date().toLocaleString("zh-CN", { timeZone: "Asia/Shanghai" }),
|
|
},
|
|
"test"
|
|
)
|
|
|
|
console.log(res)
|