Execute several delegated child-agent tasks concurrently through ``parallel_task``.
(&self, py: Python<'_>, tasks: &Bound<'_, PyAny>)
| 2015 | |
| 2016 | /// Execute several delegated child-agent tasks concurrently through ``parallel_task``. |
| 2017 | fn parallel_task(&self, py: Python<'_>, tasks: &Bound<'_, PyAny>) -> PyResult<PyToolResult> { |
| 2018 | self.tasks(py, tasks) |
| 2019 | } |
| 2020 | |
| 2021 | /// Run a bounded JavaScript script through the embedded QuickJS `program` tool. |
| 2022 | fn program( |