AI
AIGIT · AI 工具站
aigit.cc
首页
精品推荐
AI成品工具
提示词
返回 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