package tui import "time" type ChatMessage struct { ID string Input string Output string FromLang string ToLang string Model string Tokens int Timestamp time.Time Error string } type ChatHistory struct { Messages []ChatMessage scrollPos int totalLines int }