去掉Debug日志打印

This commit is contained in:
glay 2024-11-25 09:51:02 +08:00
parent 0abfd279e4
commit 2fe848ecf3

View File

@ -82,10 +82,10 @@ async function requestBedrock(req: NextRequest) {
} catch (e) {
throw new Error(`Invalid JSON in request body: ${e}`);
}
console.log(
"[Bedrock Request] original Body:",
JSON.stringify(bodyJson, null, 2),
);
// console.log(
// "[Bedrock Request] original Body:",
// JSON.stringify(bodyJson, null, 2),
// );
// Extract tool configuration if present
let tools: any[] | undefined;