summaryrefslogtreecommitdiff
path: root/tools.go
diff options
context:
space:
mode:
authorGrail Finder <wohilas@gmail.com>2024-12-23 19:02:36 +0300
committerGrail Finder <wohilas@gmail.com>2024-12-23 19:02:36 +0300
commit4db8aea43dded3f2c1d0d41b5a3fb322a38d4730 (patch)
treec8929dda92bb942d1e1bc8193102508d14dda132 /tools.go
parent923c96b73d02a5725a6b94d6052b2399b6f2def8 (diff)
Feat: read json sysprompt cards
Diffstat (limited to 'tools.go')
-rw-r--r--tools.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools.go b/tools.go
index 39c6063..210ce9c 100644
--- a/tools.go
+++ b/tools.go
@@ -107,7 +107,8 @@ func recall(args ...string) []byte {
logger.Error(msg)
return []byte(msg)
}
- return []byte(mind)
+ answer := fmt.Sprintf("under the topic: %s is stored:\n%s", args[0], mind)
+ return []byte(answer)
}
func recallTopics(args ...string) []byte {