feat: 更新byteMonitor以清理翻译结果并添加错误日志,新增测试用例

This commit is contained in:
zhaoyingbo 2025-02-24 08:49:08 +00:00
parent 32396aecf1
commit bfd9aec103
2 changed files with 12 additions and 1 deletions

View File

@ -6,6 +6,7 @@ import pbClient from "../db/pbClient"
import { Context } from "../types"
import { genContextManually } from "../utils/genContext"
import llm from "../utils/llm"
import { cleanLLMRes } from "../utils/llm/base"
await initAppConfig()
@ -26,8 +27,11 @@ const translateTextList = async (textList: string[], requestId: string) => {
1,
true
)
console.log("🚀 ~ translateTextList ~ translatedTexts:", translatedTexts)
const translatedList = JSON.parse(translatedTexts as string) as string[]
const translatedList = JSON.parse(
cleanLLMRes(translatedTexts as string)
) as string[]
const translatedMap: Record<string, string> = {}
textList.forEach((text, index) => {
@ -227,6 +231,7 @@ const byteMonitor = async () => {
"byteMonitor 更新"
)
} catch (error) {
console.error(error)
const errorMessage = `byteMonitor error: ${error}`
logger.error(errorMessage)
} finally {

View File

@ -0,0 +1,6 @@
import initAppConfig from "../../constant/config"
import byteMonitor from "../../schedule/byteMonitor"
await initAppConfig()
await byteMonitor()