When I enable Ruby LLM's new `tool_concurrency` then the tools all get pulled into their own traces. ```ruby RubyLLM.configure do |config| config.tool_concurrency = true config.use_new_acts_as = true end ``` Without Concurrency <img width="459" height="255" alt="Image" src="https://github.com/user-attachments/assets/284e66a3-4f20-4d90-aed1-4c6b3da41bf1" /> With Concurrency <img width="561" height="300" alt="Image" src="https://github.com/user-attachments/assets/217c6a74-db63-4030-9c64-7fb5231b75e6" /> <img width="674" height="310" alt="Image" src="https://github.com/user-attachments/assets/1b09568c-9fc5-4f9b-bc05-51c87c796e4b" />
When I enable Ruby LLM's new
tool_concurrencythen the tools all get pulled into their own traces.Without Concurrency
With Concurrency