mirror of
https://github.com/jie65535/JChatGPT.git
synced 2025-10-20 17:13:37 +08:00
12 lines
301 B
Kotlin
12 lines
301 B
Kotlin
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
|
|
)
|
|
) |