summaryrefslogtreecommitdiff
path: root/helpfuncs.go
diff options
context:
space:
mode:
Diffstat (limited to 'helpfuncs.go')
-rw-r--r--helpfuncs.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/helpfuncs.go b/helpfuncs.go
index ff4d806..0710fe8 100644
--- a/helpfuncs.go
+++ b/helpfuncs.go
@@ -227,7 +227,6 @@ func makeStatusLine() string {
} else {
imageInfo = ""
}
-
// Add shell mode status to status line
var shellModeInfo string
if shellMode {
@@ -235,9 +234,9 @@ func makeStatusLine() string {
} else {
shellModeInfo = ""
}
-
statusLine := fmt.Sprintf(indexLineCompletion, botRespMode, activeChatName,
cfg.ToolUse, chatBody.Model, cfg.SkipLLMResp, cfg.CurrentAPI, cfg.ThinkUse,
+ cfg.ToolUse, chatBody.Model, cfg.SkipLLMResp, cfg.CurrentAPI,
isRecording, persona, botPersona, injectRole)
return statusLine + imageInfo + shellModeInfo
}