Add visit web tool

Add send message tools
Update version to v1.7.0
This commit is contained in:
2025-07-11 13:08:06 +08:00
parent 6c034ab2a7
commit 89794b587e
11 changed files with 695 additions and 304 deletions

View File

@@ -0,0 +1,12 @@
package top.jie65535.mirai.tools
import com.aallam.openai.api.chat.Tool
import com.aallam.openai.api.core.Parameters
class StopLoopAgent : BaseAgent(
tool = Tool.function(
name = "endConversation",
description = "结束本轮对话",
parameters = Parameters.Empty
)
)