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
@@ -242,7 +242,7 @@ const getSQLDBChain = async (
const obj: SqlDatabaseChainInput = {
llm,
database: db,
verbose: process.env.DEBUG === 'true' ? true : false,
verbose: process.env.DEBUG === 'true',
topK: topK
}