clean(components): is debug boolean syntax shorthand (#3770)

🧹 CLEAN(components): is debug boolean syntax shorthand
This commit is contained in:
Ahmed Rowaihi
2025-01-03 17:20:59 +03:00
committed by GitHub
parent 7af5815fa9
commit e22c60115e
18 changed files with 23 additions and 23 deletions
@@ -336,7 +336,7 @@ const prepareAgent = async (
sessionId: flowObj?.sessionId,
chatId: flowObj?.chatId,
input: flowObj?.input,
verbose: process.env.DEBUG === 'true' ? true : false,
verbose: process.env.DEBUG === 'true',
maxIterations: maxIterations ? parseFloat(maxIterations) : undefined
})