(self, code_blocks: List[CodeBlock])
| 20 | class EICE(EmbeddedIPythonCodeExecutor): |
| 21 | # Override the execute_code_blocks method to only execute the tool functions or initialization of these functions. |
| 22 | def execute_code_blocks(self, code_blocks: List[CodeBlock]): |
| 23 | tool_call_code_blocks = [block for block in code_blocks if "_run" in block.code or "Initialize" in block.code] |
| 24 | return super().execute_code_blocks(tool_call_code_blocks) |
| 25 | |
| 26 | class DCLCE(DockerCommandLineCodeExecutor): |
| 27 | def __init__( |