This repository has been archived by the owner on Jun 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 65
/
main.go
366 lines (314 loc) · 8.16 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
package main
import (
"encoding/json"
"fmt"
"io"
"log"
"net/http"
"os"
"path/filepath"
"regexp"
"sort"
"strconv"
"strings"
"sync"
. "github.com/go-skynet/LocalAI/pkg/gallery"
"gopkg.in/yaml.v3"
)
const indexFile = "huggingface.yaml"
var baseGalleryURL string = "github:go-skynet/model-gallery"
var baseConfig string = baseGalleryURL + "/base.yaml"
func StripErrorFromPointer[T any](value *T, errs ...error) *T {
if len(errs) > 0 && errs[0] != nil {
return nil
}
return value
}
type BaseDefinition struct {
Name string
Path string
Match *regexp.Regexp
}
// Currently these are matched top to bottom, with a break statement.
// What that means is if a model is named something like "LLama-Koala-Manticore-Wizard", whichever of those currently appears first in this list will "win".
// TODO: do we need a more sophisticated model than this?
// TODO: is the current list order even correct!
var baseDefinitions []BaseDefinition = []BaseDefinition{
{
Name: "koala",
Path: "koala",
},
{
Name: "koala",
Path: "koala",
},
{
Name: "manticore",
Path: "manticore",
},
{
Name: "vicuna",
Path: "vicuna",
},
{
Name: "airoboros",
Path: "airoboros",
},
{
Name: "hypermantis",
Path: "hypermantis",
},
{
Name: "guanaco",
Path: "guanaco",
},
{
Name: "openllama",
Path: "openllama_3b",
},
{
Name: "llama2-chat",
Path: "llama2-chat",
Match: StripErrorFromPointer(regexp.Compile(`llama-*2-*([\d]+b)?-*chat`)),
},
{
Name: "rwkv-world",
Path: "rwkv-world",
Match: StripErrorFromPointer(regexp.Compile(`rwkv.*world`)),
},
{
Name: "rwkv",
Path: "rwkv-20b",
},
{
Name: "wizard",
Path: "wizard",
},
{
Name: "hippogriff",
Path: "hippogriff",
},
}
type Model struct {
ModelID string `json:"modelId"`
Author string `json:"author"`
}
type CardData struct{}
type HFModel struct {
Author string `json:"author"`
CardData struct {
Inference bool `json:"inference"`
License string `json:"license"`
} `json:"cardData"`
Tags []string `json:"tags"`
Siblings []Sibling `json:"siblings"`
Files []File
}
type Sibling struct {
RFileName string `json:"rfilename"`
}
func getModel(modelID string) (HFModel, error) {
var files HFModel
resp, err := http.Get(fmt.Sprintf("https://huggingface.co/api/models/%s", modelID))
if err != nil {
return files, err
}
defer resp.Body.Close()
err = json.NewDecoder(resp.Body).Decode(&files)
if err != nil {
return files, err
}
return files, nil
}
func getSHA256(url string) (string, error) {
resp, err := http.Get(url)
if err != nil {
return "", fmt.Errorf("failed to fetch the web page: %v\n", err)
}
defer resp.Body.Close()
htmlData, err := io.ReadAll(resp.Body)
if err != nil {
return "", fmt.Errorf("failed to read the response body: %v\n", err)
}
shaRegex := regexp.MustCompile(`(?s)<strong>SHA256:</strong>\s+(.+?)</li>`)
match := shaRegex.FindSubmatch(htmlData)
if len(match) < 2 {
return "", fmt.Errorf("SHA256 value not found in the HTML. HTTP Status: %d", resp.StatusCode)
}
sha := string(match[1])
return sha, nil
}
func getModelFiles(repository string, modelFiles HFModel) (HFModel, error) {
f := []File{}
for _, sibling := range modelFiles.Siblings {
if !strings.HasSuffix(sibling.RFileName, ".bin") && !strings.HasSuffix(sibling.RFileName, ".gguf") {
continue
}
basePath := filepath.Base(sibling.RFileName)
if strings.HasPrefix(basePath, "pytorch") {
continue
}
fileURL := fmt.Sprintf("https://huggingface.co/%s/resolve/main/%s", repository, sibling.RFileName)
shaURL := fmt.Sprintf("https://huggingface.co/%s/blob/main/%s", repository, sibling.RFileName)
sha, err := getSHA256(shaURL)
if err != nil {
fmt.Println("Failed to get SHA for", sibling.RFileName, err)
// continue
}
f = append(f, File{
Filename: sibling.RFileName,
SHA256: sha,
URI: fileURL,
})
fmt.Println("Model file:", sibling.RFileName, sha)
}
modelFiles.Files = f
return modelFiles, nil
}
func scrape(concurrency int, modelIDs []string) []GalleryModel {
currentGallery := []GalleryModel{}
muLock := sync.Mutex{}
wg := new(sync.WaitGroup)
uris := make(chan string)
models := make(chan GalleryModel)
for i := 0; i < concurrency; i++ {
wg.Add(1)
go scraperWorker(wg, uris, models)
}
go func() {
for _, u := range modelIDs {
uris <- u
}
close(uris)
}()
doneChan := make(chan bool, 1)
go func() {
fmt.Println("getting models results")
for u := range models {
fmt.Println("appending", u.Name)
muLock.Lock()
currentGallery = append(currentGallery, u)
muLock.Unlock()
}
doneChan <- true
}()
wg.Wait()
close(models)
fmt.Println("Waiting for models")
<-doneChan
return currentGallery
}
func scraperWorker(wg *sync.WaitGroup, c chan string, g chan GalleryModel) {
defer wg.Done()
for model := range c {
// Step 3: Retrieve model files (siblings)
m, err := getModel(model)
if err != nil {
log.Println("Failed to retrieve files for model", model)
continue
}
// Step 4: Save the model files
mm, err := getModelFiles(model, m)
if err != nil {
log.Println("Failed to save files for model", model)
continue
}
for _, m := range mm.Files {
url := baseConfig
for _, v := range baseDefinitions {
// Check if the model name or filename matches this baseDefinition
if v.Match != nil {
// If an explicit Match regex exists, prefer that.
if v.Match.MatchString((strings.ToLower(m.Filename))) || v.Match.MatchString((strings.ToLower(model))) { // TODO Do we need anything fancier than a boolean match? Might be interesting to capture group the # of parameters and feed that into a template somehow...
url = fmt.Sprintf("%s/%s.yaml", baseGalleryURL, v.Path)
break
}
} else {
// Otherwise, fallback on the existing string match
if strings.Contains(strings.ToLower(m.Filename), v.Name) || strings.Contains(strings.ToLower(model), v.Name) {
url = fmt.Sprintf("%s/%s.yaml", baseGalleryURL, v.Path)
break
}
}
}
modelName := strings.ReplaceAll(strings.ToLower(fmt.Sprintf("%s/%s", model, m.Filename)), "/", "__")
g <- GalleryModel{
Name: modelName,
URLs: []string{fmt.Sprintf("https://huggingface.co/%s", model)},
License: mm.CardData.License,
Icon: "",
Overrides: map[string]interface{}{
"parameters": map[string]interface{}{
"model": m.Filename,
},
},
AdditionalFiles: []File{m},
URL: url,
Tags: mm.Tags,
}
}
}
}
func scrapeHuggingFace(term string, concurrency int, indexFile string) {
// Step 1: Get a list of all models
resp, err := http.Get(fmt.Sprintf("https://huggingface.co/api/models?search=%s", term))
if err != nil {
log.Fatal(err)
}
defer resp.Body.Close()
var modelList []Model
err = json.NewDecoder(resp.Body).Decode(&modelList)
if err != nil {
log.Fatal(err)
}
currentGallery := []GalleryModel{}
currentGalleryMap := map[string]GalleryModel{}
dat, err := os.ReadFile(indexFile)
if err == nil {
err = yaml.Unmarshal(dat, ¤tGallery)
if err != nil {
log.Fatal(err)
}
}
for _, model := range currentGallery {
currentGalleryMap[model.Name] = model
}
//gallery := []GalleryModel{}
ids := []string{}
// Step 2: Process each model and retrieve its files (siblings)
for _, model := range modelList {
ids = append(ids, model.ModelID)
}
fmt.Println("Processing", len(ids), "models")
gallery := scrape(concurrency, ids)
for _, model := range gallery {
currentGalleryMap[model.Name] = model
}
gallery = []GalleryModel{}
for _, g := range currentGalleryMap {
gallery = append(gallery, g)
}
sort.Slice(gallery, func(i, j int) bool {
return gallery[i].Name < gallery[j].Name
})
// Step 5: Save the gallery
galleryYAML, err := yaml.Marshal(gallery)
if err != nil {
log.Fatal(err)
}
os.WriteFile(indexFile, galleryYAML, 0644)
}
func parallelSearch(terms []string, concurrency int, indexFile string) {
for _, term := range terms {
scrapeHuggingFace(term, concurrency, indexFile)
}
}
func main() {
concurrency := 10
c := os.Getenv("CONCURRENCY")
parallelism, err := strconv.Atoi(c)
if err == nil {
concurrency = parallelism
}
parallelSearch([]string{"TheBloke", "ggml", "gguf"}, concurrency, indexFile)
}