diff --git a/docs/en/samples/pre_post_processing/js/langchain/agent.js b/docs/en/samples/pre_post_processing/js/langchain/agent.js index a3236e4948..217772109b 100644 --- a/docs/en/samples/pre_post_processing/js/langchain/agent.js +++ b/docs/en/samples/pre_post_processing/js/langchain/agent.js @@ -111,7 +111,7 @@ function wrapToolWithBusinessLogic(toolInstance) { async function runTurn(agentExecutor, input) { console.log(`\nUSER: '${input}'`); const result = await agentExecutor.invoke({ input }); - console.log("-" .repeat(50)); + console.log("-".repeat(50)); console.log("Final Client Response:"); console.log(`AI: ${result.output}`); }