mi-212
mi-212
I also want to know the latest situation
Thank you for your response. The previous example was using the latest release ("pip install openequivariance"), but when I tried using the latest commit (clone repository → installation), I got...
Thank you for checking. When I tried it with `torch==2.9.0`, it compiled successfully. Using it as a calculator also worked without any issues. For now, I’ll run it with the...
Excuse me for interrupting the conversation. I agree that subagents should maintain checkpoints. When a subagent terminates due to an error during long-running tasks, all progress made up to that...
@Chenyl-Sai This is a simple script for verifying error handling behavior. ```python import random from typing import Annotated, NotRequired import operator from deepagents import create_deep_agent from dotenv import load_dotenv from...
@Chenyl-Sai I wasn't aware that "checkpoint_ns" and "channel_values" could be used to restore a subagent's state. Thank you for explaining this. The "resume" I was implementing was actually a "retry,"...
Understood. Enabling the checkpointer for subagents seems like the best approach. I agree with that opinion.