返回 DeepSeek-Reasonix
turn_tools.go
根目录 / internal / boot / turn_tools.go
1 package boot
2
3 import (
4 "reasonix/internal/agent"
5 "reasonix/internal/tool"
6 )
7
8 func registerInteractiveAgentTools(reg *tool.Registry) {
9 reg.Add(agent.NewAskTool())
10 }
11
11 lines GO