summaryrefslogtreecommitdiff
path: root/tools.go
diff options
context:
space:
mode:
authorGrail Finder <wohilas@gmail.com>2025-08-08 14:26:01 +0300
committerGrail Finder <wohilas@gmail.com>2025-08-08 14:26:01 +0300
commit6955a5bc3a89e982f0b05d1e8e6f109e3b79d9ca (patch)
treeefc6375fb276562f786851220794ecc0ac63decc /tools.go
parent3b7784e0a44e7f8ca5c14db590ebdfe1736e87e5 (diff)
Enha: show tool responseHEADmaster
Diffstat (limited to 'tools.go')
-rw-r--r--tools.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools.go b/tools.go
index dee0577..acc4697 100644
--- a/tools.go
+++ b/tools.go
@@ -149,7 +149,7 @@ var baseTools = []models.Tool{
Type: "function",
Function: models.ToolFunc{
Name: "memorise",
- Description: "save topic-data in key-value cache",
+ Description: "Save topic-data in key-value cache. Use when asked to remember something/keep in mind.",
Parameters: models.ToolFuncParams{
Type: "object",
Required: []string{"topic", "data"},
@@ -171,7 +171,7 @@ var baseTools = []models.Tool{
Type: "function",
Function: models.ToolFunc{
Name: "recall",
- Description: "recall topic-data from key-value cache",
+ Description: "Recall topic-data from key-value cache. Use when precise info about the topic is needed.",
Parameters: models.ToolFuncParams{
Type: "object",
Required: []string{"topic"},
@@ -189,7 +189,7 @@ var baseTools = []models.Tool{
Type: "function",
Function: models.ToolFunc{
Name: "recall_topics",
- Description: "recall all topics from key-value cache",
+ Description: "Recall all topics from key-value cache. Use when need to know what topics are currently stored in memory.",
Parameters: models.ToolFuncParams{
Type: "object",
Required: []string{},