10 lines
425 B
JavaScript
10 lines
425 B
JavaScript
import { createRegistry } from '../../registry.js';
|
|
import { searchTool } from '../search.js';
|
|
import { listActionsTool, proposeActionTool } from './actions.js';
|
|
|
|
// read (search) + her action tools. No propose_change (she fixes infra, not content).
|
|
export const blueRegistry = createRegistry();
|
|
blueRegistry.registerTool(searchTool);
|
|
blueRegistry.registerTool(listActionsTool);
|
|
blueRegistry.registerTool(proposeActionTool);
|