mirror of
https://github.com/HKUDS/nanobot.git
synced 2026-08-08 05:18:49 +03:00
Capture file edit snapshots through runner tool lifecycle hooks and render unified diffs in the WebUI with folding and truncation controls.
12 lines
242 B
Python
12 lines
242 B
Python
"""Concrete agent hook implementations."""
|
|
|
|
from nanobot.agent.hooks.file_edit_activity import (
|
|
FileEditActivityHook,
|
|
create_file_edit_activity_hook,
|
|
)
|
|
|
|
__all__ = [
|
|
"FileEditActivityHook",
|
|
"create_file_edit_activity_hook",
|
|
]
|