恢复供应商变动

This commit is contained in:
ACT丶流星雨 2026-04-04 00:01:13 +08:00
parent a78a9a1b6a
commit 94d17e52cd

View File

@ -11,6 +11,23 @@ export default router.post(
key: z.string().optional(),
}),
async (req, res) => {
const { key } = req.body;
const vendorConfigData = await u.db("o_vendorConfig").where("id", "toonflow").first();
if (!vendorConfigData) return res.status(500).send(error("未找到该供应商配置"));
if (!vendorConfigData.inputValues) return res.status(500).send(error("未找到模型配置数据"));
const inputValue = JSON.parse(vendorConfigData.inputValues!);
inputValue.apiKey = key;
await u
.db("o_vendorConfig")
.where("id", "toonflow")
.update({
inputValues: JSON.stringify(inputValue),
});
try {
const resText = await u.Ai.Text(`toonflow:claude-haiku-4-5-20251001`).invoke({
prompt: "1+1等于几,请直接回答2不要解释",
});
if (resText.text) {
await u.db("o_agentDeploy").where("key", "scriptAgent").update({
model: "claude-sonnet-4-6",
modelName: "toonflow:claude-sonnet-4-6",
@ -27,49 +44,15 @@ export default router.post(
vendorId: "toonflow",
});
res.status(200).send(success("一键填入成功"));
// const { key } = req.body;
// const vendorConfigData = await u.db("o_vendorConfig").where("id", "toonflow").first();
// if (!vendorConfigData) return res.status(500).send(error("未找到该供应商配置"));
// if (!vendorConfigData.inputValues) return res.status(500).send(error("未找到模型配置数据"));
// const inputValue = JSON.parse(vendorConfigData.inputValues!);
// inputValue.apiKey = key;
// await u
// .db("o_vendorConfig")
// .where("id", "toonflow")
// .update({
// inputValues: JSON.stringify(inputValue),
// });
// try {
// const resText = await u.Ai.Text(`toonflow:gpt-4.1`).invoke({
// prompt: "1+1等于几",
// });
// if (resText.text) {
// await u.db("o_agentDeploy").where("key", "scriptAgent").update({
// model: "claude-sonnet-4-6",
// modelName: "toonflow:claude-sonnet-4-6",
// vendorId: "toonflow",
// });
// await u.db("o_agentDeploy").where("key", "productionAgent").update({
// model: "claude-sonnet-4-6",
// modelName: "toonflow:claude-sonnet-4-6",
// vendorId: "toonflow",
// });
// await u.db("o_agentDeploy").where("key", "universalAi").update({
// model: "claude-haiku-4-5",
// modelName: "toonflow:claude-haiku-4-5-20251001",
// vendorId: "toonflow",
// });
// res.status(200).send(success("一键填入成功"));
// }
// } catch (err) {
// console.error(err);
// inputValue.apiKey = "";
// await u
// .db("o_vendorConfig")
// .where("id", "toonflow")
// .update({ inputValues: JSON.stringify(inputValue) });
// res.status(400).send(error("KEY无效请重新输入"));
// }
}
} catch (err) {
console.error(err);
inputValue.apiKey = "";
await u
.db("o_vendorConfig")
.where("id", "toonflow")
.update({ inputValues: JSON.stringify(inputValue) });
res.status(400).send(error("KEY无效请重新输入"));
}
},
);