-
-
Notifications
You must be signed in to change notification settings - Fork 109
Expand file tree
/
Copy pathmodel.go
More file actions
51 lines (45 loc) · 1.43 KB
/
Copy pathmodel.go
File metadata and controls
51 lines (45 loc) · 1.43 KB
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
// model.go contains the Model struct which is used to represent the data for each item in the list view.
package main
import (
"fmt"
"time"
)
type Model struct {
Name string
ID string
Size float64
QuantizationLevel string
Modified time.Time
Selected bool
Family string
ParameterSize string
}
// EnhancedModelInfo contains detailed information from the Ollama show API
type EnhancedModelInfo struct {
ParameterSize string `json:"parameter_size"`
QuantizationLevel string `json:"quantization_level"`
Format string `json:"format"`
Family string `json:"family"`
ContextLength int64 `json:"context_length"`
EmbeddingLength int64 `json:"embedding_length"`
RopeDimensionCount int64 `json:"rope_dimension_count"`
RopeFreqBase float64 `json:"rope_freq_base"`
VocabSize int64 `json:"vocab_size"`
Capabilities []string `json:"capabilities"`
}
func (m Model) SelectedStr() string {
if m.Selected {
return "X"
}
return ""
}
func (m Model) Description() string {
paramSizeStr := ""
if m.ParameterSize != "" {
paramSizeStr = fmt.Sprintf(", Parameters: %s", m.ParameterSize)
}
return fmt.Sprintf("ID: %s, Size: %.2f GB, Quant: %s%s, Modified: %s", m.ID, m.Size, m.QuantizationLevel, paramSizeStr, m.Modified.Format("2006-01-02"))
}
func (m Model) FilterValue() string {
return m.Name
}