diff options
author | Grail Finder <wohilas@gmail.com> | 2025-08-08 13:14:06 +0300 |
---|---|---|
committer | Grail Finder <wohilas@gmail.com> | 2025-08-08 13:14:06 +0300 |
commit | 972d9cdbffad19efbf2bb05f2f91e31d09120e32 (patch) | |
tree | 78a4e9d637489852871882be9a4933ae299ce085 /bot.go | |
parent | c3a5de7a0d2631c8eda71a54cad9587d3d8915e1 (diff) |
Enha: get func name from oai tool call
Diffstat (limited to 'bot.go')
-rw-r--r-- | bot.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -442,7 +442,7 @@ func findCall(msg, toolCall string, tv *tview.TextView) { // call a func f, ok := fnMap[fc.Name] if !ok { - m := fc.Name + "%s is not implemented" + m := fc.Name + " is not implemented" chatRound(m, cfg.ToolRole, tv, false, false) return } |