remove files if it seems close enough

This commit is contained in:
Jeff Carr 2025-09-02 01:21:24 -05:00
parent db079664c9
commit 81343b3b66
1 changed files with 4 additions and 0 deletions

View File

@ -95,6 +95,10 @@ func cleanGeminiFile(fullname string) error {
if chat.AddGeminiRequest(fname, age, pb) {
me.chats.ConfigSave()
okExit("")
} else {
log.Info("file was perfect. os.Remove() here", fullname)
os.Remove(fullname)
}
}
return nil