-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
helpers.go
210 lines (181 loc) · 6.62 KB
/
helpers.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
// helpers.go contains various helper functions used in the main application.
package main
import (
"fmt"
"os"
"strings"
"github.com/sammcj/gollama/config"
"github.com/sammcj/gollama/logging"
"github.com/charmbracelet/lipgloss"
"github.com/ollama/ollama/api"
"golang.org/x/term"
)
func parseAPIResponse(resp *api.ListResponse) []Model {
logging.DebugLogger.Println("Fetching models from API")
models := make([]Model, len(resp.Models))
for i, modelResp := range resp.Models {
modelName := lipgloss.NewStyle().Foreground(lipgloss.Color("white")).Render(modelResp.Name)
models[i] = Model{
Name: modelName,
ID: truncate(modelResp.Digest, 7), // Truncate the ID
Size: float64(modelResp.Size) / (1024 * 1024 * 1024), // Convert bytes to GB
QuantizationLevel: modelResp.Details.QuantizationLevel,
Family: modelResp.Details.Family,
Modified: modelResp.ModifiedAt,
}
}
logging.DebugLogger.Println("Models:", models)
return models
}
func normalizeSize(size float64) float64 {
return size // Sizes are already in GB in the API response
}
func calculateColumnWidths(totalWidth int) (nameWidth, sizeWidth, quantWidth, modifiedWidth, idWidth, familyWidth int) {
// Calculate column widths
nameWidth = int(0.45 * float64(totalWidth))
sizeWidth = int(0.05 * float64(totalWidth))
quantWidth = int(0.05 * float64(totalWidth))
familyWidth = int(0.05 * float64(totalWidth))
modifiedWidth = int(0.05 * float64(totalWidth))
idWidth = int(0.02 * float64(totalWidth))
// Set the absolute minimum width for each column
if nameWidth < minNameWidth {
nameWidth = minNameWidth
}
if sizeWidth < minSizeWidth {
sizeWidth = minSizeWidth
}
if quantWidth < minQuantWidth {
quantWidth = minQuantWidth
}
if modifiedWidth < minModifiedWidth {
modifiedWidth = minModifiedWidth
}
if idWidth < minIDWidth {
idWidth = minIDWidth
}
if familyWidth < minFamilyWidth {
familyWidth = minFamilyWidth
}
// If the total width is less than the sum of the minimum column widths, adjust the name column width and make sure all columns are aligned
if totalWidth < nameWidth+sizeWidth+quantWidth+familyWidth+modifiedWidth+idWidth {
nameWidth = totalWidth - sizeWidth - quantWidth - familyWidth - modifiedWidth - idWidth
}
return
}
func removeModels(models []Model, selectedModels []Model) []Model {
result := make([]Model, 0)
for _, model := range models {
found := false
for _, selectedModel := range selectedModels {
if model.Name == selectedModel.Name {
found = true
break
}
}
if !found {
result = append(result, model)
}
}
return result
}
// truncate ensures the string fits within the specified width
func truncate(text string, width int) string {
if len(text) > width {
return text[:width]
}
return text
}
// wrapText ensures the text wraps to the next line if it exceeds the column width
func wrapText(text string, width int) string {
var wrapped string
for len(text) > width {
wrapped += text[:width]
text = text[width:] + " "
}
wrapped += text
return wrapped
}
func calculateColumnWidthsTerminal() (nameWidth, sizeWidth, quantWidth, modifiedWidth, idWidth, familyWidth int) {
// use the terminal width to calculate column widths
minWidth := 120
width, _, err := term.GetSize(int(os.Stdout.Fd()))
if err != nil {
logging.ErrorLogger.Println("Error getting terminal size:", err)
width = minWidth
}
// make sure there's at least minWidth characters for each column
if width < minWidth {
width = minWidth
}
return calculateColumnWidths(width)
}
func listModels(models []Model) {
// read the config file to see if the user wants to strip a string from the model name
cfg, err := config.LoadConfig()
if err != nil {
fmt.Println("Error loading config:", err)
os.Exit(1)
}
stripString := cfg.StripString
nameWidth, sizeWidth, quantWidth, modifiedWidth, idWidth, familyWidth := calculateColumnWidthsTerminal()
// align the header with the columns (length of stripString is subtracted from the name width to ensure alignment with the other columns)
header := fmt.Sprintf("%-*s %-*s %-*s %-*s %-*s %-*s", nameWidth-len(stripString), "Name", sizeWidth, "Size", quantWidth, "Quant", familyWidth, "Family", modifiedWidth, "Modified", idWidth, "ID")
// if stripString is set, replace the model name with the stripped string
if stripString != "" {
for i, model := range models {
models[i].Name = strings.Replace(model.Name, stripString, "", 1)
}
}
// Prepare columns for padding
var names, sizes, quants, families, modifieds, ids []string
for _, model := range models {
names = append(names, model.Name)
sizes = append(sizes, fmt.Sprintf("%.2fGB", model.Size))
quants = append(quants, model.QuantizationLevel)
families = append(families, model.Family)
modifieds = append(modifieds, model.Modified.Format("2006-01-02"))
ids = append(ids, model.ID)
}
// Pad columns to ensure alignment
names = padColumn(names)
sizes = padColumn(sizes)
quants = padColumn(quants)
families = padColumn(families)
modifieds = padColumn(modifieds)
ids = padColumn(ids)
// Print the header
fmt.Println(lipgloss.NewStyle().Foreground(lipgloss.Color("12")).Render(header))
modelList := []string{}
for index, model := range models {
// colourise the model properties
nameColours := []lipgloss.Color{lipgloss.Color("#FFFFFF"), lipgloss.Color("#818BA9")}
name := lipgloss.NewStyle().Foreground(nameColours[index%len(nameColours)]).Render(names[index])
id := lipgloss.NewStyle().Foreground(lipgloss.Color("254")).Faint(true).Render(ids[index])
size := lipgloss.NewStyle().Foreground(sizeColour(model.Size)).Render(sizes[index])
family := lipgloss.NewStyle().Foreground(familyColour(model.Family, 0)).Render(families[index])
quant := lipgloss.NewStyle().Foreground(quantColour(model.QuantizationLevel)).Render(quants[index])
modified := lipgloss.NewStyle().Foreground(lipgloss.Color("254")).Render(modifieds[index])
row := fmt.Sprintf("%-*s %-*s %-*s %-*s %-*s %-*s", nameWidth, name, sizeWidth, size, quantWidth, quant, familyWidth, family, modifiedWidth, modified, idWidth, id)
modelList = append(modelList, row)
}
// Print the models
for _, row := range modelList {
fmt.Println(row)
}
}
// padColumn takes a slice of strings and pads them with spaces to the maximum width of all the values in that column.
func padColumn(column []string) []string {
max := 0
for _, value := range column {
if len(value) > max {
max = len(value)
}
}
paddedColumn := make([]string, len(column))
for i, value := range column {
padding := strings.Repeat(" ", max-len(value))
paddedColumn[i] = wrapText(value+padding, max)
}
return paddedColumn
}