-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
main.go
407 lines (351 loc) · 10.9 KB
/
main.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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
// main.go
package main
import (
"context"
"flag"
"fmt"
"net/http"
"net/url"
"os"
"path/filepath"
"sort"
"strings"
"github.com/charmbracelet/bubbles/key"
"github.com/charmbracelet/bubbles/list"
"github.com/charmbracelet/bubbles/progress"
"github.com/charmbracelet/bubbles/table"
"github.com/charmbracelet/bubbles/textinput"
tea "github.com/charmbracelet/bubbletea"
"github.com/charmbracelet/lipgloss"
"github.com/ollama/ollama/api"
"golang.org/x/term"
"github.com/sammcj/gollama/config"
"github.com/sammcj/gollama/logging"
"github.com/sammcj/gollama/vramestimator"
)
type AppModel struct {
width int
height int
ollamaModelsDir string
cfg *config.Config
inspectedModel Model
list list.Model
models []Model
selectedModels []Model
confirmDeletion bool
inspecting bool
editing bool
message string
keys KeyMap
client *api.Client
lmStudioModelsDir string
noCleanup bool
table table.Model
filterInput tea.Model
showTop bool
progress progress.Model
altScreenActive bool
view View
showProgress bool
pullInput textinput.Model
pulling bool
pullProgress float64
newModelPull bool
}
// TODO: Refactor: we don't need unique message types for every single action
type progressMsg struct {
modelName string
progress float64
}
type runFinishedMessage struct{ err error }
type pushSuccessMsg struct {
modelName string
}
type pushErrorMsg struct {
err error
}
type pullSuccessMsg struct {
modelName string
}
type pullErrorMsg struct {
err error
}
type genericMsg struct {
message string
}
type View int
var fitsVRAM float64
var Version string // Version is set by the build system
func main() {
if Version == "" {
Version = "1.28.0"
}
cfg, err := config.LoadConfig()
if err != nil {
fmt.Println("Error loading config:", err)
os.Exit(1)
}
err = logging.Init(cfg.LogLevel, cfg.LogFilePath)
if err != nil {
fmt.Println("Error initializing logging:", err)
os.Exit(1)
}
listFlag := flag.Bool("l", false, "List all available Ollama models and exit")
linkFlag := flag.Bool("L", false, "Link a model to a specific name")
ollamaDirFlag := flag.String("ollama-dir", cfg.OllamaAPIKey, "Custom Ollama models directory")
lmStudioDirFlag := flag.String("lm-dir", cfg.LMStudioFilePaths, "Custom LM Studio models directory")
noCleanupFlag := flag.Bool("no-cleanup", false, "Don't cleanup broken symlinks")
cleanupFlag := flag.Bool("cleanup", false, "Remove all symlinked models and empty directories and exit")
searchFlag := flag.String("s", "", "Search - return a list of models that contain the search term in their name")
unloadModelsFlag := flag.Bool("u", false, "Unload all models and exit")
versionFlag := flag.Bool("v", false, "Print the version and exit")
hostFlag := flag.String("h", "", "Override the config file to set the Ollama API host (e.g. http://localhost:11434)")
localHostFlag := flag.Bool("H", false, "Shortcut to connect to http://localhost:11434")
editFlag := flag.Bool("e", false, "Edit a model's modelfile")
// vRAM estimation flags
flag.Float64Var(&fitsVRAM, "fits", 0, "Highlight quant sizes and context sizes that fit in this amount of vRAM (in GB)")
vramFlag := flag.String("vram", "", "Estimate vRAM usage - Model ID or Ollama model name")
topContextFlag := flag.String("vram-to-nth", "65536", "Top context length to search for (e.g., 65536, 32k, 2m)")
flag.Parse()
if *versionFlag {
fmt.Println(Version)
os.Exit(0)
}
os.Setenv("EDITOR", cfg.Editor)
if *localHostFlag {
*hostFlag = "http://localhost:11434"
}
if *hostFlag != "" {
cfg.OllamaAPIURL = *hostFlag
}
// Initialise the API client
ctx := context.Background()
httpClient := &http.Client{}
url, err := url.Parse(cfg.OllamaAPIURL)
if err != nil {
message := fmt.Sprintf("Error parsing API URL: %v", err)
logging.ErrorLogger.Println(message)
fmt.Println(message)
os.Exit(1)
}
// Handle --vram flag
if *vramFlag != "" {
modelName := *vramFlag
logging.DebugLogger.Println("vRAM estimation flag detected")
if *vramFlag == "" {
fmt.Println("Error: Model ID or Ollama model name is required for vRAM estimation")
os.Exit(1)
}
logging.DebugLogger.Println("Generating VRAM estimation table")
var ollamaModelInfo *vramestimator.OllamaModelInfo
var err error
// Check if the input is an Ollama model name (contains a colon)
if strings.Contains(modelName, ":") {
ollamaModelInfo, err = vramestimator.FetchOllamaModelInfo(cfg.OllamaAPIURL, modelName)
if err != nil {
fmt.Printf("Error fetching Ollama model info: %v\n", err)
os.Exit(1)
}
}
// Parse the top context size
topContext, err := parseContextSize(*topContextFlag)
if err != nil {
fmt.Printf("Error parsing top context size: %v\n", err)
os.Exit(1)
}
table, err := vramestimator.GenerateQuantTable(modelName, fitsVRAM, ollamaModelInfo, topContext)
if err != nil {
fmt.Printf("Error generating VRAM estimation table: %v\n", err)
os.Exit(1)
}
fmt.Println(vramestimator.PrintFormattedTable(table))
os.Exit(0)
}
client := api.NewClient(url, httpClient)
resp, err := client.List(ctx)
if err != nil {
message := fmt.Sprintf("Error fetching models:\n- Error: %v\n- Configured API URL: %v", err, cfg.OllamaAPIURL)
logging.ErrorLogger.Println(message)
fmt.Println(message)
os.Exit(1)
}
models := parseAPIResponse(resp)
modelMap := make(map[string][]Model)
for _, model := range models {
model.Size = normalizeSize(model.Size)
modelMap[model.ID] = append(modelMap[model.ID], model)
}
groupedModels := make([]Model, 0)
for _, group := range modelMap {
groupedModels = append(groupedModels, group...)
}
switch cfg.SortOrder {
case "name":
sort.Slice(groupedModels, func(i, j int) bool {
return groupedModels[i].Name < groupedModels[j].Name
})
case "size":
sort.Slice(groupedModels, func(i, j int) bool {
return groupedModels[i].Size > groupedModels[j].Size
})
case "modified":
sort.Slice(groupedModels, func(i, j int) bool {
return groupedModels[i].Modified.After(groupedModels[j].Modified)
})
case "family":
sort.Slice(groupedModels, func(i, j int) bool {
return groupedModels[i].Family < groupedModels[j].Family
})
}
items := make([]list.Item, len(groupedModels))
for i, model := range groupedModels {
items[i] = model
}
keys := NewKeyMap()
width, height, err := term.GetSize(int(os.Stdout.Fd()))
if err != nil {
width, height = 80, 24
}
app := AppModel{
client: client,
keys: *keys,
models: groupedModels,
width: width,
height: height,
ollamaModelsDir: *ollamaDirFlag,
lmStudioModelsDir: *lmStudioDirFlag,
noCleanup: *noCleanupFlag,
cfg: &cfg,
progress: progress.New(progress.WithDefaultGradient()),
pullInput: textinput.New(),
pulling: false,
pullProgress: 0,
}
if *ollamaDirFlag == "" {
app.ollamaModelsDir = filepath.Join(os.Getenv("HOME"), ".ollama", "models")
}
if *lmStudioDirFlag == "" {
app.lmStudioModelsDir = filepath.Join(os.Getenv("HOME"), ".cache", "lm-studio", "models")
}
if *listFlag {
listModels(models)
os.Exit(0)
}
if *cleanupFlag {
cleanupSymlinkedModels(app.lmStudioModelsDir)
os.Exit(0)
}
if *searchFlag != "" {
searchTerms := flag.Args()
// If no additional arguments are provided, use the searchFlag value
if len(searchTerms) == 0 {
searchTerms = []string{*searchFlag}
}
searchModels(models, searchTerms...)
os.Exit(0)
}
if *linkFlag {
// Make sure we're not running on a remote host by checking the API URL to ensure it contains localhost or 127.0.0.1
if !isLocalhost(cfg.OllamaAPIURL) {
fmt.Println("Error: Linking models is only supported on localhost")
os.Exit(1)
}
// link all models
for _, model := range models {
// if cfg.LMStudioFilePaths is empty, use the default path in the user's home directory / .cache / lm-studio / models
if cfg.LMStudioFilePaths == "" {
cfg.LMStudioFilePaths = filepath.Join(os.Getenv("HOME"), ".cache", "lm-studio", "models")
}
message, err := linkModel(model.Name, cfg.LMStudioFilePaths, false, client)
logging.InfoLogger.Println(message)
fmt.Printf("Linking model %s to %s\n", model.Name, cfg.LMStudioFilePaths)
if err != nil {
logging.ErrorLogger.Printf("Error linking model %s: %v\n", model.Name, err)
} else {
logging.InfoLogger.Printf("Model %s linked\n", model.Name)
}
}
os.Exit(0)
}
if *unloadModelsFlag {
// get any loaded models
client := app.client
ctx := context.Background()
loadedModels, err := client.ListRunning(ctx)
if err != nil {
logging.ErrorLogger.Printf("Error fetching running models: %v", err)
os.Exit(1)
}
// unload the models
var unloadedModels []string
for _, model := range loadedModels.Models {
_, err := unloadModel(client, model.Name)
if err != nil {
logging.ErrorLogger.Printf("Error unloading model %s: %v\n", model.Name, err)
} else {
unloadedModels = append(unloadedModels, lipgloss.NewStyle().Foreground(lipgloss.Color("#FFB6C1")).Render(model.Name))
logging.InfoLogger.Printf("Model %s unloaded\n", model.Name)
}
}
if len(unloadedModels) == 0 {
fmt.Println("No models to unload")
} else {
logging.InfoLogger.Printf("Unloaded models: %v\n", unloadedModels)
fmt.Printf("Unloaded models: %v\n", unloadedModels)
}
os.Exit(0)
}
if *editFlag {
if flag.NArg() == 0 {
fmt.Println("Usage: gollama -e <model_name>")
os.Exit(1)
}
modelName := flag.Args()[0]
editModelfile(client, modelName)
os.Exit(0)
}
// TUI App
l := list.New(items, NewItemDelegate(&app), width, height-5)
l.Title = "Ollama Models"
l.Help.Styles.ShortDesc.Bold(true)
l.Help.Styles.ShortDesc.UnsetFaint()
l.Help.Styles.ShortDesc.Foreground(lipgloss.Color("#FF00FF"))
l.Help.Styles.ShortDesc.Background(lipgloss.Color("#000000"))
l.Help.Styles.ShortDesc.Width(20)
l.Help.Styles.ShortDesc.Padding(0, 1)
l.Help.Styles.ShortDesc.Margin(0, 1)
l.Help.Styles.ShortDesc.Border(lipgloss.Border{Left: " ", Right: " "})
l.AdditionalShortHelpKeys = func() []key.Binding {
return []key.Binding{
keys.Space,
keys.Delete,
keys.SortByName,
keys.SortBySize,
keys.SortByModified,
keys.SortByQuant,
keys.SortByFamily,
keys.RunModel,
keys.ConfirmYes,
keys.ConfirmNo,
keys.LinkModel,
keys.LinkAllModels,
keys.CopyModel,
keys.PushModel,
keys.Top,
keys.EditModel,
keys.Help,
}
}
app.list = l
p := tea.NewProgram(&app, tea.WithAltScreen(), tea.WithMouseCellMotion())
if _, err := p.Run(); err != nil {
logging.ErrorLogger.Printf("Error: %v", err)
} else {
fmt.Print("\033[H\033[2J")
}
// Throw a warning if the users terminal cannot display colours
if !term.IsTerminal(int(os.Stdout.Fd())) {
fmt.Println("Warning: Your terminal does not support colours. Please consider using a terminal that does.")
}
p.ReleaseTerminal()
}