diff options
author | Grail Finder <wohilas@gmail.com> | 2024-12-23 19:02:36 +0300 |
---|---|---|
committer | Grail Finder <wohilas@gmail.com> | 2024-12-23 19:02:36 +0300 |
commit | 4db8aea43dded3f2c1d0d41b5a3fb322a38d4730 (patch) | |
tree | c8929dda92bb942d1e1bc8193102508d14dda132 /tools.go | |
parent | 923c96b73d02a5725a6b94d6052b2399b6f2def8 (diff) |
Feat: read json sysprompt cards
Diffstat (limited to 'tools.go')
-rw-r--r-- | tools.go | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 { |