feat(search-agent): add researcher, research actions

This commit is contained in:
ItzCrazyKns
2025-11-21 23:57:29 +05:30
parent 0df0114e76
commit 08feb18197
6 changed files with 313 additions and 5 deletions

View File

@@ -0,0 +1,8 @@
import doneAction from './done';
import ActionRegistry from './registry';
import webSearchAction from './webSearch';
ActionRegistry.register(webSearchAction);
ActionRegistry.register(doneAction);
export { ActionRegistry };