diff options
author | Grail Finder <wohilas@gmail.com> | 2024-12-05 20:13:07 +0300 |
---|---|---|
committer | Grail Finder <wohilas@gmail.com> | 2024-12-05 20:13:07 +0300 |
commit | e811bc51d401ecde194df562034ae529943546d0 (patch) | |
tree | 6a9cec3b0d132c1dd0594dfea54cc976ee9061d9 /models/models.go | |
parent | 990e0695c582c2c8d647c258cde0342ac14e3a75 (diff) |
Enha: improve colours and formatingg
Diffstat (limited to 'models/models.go')
-rw-r--r-- | models/models.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/models/models.go b/models/models.go index 0373e9b..2ac087a 100644 --- a/models/models.go +++ b/models/models.go @@ -69,7 +69,7 @@ func (m RoleMsg) ToText(i int) string { default: icon = fmt.Sprintf("(%d) <%s>: ", i, m.Role) } - textMsg := fmt.Sprintf("%s%s\n", icon, m.Content) + textMsg := fmt.Sprintf("%s\n%s\n", icon, m.Content) return strings.ReplaceAll(textMsg, "\n\n", "\n") } |