Merge branch 'master' into doc/tutorial

This commit is contained in:
Grail Finder
2025-12-28 00:06:09 +03:00
10 changed files with 82 additions and 24 deletions

View File

@@ -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
}