| 65 | |
| 66 | |
| 67 | class Agent(Protocol): |
| 68 | config: Any |
| 69 | |
| 70 | def run(self, task: str, **kwargs) -> dict[str, Any]: ... |
| 71 | |
| 72 | def save(self, path: Path | None, *extra_dicts) -> dict[str, Any]: ... |
| 73 | |
| 74 | |
| 75 | __all__ = [ |
nothing calls this directly
no outgoing calls
no test coverage detected