From 609b2a2b7c5229ba6d1b1171c2ea9a91558e5299 Mon Sep 17 00:00:00 2001 From: mudler Date: Mon, 15 Apr 2024 18:32:22 +0200 Subject: [PATCH] Correct description of 'stop' --- action/noreply.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action/noreply.go b/action/noreply.go index 8f999bd..e6cc755 100644 --- a/action/noreply.go +++ b/action/noreply.go @@ -19,6 +19,6 @@ func (a *StopAction) Run(context.Context, ActionParams) (string, error) { func (a *StopAction) Definition() ActionDefinition { return ActionDefinition{ Name: StopActionName, - Description: "Use this tool to stop any further action and stop the conversation. You must use this when: the user wants to stop the conversation, it seems that the user does not need any additional answer, it looks like there is already a conclusion to the conversation or the topic diverged too much from the original conversation.", + Description: "Use this tool to stop any further action and stop the conversation. You must use this when it looks like there is a conclusion to the conversation or the topic diverged too much from the original conversation. For instance if the user offer his help and you already replied with a message, you can use this tool to stop the conversation.", } }