22 lines
305 B
Go
22 lines
305 B
Go
|
|
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
|
||
|
|
}
|