diff --git a/.gitignore b/.gitignore index c23d454b..cb2bf660 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ /build/ /apipark .gitlab-ci.yml +/.vscode/ diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 88137b31..d8314486 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -10,6 +10,7 @@ variables: VIEW_ADDR: http://172.18.166.219:8288 SAVE_DIR: /opt/${APP} NODE_OPTIONS: --max_old_space_size=8192 + APIPARK_OLLAMA_BASE: http://127.0.0.1:11434 stages: - notice diff --git a/ai-provider/local/entity.go b/ai-provider/local/entity.go new file mode 100644 index 00000000..62afb622 --- /dev/null +++ b/ai-provider/local/entity.go @@ -0,0 +1,22 @@ +package ai_provider_local + +import "time" + +type Model struct { + Name string `json:"name"` + Model string `json:"model"` + ModifiedAt time.Time `json:"modified_at"` + Size int64 `json:"size"` + Digest string `json:"digest"` + Details ModelDetails `json:"details,omitempty"` +} + +// ModelDetails provides details about a model. +type ModelDetails struct { + ParentModel string `json:"parent_model"` + Format string `json:"format"` + Family string `json:"family"` + Families []string `json:"families"` + ParameterSize string `json:"parameter_size"` + QuantizationLevel string `json:"quantization_level"` +} diff --git a/ai-provider/local/executor.go b/ai-provider/local/executor.go new file mode 100644 index 00000000..56959ceb --- /dev/null +++ b/ai-provider/local/executor.go @@ -0,0 +1,336 @@ +package ai_provider_local + +import ( + "context" + "fmt" + "sync" + + "github.com/ollama/ollama/progress" + + "github.com/eolinker/eosc" + "github.com/ollama/ollama/api" +) + +var ( + taskExecutor = NewAsyncExecutor(100) +) + +// Pipeline 结构体,表示每个用户的管道 +type Pipeline struct { + id string + channel chan PullMessage + ctx context.Context + cancel context.CancelFunc +} + +func (p *Pipeline) Message() <-chan PullMessage { + return p.channel +} + +// AsyncExecutor 结构体,管理不同模型的管道和任务队列 +type AsyncExecutor struct { + ctx context.Context + cancel context.CancelFunc + mu sync.Mutex + pipelines map[string]*modelPipeline // 以模型为 key,存管道列表 + msgQueue chan messageTask // 消息队列 +} + +type modelPipeline struct { + ctx context.Context + cancel context.CancelFunc + pipelines eosc.Untyped[string, *Pipeline] + pullFn PullCallback + maxSize int +} + +func (m *modelPipeline) List() []*Pipeline { + return m.pipelines.List() +} + +func (m *modelPipeline) Get(id string) (*Pipeline, bool) { + return m.pipelines.Get(id) +} + +func (m *modelPipeline) Set(id string, p *Pipeline) error { + _, ok := m.pipelines.Get(id) + if !ok { + if m.pipelines.Count() > m.maxSize { + return fmt.Errorf("pipeline size exceed %d", m.maxSize) + } + } + m.pipelines.Set(id, p) + return nil +} + +func (m *modelPipeline) AddPipeline(id string) (*Pipeline, error) { + ctx, cancel := context.WithCancel(m.ctx) + pipeline := &Pipeline{ + ctx: ctx, + cancel: cancel, + id: id, + channel: make(chan PullMessage, 10), // 带缓冲,防止阻塞 + } + err := m.Set(id, pipeline) + if err != nil { + return nil, err + } + return pipeline, nil +} + +func (m *modelPipeline) Close() { + m.cancel() + ids := m.pipelines.Keys() + for _, id := range ids { + m.ClosePipeline(id) + } + return +} + +func (m *modelPipeline) ClosePipeline(id string) { + // 关闭管道 + p, has := m.pipelines.Del(id) + if !has { + return + } + p.cancel() + close(p.channel) +} + +func newModelPipeline(ctx context.Context, maxSize int) *modelPipeline { + ctx, cancel := context.WithCancel(ctx) + return &modelPipeline{ + pipelines: eosc.BuildUntyped[string, *Pipeline](), + ctx: ctx, + cancel: cancel, + maxSize: maxSize, + } +} + +// messageTask 结构体,包含模型名和消息内容 +type messageTask struct { + message PullMessage +} + +type PullMessage struct { + Model string + Status string + Digest string + Total int64 + Completed int64 + Msg string +} + +// NewAsyncExecutor 创建一个新的异步任务执行器 +func NewAsyncExecutor(queueSize int) *AsyncExecutor { + ctx, cancel := context.WithCancel(context.Background()) + executor := &AsyncExecutor{ + ctx: ctx, + cancel: cancel, + pipelines: make(map[string]*modelPipeline), // 以模型为 key,存管道列表 + msgQueue: make(chan messageTask, queueSize), + } + executor.StartMessageDistributor() + + return executor +} + +func (e *AsyncExecutor) GetModelPipeline(model string) (*modelPipeline, bool) { + e.mu.Lock() + defer e.mu.Unlock() + + mp, ok := e.pipelines[model] + return mp, ok +} + +func (e *AsyncExecutor) SetModelPipeline(model string, mp *modelPipeline) { + e.mu.Lock() + defer e.mu.Unlock() + e.pipelines[model] = mp +} + +// ClosePipeline 关闭管道并移除 +func (e *AsyncExecutor) ClosePipeline(model string, id string) { + e.mu.Lock() + defer e.mu.Unlock() + mp, ok := e.pipelines[model] + if !ok { + return + } + mp.ClosePipeline(id) +} + +// CloseModelPipeline 关闭当前模型所有管道 +func (e *AsyncExecutor) CloseModelPipeline(model string) { + e.mu.Lock() + defer e.mu.Unlock() + mp, ok := e.pipelines[model] + if !ok { + return + } + mp.Close() + delete(e.pipelines, model) +} + +// StartMessageDistributor 启动消息分发器 +func (e *AsyncExecutor) StartMessageDistributor() { + go func() { + for task := range e.msgQueue { + msg := task.message + e.DistributeToModelPipelines(msg.Model, msg) + if msg.Status == "error" || msg.Status == "success" { + mp, has := e.GetModelPipeline(msg.Model) + if has && mp.pullFn != nil { + mp.pullFn(msg) + } + e.CloseModelPipeline(msg.Model) + continue + } + } + }() +} + +// DistributeToModelPipelines 仅将消息分发给指定模型的管道 +func (e *AsyncExecutor) DistributeToModelPipelines(model string, msg PullMessage) { + e.mu.Lock() + defer e.mu.Unlock() + pipelines, ok := e.pipelines[model] + if !ok { + return + } + for _, pipeline := range pipelines.List() { + select { + case pipeline.channel <- msg: + default: + // 如果管道已满,跳过 + } + } +} + +type PullCallback func(msg PullMessage) error + +func PullModel(model string, id string, fn PullCallback) (*Pipeline, error) { + if client == nil { + return nil, fmt.Errorf("client not initialized") + } + mp, has := taskExecutor.GetModelPipeline(model) + if !has { + mp = newModelPipeline(taskExecutor.ctx, 100) + mp.pullFn = fn + taskExecutor.SetModelPipeline(model, mp) + } + p, err := mp.AddPipeline(id) + if err != nil { + return nil, err + } + if !has { + var status string + bars := make(map[string]*progress.Bar) + fn := func(resp api.ProgressResponse) error { + if resp.Digest != "" { + bar, ok := bars[resp.Digest] + if !ok { + bar = progress.NewBar(fmt.Sprintf("pulling %s...", resp.Digest[7:19]), resp.Total, resp.Completed) + bars[resp.Digest] = bar + } + bar.Set(resp.Completed) + + taskExecutor.msgQueue <- messageTask{ + message: PullMessage{ + Model: model, + Digest: resp.Digest, + Total: resp.Total, + Completed: resp.Completed, + Msg: bar.String(), + Status: resp.Status, + }, + } + } else if status != resp.Status { + taskExecutor.msgQueue <- messageTask{ + message: PullMessage{ + Model: model, + Digest: resp.Digest, + Total: resp.Total, + Completed: resp.Completed, + Msg: status, + Status: resp.Status, + }, + } + } + + return nil + } + go func() { + err = client.Pull(mp.ctx, &api.PullRequest{Model: model}, fn) + if err != nil { + taskExecutor.msgQueue <- messageTask{ + message: PullMessage{ + Model: model, + Status: "error", + Digest: "", + Total: 0, + Completed: 0, + Msg: err.Error(), + }, + } + } + }() + + } + + return p, nil +} + +func StopPull(model string) { + if client == nil { + return + } + taskExecutor.CloseModelPipeline(model) +} + +func CancelPipeline(model string, id string) { + taskExecutor.ClosePipeline(model, id) +} + +func RemoveModel(model string) error { + if client == nil { + return fmt.Errorf("client not initialized") + } + taskExecutor.CloseModelPipeline(model) + err := client.Delete(context.Background(), &api.DeleteRequest{Model: model}) + if err != nil { + if err.Error() == fmt.Sprintf("model '%s' not found", model) { + return nil + } + } + return err +} + +func ModelsInstalled() ([]Model, error) { + if client == nil { + return nil, fmt.Errorf("client not initialized") + } + result, err := client.List(context.Background()) + if err != nil { + return nil, err + } + models := make([]Model, 0, len(result.Models)) + for _, m := range result.Models { + models = append(models, Model{ + Name: m.Name, + Model: m.Model, + ModifiedAt: m.ModifiedAt, + Size: m.Size, + Digest: m.Digest, + Details: ModelDetails{ + ParentModel: m.Details.ParentModel, + Format: m.Details.Format, + Family: m.Details.Family, + Families: m.Details.Families, + ParameterSize: m.Details.ParameterSize, + QuantizationLevel: m.Details.QuantizationLevel, + }, + }) + } + return models, nil +} diff --git a/ai-provider/local/executor_test.go b/ai-provider/local/executor_test.go new file mode 100644 index 00000000..dc11060f --- /dev/null +++ b/ai-provider/local/executor_test.go @@ -0,0 +1,80 @@ +package ai_provider_local + +import ( + "fmt" + "io" + "net/http" + "testing" + + "github.com/gin-contrib/gzip" + + "github.com/eolinker/eosc/log" + + "github.com/google/uuid" + + "github.com/gin-gonic/gin" +) + +func TestPullModel(t *testing.T) { + // 创建 Gin 引擎 + r := gin.Default() + r.Use(gzip.Gzip(gzip.DefaultCompression)) + // 设置路由,监听 "/stream" 路径 + r.GET("/stream", streamHandler) + r.GET("/stop", stopPull) + r.GET("/models", models) + + // 启动 HTTP 服务器 + r.Run(":11180") +} + +func streamHandler(c *gin.Context) { + // 创建一个通道,用于监测客户端关闭连接的信号 + model := c.Query("model") + p, err := PullModel(model, uuid.NewString(), nil) + if err != nil { + c.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()}) + return + } + done := make(chan struct{}) + // 启动一个 goroutine 监听客户端关闭连接 + go func() { + select { + case <-c.Writer.CloseNotify(): + log.Info("client closed connection,close pipeline") + taskExecutor.ClosePipeline(model, p.id) + case <-done: + } + }() + + c.Stream(func(w io.Writer) bool { + select { + case msg, ok := <-p.channel: + if !ok { + return false + } + _, err := w.Write([]byte(fmt.Sprintf("%s\n", msg.Msg))) + if err != nil { + log.Error("write message error: %v", err) + return false + } + return true + } + }) + done <- struct{}{} +} + +func stopPull(c *gin.Context) { + model := c.Query("model") + StopPull(model) + c.JSON(http.StatusOK, gin.H{"message": "stop pull model"}) +} + +func models(c *gin.Context) { + ms, err := ModelsInstalled() + if err != nil { + c.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()}) + return + } + c.JSON(http.StatusOK, gin.H{"models": ms}) +} diff --git a/ai-provider/local/local.go b/ai-provider/local/local.go new file mode 100644 index 00000000..5e084eeb --- /dev/null +++ b/ai-provider/local/local.go @@ -0,0 +1,21 @@ +package ai_provider_local + +import ( + "net/http" + "net/url" + + "github.com/ollama/ollama/api" +) + +var ( + client *api.Client +) + +func ResetOllamaAddress(address string) error { + u, err := url.Parse(address) + if err != nil { + return err + } + client = api.NewClient(u, http.DefaultClient) + return nil +} diff --git a/ai-provider/local/model.go b/ai-provider/local/model.go new file mode 100644 index 00000000..9f0cad69 --- /dev/null +++ b/ai-provider/local/model.go @@ -0,0 +1,70 @@ +package ai_provider_local + +import ( + "embed" + "encoding/json" + "strings" + + "github.com/eolinker/eosc/log" +) + +var ( + //go:embed models.json + modelsFs embed.FS + modelCanInstall []ModelDetail + modelVersion string + modelTags = make(map[string][]ModelDetail) +) + +type ModelConfig struct { + Models []ModelDetail `json:"models"` + Version string `json:"version"` +} + +type ModelDetail struct { + Id string `json:"id"` + Name string `json:"name"` + Description string `json:"description"` + Size string `json:"size"` + Digest string `json:"digest"` + Provider string `json:"provider"` + IsPopular bool `json:"is_popular"` + Latest bool `json:"latest"` +} + +func init() { + data, err := modelsFs.ReadFile("models.json") + if err != nil { + log.Info("read models.json error: ", err) + return + } + var cfg ModelConfig + err = json.Unmarshal(data, &cfg) + if err != nil { + log.Info("unmarshal models.json error: ", err) + return + } + modelVersion = cfg.Version + modelCanInstall = make([]ModelDetail, 0, len(cfg.Models)) + for _, model := range cfg.Models { + if _, ok := modelTags[model.Id]; !ok { + modelTags[model.Id] = make([]ModelDetail, 0) + } + names := strings.Split(model.Id, ":") + + modelTags[names[0]] = append(modelTags[names[0]], model) + if !model.Latest { + continue + } + modelCanInstall = append(modelCanInstall, model) + } + +} + +func ModelsCanInstall() ([]ModelDetail, string) { + return modelCanInstall, modelVersion +} + +func ModelsCanInstallById(id string) []ModelDetail { + return modelTags[id] +} diff --git a/ai-provider/local/model_test.go b/ai-provider/local/model_test.go new file mode 100644 index 00000000..338bf42c --- /dev/null +++ b/ai-provider/local/model_test.go @@ -0,0 +1,7 @@ +package ai_provider_local + +import "testing" + +func TestModels(t *testing.T) { + t.Log(ModelsCanInstall()) +} diff --git a/ai-provider/local/models.json b/ai-provider/local/models.json new file mode 100644 index 00000000..74fea8d1 --- /dev/null +++ b/ai-provider/local/models.json @@ -0,0 +1,64585 @@ +{ + "models": [ + { + "id": "deepseek-r1", + "name": "deepseek-r1", + "description": "DeepSeek's first-generation of reasoning models with comparable performance to OpenAI-o1, including six dense models distilled from DeepSeek-R1 based on Llama and Qwen.", + "size": "4.7GB", + "digest": "0a8c26691023", + "provider": "", + "is_popular": true, + "latest": true + }, + { + "id": "deepseek-r1:1.5b", + "name": "deepseek-r1:1.5b", + "description": "DeepSeek's first-generation of reasoning models with comparable performance to OpenAI-o1, including six dense models distilled from DeepSeek-R1 based on Llama and Qwen.", + "size": "1.1GB", + "digest": "a42b25d8c10a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-r1:7b", + "name": "deepseek-r1:7b", + "description": "DeepSeek's first-generation of reasoning models with comparable performance to OpenAI-o1, including six dense models distilled from DeepSeek-R1 based on Llama and Qwen.", + "size": "4.7GB", + "digest": "0a8c26691023", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-r1:8b", + "name": "deepseek-r1:8b", + "description": "DeepSeek's first-generation of reasoning models with comparable performance to OpenAI-o1, including six dense models distilled from DeepSeek-R1 based on Llama and Qwen.", + "size": "4.9GB", + "digest": "28f8fd6cdc67", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-r1:14b", + "name": "deepseek-r1:14b", + "description": "DeepSeek's first-generation of reasoning models with comparable performance to OpenAI-o1, including six dense models distilled from DeepSeek-R1 based on Llama and Qwen.", + "size": "9.0GB", + "digest": "ea35dfe18182", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-r1:32b", + "name": "deepseek-r1:32b", + "description": "DeepSeek's first-generation of reasoning models with comparable performance to OpenAI-o1, including six dense models distilled from DeepSeek-R1 based on Llama and Qwen.", + "size": "20GB", + "digest": "38056bbcbb2d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-r1:70b", + "name": "deepseek-r1:70b", + "description": "DeepSeek's first-generation of reasoning models with comparable performance to OpenAI-o1, including six dense models distilled from DeepSeek-R1 based on Llama and Qwen.", + "size": "43GB", + "digest": "0c1615a8ca32", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-r1:671b", + "name": "deepseek-r1:671b", + "description": "DeepSeek's first-generation of reasoning models with comparable performance to OpenAI-o1, including six dense models distilled from DeepSeek-R1 based on Llama and Qwen.", + "size": "404GB", + "digest": "739e1b229ad7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-r1:1.5b-qwen-distill-fp16", + "name": "deepseek-r1:1.5b-qwen-distill-fp16", + "description": "DeepSeek's first-generation of reasoning models with comparable performance to OpenAI-o1, including six dense models distilled from DeepSeek-R1 based on Llama and Qwen.", + "size": "3.6GB", + "digest": "b3e50d21d5a9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-r1:1.5b-qwen-distill-q4_K_M", + "name": "deepseek-r1:1.5b-qwen-distill-q4_K_M", + "description": "DeepSeek's first-generation of reasoning models with comparable performance to OpenAI-o1, including six dense models distilled from DeepSeek-R1 based on Llama and Qwen.", + "size": "1.1GB", + "digest": "a42b25d8c10a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-r1:1.5b-qwen-distill-q8_0", + "name": "deepseek-r1:1.5b-qwen-distill-q8_0", + "description": "DeepSeek's first-generation of reasoning models with comparable performance to OpenAI-o1, including six dense models distilled from DeepSeek-R1 based on Llama and Qwen.", + "size": "1.9GB", + "digest": "be5781997fd9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-r1:14b-qwen-distill-fp16", + "name": "deepseek-r1:14b-qwen-distill-fp16", + "description": "DeepSeek's first-generation of reasoning models with comparable performance to OpenAI-o1, including six dense models distilled from DeepSeek-R1 based on Llama and Qwen.", + "size": "30GB", + "digest": "1f1bddb1a1a2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-r1:14b-qwen-distill-q4_K_M", + "name": "deepseek-r1:14b-qwen-distill-q4_K_M", + "description": "DeepSeek's first-generation of reasoning models with comparable performance to OpenAI-o1, including six dense models distilled from DeepSeek-R1 based on Llama and Qwen.", + "size": "9.0GB", + "digest": "ea35dfe18182", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-r1:14b-qwen-distill-q8_0", + "name": "deepseek-r1:14b-qwen-distill-q8_0", + "description": "DeepSeek's first-generation of reasoning models with comparable performance to OpenAI-o1, including six dense models distilled from DeepSeek-R1 based on Llama and Qwen.", + "size": "16GB", + "digest": "022efe288297", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-r1:32b-qwen-distill-fp16", + "name": "deepseek-r1:32b-qwen-distill-fp16", + "description": "DeepSeek's first-generation of reasoning models with comparable performance to OpenAI-o1, including six dense models distilled from DeepSeek-R1 based on Llama and Qwen.", + "size": "66GB", + "digest": "141ef25faf00", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-r1:32b-qwen-distill-q4_K_M", + "name": "deepseek-r1:32b-qwen-distill-q4_K_M", + "description": "DeepSeek's first-generation of reasoning models with comparable performance to OpenAI-o1, including six dense models distilled from DeepSeek-R1 based on Llama and Qwen.", + "size": "20GB", + "digest": "38056bbcbb2d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-r1:32b-qwen-distill-q8_0", + "name": "deepseek-r1:32b-qwen-distill-q8_0", + "description": "DeepSeek's first-generation of reasoning models with comparable performance to OpenAI-o1, including six dense models distilled from DeepSeek-R1 based on Llama and Qwen.", + "size": "35GB", + "digest": "aed2818831dd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-r1:671b-fp16", + "name": "deepseek-r1:671b-fp16", + "description": "DeepSeek's first-generation of reasoning models with comparable performance to OpenAI-o1, including six dense models distilled from DeepSeek-R1 based on Llama and Qwen.", + "size": "1.3TB", + "digest": "3e2622881ef5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-r1:671b-q4_K_M", + "name": "deepseek-r1:671b-q4_K_M", + "description": "DeepSeek's first-generation of reasoning models with comparable performance to OpenAI-o1, including six dense models distilled from DeepSeek-R1 based on Llama and Qwen.", + "size": "404GB", + "digest": "739e1b229ad7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-r1:671b-q8_0", + "name": "deepseek-r1:671b-q8_0", + "description": "DeepSeek's first-generation of reasoning models with comparable performance to OpenAI-o1, including six dense models distilled from DeepSeek-R1 based on Llama and Qwen.", + "size": "713GB", + "digest": "ab9331000874", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-r1:70b-llama-distill-fp16", + "name": "deepseek-r1:70b-llama-distill-fp16", + "description": "DeepSeek's first-generation of reasoning models with comparable performance to OpenAI-o1, including six dense models distilled from DeepSeek-R1 based on Llama and Qwen.", + "size": "141GB", + "digest": "5c3319143a79", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-r1:70b-llama-distill-q4_K_M", + "name": "deepseek-r1:70b-llama-distill-q4_K_M", + "description": "DeepSeek's first-generation of reasoning models with comparable performance to OpenAI-o1, including six dense models distilled from DeepSeek-R1 based on Llama and Qwen.", + "size": "43GB", + "digest": "0c1615a8ca32", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-r1:70b-llama-distill-q8_0", + "name": "deepseek-r1:70b-llama-distill-q8_0", + "description": "DeepSeek's first-generation of reasoning models with comparable performance to OpenAI-o1, including six dense models distilled from DeepSeek-R1 based on Llama and Qwen.", + "size": "75GB", + "digest": "cc1ba146470d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-r1:7b-qwen-distill-fp16", + "name": "deepseek-r1:7b-qwen-distill-fp16", + "description": "DeepSeek's first-generation of reasoning models with comparable performance to OpenAI-o1, including six dense models distilled from DeepSeek-R1 based on Llama and Qwen.", + "size": "15GB", + "digest": "fb45459f46e6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-r1:7b-qwen-distill-q4_K_M", + "name": "deepseek-r1:7b-qwen-distill-q4_K_M", + "description": "DeepSeek's first-generation of reasoning models with comparable performance to OpenAI-o1, including six dense models distilled from DeepSeek-R1 based on Llama and Qwen.", + "size": "4.7GB", + "digest": "0a8c26691023", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-r1:7b-qwen-distill-q8_0", + "name": "deepseek-r1:7b-qwen-distill-q8_0", + "description": "DeepSeek's first-generation of reasoning models with comparable performance to OpenAI-o1, including six dense models distilled from DeepSeek-R1 based on Llama and Qwen.", + "size": "8.1GB", + "digest": "0bcb1414f90e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-r1:8b-llama-distill-fp16", + "name": "deepseek-r1:8b-llama-distill-fp16", + "description": "DeepSeek's first-generation of reasoning models with comparable performance to OpenAI-o1, including six dense models distilled from DeepSeek-R1 based on Llama and Qwen.", + "size": "16GB", + "digest": "b15636d30796", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-r1:8b-llama-distill-q4_K_M", + "name": "deepseek-r1:8b-llama-distill-q4_K_M", + "description": "DeepSeek's first-generation of reasoning models with comparable performance to OpenAI-o1, including six dense models distilled from DeepSeek-R1 based on Llama and Qwen.", + "size": "4.9GB", + "digest": "28f8fd6cdc67", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-r1:8b-llama-distill-q8_0", + "name": "deepseek-r1:8b-llama-distill-q8_0", + "description": "DeepSeek's first-generation of reasoning models with comparable performance to OpenAI-o1, including six dense models distilled from DeepSeek-R1 based on Llama and Qwen.", + "size": "8.5GB", + "digest": "0db4dcd4c434", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.3", + "name": "llama3.3", + "description": "New state of the art 70B model. Llama 3.3 70B offers similar performance compared to the Llama 3.1 405B model.", + "size": "43GB", + "digest": "a6eb4748fd29", + "provider": "", + "is_popular": true, + "latest": true + }, + { + "id": "llama3.3:70b", + "name": "llama3.3:70b", + "description": "New state of the art 70B model. Llama 3.3 70B offers similar performance compared to the Llama 3.1 405B model.", + "size": "43GB", + "digest": "a6eb4748fd29", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.3:70b-instruct-fp16", + "name": "llama3.3:70b-instruct-fp16", + "description": "New state of the art 70B model. Llama 3.3 70B offers similar performance compared to the Llama 3.1 405B model.", + "size": "141GB", + "digest": "8fbd361705a0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.3:70b-instruct-q2_K", + "name": "llama3.3:70b-instruct-q2_K", + "description": "New state of the art 70B model. Llama 3.3 70B offers similar performance compared to the Llama 3.1 405B model.", + "size": "26GB", + "digest": "a6f03da15cbc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.3:70b-instruct-q3_K_M", + "name": "llama3.3:70b-instruct-q3_K_M", + "description": "New state of the art 70B model. Llama 3.3 70B offers similar performance compared to the Llama 3.1 405B model.", + "size": "34GB", + "digest": "151348be3103", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.3:70b-instruct-q3_K_S", + "name": "llama3.3:70b-instruct-q3_K_S", + "description": "New state of the art 70B model. Llama 3.3 70B offers similar performance compared to the Llama 3.1 405B model.", + "size": "31GB", + "digest": "84d6ecd40b42", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.3:70b-instruct-q4_0", + "name": "llama3.3:70b-instruct-q4_0", + "description": "New state of the art 70B model. Llama 3.3 70B offers similar performance compared to the Llama 3.1 405B model.", + "size": "40GB", + "digest": "e5afe30ba419", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.3:70b-instruct-q4_K_M", + "name": "llama3.3:70b-instruct-q4_K_M", + "description": "New state of the art 70B model. Llama 3.3 70B offers similar performance compared to the Llama 3.1 405B model.", + "size": "43GB", + "digest": "a6eb4748fd29", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.3:70b-instruct-q4_K_S", + "name": "llama3.3:70b-instruct-q4_K_S", + "description": "New state of the art 70B model. Llama 3.3 70B offers similar performance compared to the Llama 3.1 405B model.", + "size": "40GB", + "digest": "3d546a04bbd5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.3:70b-instruct-q5_0", + "name": "llama3.3:70b-instruct-q5_0", + "description": "New state of the art 70B model. Llama 3.3 70B offers similar performance compared to the Llama 3.1 405B model.", + "size": "49GB", + "digest": "522f1b464c62", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.3:70b-instruct-q5_1", + "name": "llama3.3:70b-instruct-q5_1", + "description": "New state of the art 70B model. Llama 3.3 70B offers similar performance compared to the Llama 3.1 405B model.", + "size": "53GB", + "digest": "118a0cbe95b2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.3:70b-instruct-q5_K_M", + "name": "llama3.3:70b-instruct-q5_K_M", + "description": "New state of the art 70B model. Llama 3.3 70B offers similar performance compared to the Llama 3.1 405B model.", + "size": "50GB", + "digest": "a495e09a0513", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.3:70b-instruct-q6_K", + "name": "llama3.3:70b-instruct-q6_K", + "description": "New state of the art 70B model. Llama 3.3 70B offers similar performance compared to the Llama 3.1 405B model.", + "size": "58GB", + "digest": "992c05c90cd8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.3:70b-instruct-q8_0", + "name": "llama3.3:70b-instruct-q8_0", + "description": "New state of the art 70B model. Llama 3.3 70B offers similar performance compared to the Llama 3.1 405B model.", + "size": "75GB", + "digest": "d5b5e1b84868", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi4", + "name": "phi4", + "description": "Phi-4 is a 14B parameter, state-of-the-art open model from Microsoft.", + "size": "9.1GB", + "digest": "ac896e5b8b34", + "provider": "", + "is_popular": true, + "latest": true + }, + { + "id": "phi4:14b", + "name": "phi4:14b", + "description": "Phi-4 is a 14B parameter, state-of-the-art open model from Microsoft.", + "size": "9.1GB", + "digest": "ac896e5b8b34", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi4:14b-fp16", + "name": "phi4:14b-fp16", + "description": "Phi-4 is a 14B parameter, state-of-the-art open model from Microsoft.", + "size": "29GB", + "digest": "227695f919b5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi4:14b-q4_K_M", + "name": "phi4:14b-q4_K_M", + "description": "Phi-4 is a 14B parameter, state-of-the-art open model from Microsoft.", + "size": "9.1GB", + "digest": "ac896e5b8b34", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi4:14b-q8_0", + "name": "phi4:14b-q8_0", + "description": "Phi-4 is a 14B parameter, state-of-the-art open model from Microsoft.", + "size": "16GB", + "digest": "310d366232f4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2", + "name": "llama3.2", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "2.0GB", + "digest": "a80c4f17acd5", + "provider": "", + "is_popular": true, + "latest": true + }, + { + "id": "llama3.2:1b", + "name": "llama3.2:1b", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "1.3GB", + "digest": "baf6a787fdff", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:3b", + "name": "llama3.2:3b", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "2.0GB", + "digest": "a80c4f17acd5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:1b-instruct-fp16", + "name": "llama3.2:1b-instruct-fp16", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "2.5GB", + "digest": "2887c3d03e74", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:1b-instruct-q2_K", + "name": "llama3.2:1b-instruct-q2_K", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "581MB", + "digest": "3718017cfd4e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:1b-instruct-q3_K_L", + "name": "llama3.2:1b-instruct-q3_K_L", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "733MB", + "digest": "1a709e91d2fb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:1b-instruct-q3_K_M", + "name": "llama3.2:1b-instruct-q3_K_M", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "691MB", + "digest": "8459ea7be88f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:1b-instruct-q3_K_S", + "name": "llama3.2:1b-instruct-q3_K_S", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "642MB", + "digest": "109ea9f8f55f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:1b-instruct-q4_0", + "name": "llama3.2:1b-instruct-q4_0", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "771MB", + "digest": "53f2745c8077", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:1b-instruct-q4_1", + "name": "llama3.2:1b-instruct-q4_1", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "832MB", + "digest": "6163c9206d44", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:1b-instruct-q4_K_M", + "name": "llama3.2:1b-instruct-q4_K_M", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "808MB", + "digest": "22bc6b92eb01", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:1b-instruct-q4_K_S", + "name": "llama3.2:1b-instruct-q4_K_S", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "776MB", + "digest": "f56eaefc2343", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:1b-instruct-q5_0", + "name": "llama3.2:1b-instruct-q5_0", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "893MB", + "digest": "e903048bd12a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:1b-instruct-q5_1", + "name": "llama3.2:1b-instruct-q5_1", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "953MB", + "digest": "910be2666935", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:1b-instruct-q5_K_M", + "name": "llama3.2:1b-instruct-q5_K_M", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "912MB", + "digest": "3df5a9009be6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:1b-instruct-q5_K_S", + "name": "llama3.2:1b-instruct-q5_K_S", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "893MB", + "digest": "751fb3907a1a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:1b-instruct-q6_K", + "name": "llama3.2:1b-instruct-q6_K", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "1.0GB", + "digest": "4a2e49e49240", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:1b-instruct-q8_0", + "name": "llama3.2:1b-instruct-q8_0", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "1.3GB", + "digest": "baf6a787fdff", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:1b-text-fp16", + "name": "llama3.2:1b-text-fp16", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "2.5GB", + "digest": "562d60c68b3d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:1b-text-q2_K", + "name": "llama3.2:1b-text-q2_K", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "581MB", + "digest": "1e2a8fc966e5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:1b-text-q3_K_L", + "name": "llama3.2:1b-text-q3_K_L", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "733MB", + "digest": "62d0627d1f48", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:1b-text-q3_K_M", + "name": "llama3.2:1b-text-q3_K_M", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "691MB", + "digest": "3bbcd4bb53ad", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:1b-text-q3_K_S", + "name": "llama3.2:1b-text-q3_K_S", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "642MB", + "digest": "c74a13c9d01e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:1b-text-q4_0", + "name": "llama3.2:1b-text-q4_0", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "771MB", + "digest": "33ce72b3b1b1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:1b-text-q4_1", + "name": "llama3.2:1b-text-q4_1", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "832MB", + "digest": "280b5553539c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:1b-text-q4_K_M", + "name": "llama3.2:1b-text-q4_K_M", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "808MB", + "digest": "131cc658d843", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:1b-text-q4_K_S", + "name": "llama3.2:1b-text-q4_K_S", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "776MB", + "digest": "06bf8ed406f1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:1b-text-q5_0", + "name": "llama3.2:1b-text-q5_0", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "893MB", + "digest": "b51a18e69a04", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:1b-text-q5_1", + "name": "llama3.2:1b-text-q5_1", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "953MB", + "digest": "b495a5b181dd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:1b-text-q5_K_M", + "name": "llama3.2:1b-text-q5_K_M", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "912MB", + "digest": "87388f217df5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:1b-text-q5_K_S", + "name": "llama3.2:1b-text-q5_K_S", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "893MB", + "digest": "297b115ffc1d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:1b-text-q6_K", + "name": "llama3.2:1b-text-q6_K", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "1.0GB", + "digest": "8ed38933c055", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:1b-text-q8_0", + "name": "llama3.2:1b-text-q8_0", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "1.3GB", + "digest": "943f46940dae", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:3b-instruct-fp16", + "name": "llama3.2:3b-instruct-fp16", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "6.4GB", + "digest": "195a8c01d91e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:3b-instruct-q2_K", + "name": "llama3.2:3b-instruct-q2_K", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "1.4GB", + "digest": "43e1dcc10fd4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:3b-instruct-q3_K_L", + "name": "llama3.2:3b-instruct-q3_K_L", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "1.8GB", + "digest": "adcbc7b3c10e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:3b-instruct-q3_K_M", + "name": "llama3.2:3b-instruct-q3_K_M", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "1.7GB", + "digest": "fea4b4677930", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:3b-instruct-q3_K_S", + "name": "llama3.2:3b-instruct-q3_K_S", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "1.5GB", + "digest": "860e23062c32", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:3b-instruct-q4_0", + "name": "llama3.2:3b-instruct-q4_0", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "1.9GB", + "digest": "9b9453afbdd6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:3b-instruct-q4_1", + "name": "llama3.2:3b-instruct-q4_1", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "2.1GB", + "digest": "c910c5139ab6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:3b-instruct-q4_K_M", + "name": "llama3.2:3b-instruct-q4_K_M", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "2.0GB", + "digest": "a80c4f17acd5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:3b-instruct-q4_K_S", + "name": "llama3.2:3b-instruct-q4_K_S", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "1.9GB", + "digest": "80f2089878c9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:3b-instruct-q5_0", + "name": "llama3.2:3b-instruct-q5_0", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "2.3GB", + "digest": "fa2b62a5f96d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:3b-instruct-q5_1", + "name": "llama3.2:3b-instruct-q5_1", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "2.4GB", + "digest": "0452394ac7c9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:3b-instruct-q5_K_M", + "name": "llama3.2:3b-instruct-q5_K_M", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "2.3GB", + "digest": "7709c7357e6d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:3b-instruct-q5_K_S", + "name": "llama3.2:3b-instruct-q5_K_S", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "2.3GB", + "digest": "97ef2f873c2c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:3b-instruct-q6_K", + "name": "llama3.2:3b-instruct-q6_K", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "2.6GB", + "digest": "355f7bc7ff61", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:3b-instruct-q8_0", + "name": "llama3.2:3b-instruct-q8_0", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "3.4GB", + "digest": "e410b836fe61", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:3b-text-fp16", + "name": "llama3.2:3b-text-fp16", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "6.4GB", + "digest": "b9cec48fca20", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:3b-text-q2_K", + "name": "llama3.2:3b-text-q2_K", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "1.4GB", + "digest": "dd1eb967998d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:3b-text-q3_K_L", + "name": "llama3.2:3b-text-q3_K_L", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "1.8GB", + "digest": "4e8b52d4f25e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:3b-text-q3_K_M", + "name": "llama3.2:3b-text-q3_K_M", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "1.7GB", + "digest": "c0f8d9281394", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:3b-text-q3_K_S", + "name": "llama3.2:3b-text-q3_K_S", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "1.5GB", + "digest": "4b3d962d7792", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:3b-text-q4_0", + "name": "llama3.2:3b-text-q4_0", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "1.9GB", + "digest": "d7842f3d2c28", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:3b-text-q4_1", + "name": "llama3.2:3b-text-q4_1", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "2.1GB", + "digest": "7c21a62209c3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:3b-text-q4_K_M", + "name": "llama3.2:3b-text-q4_K_M", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "2.0GB", + "digest": "632997a5a262", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:3b-text-q4_K_S", + "name": "llama3.2:3b-text-q4_K_S", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "1.9GB", + "digest": "8265cd0d8cf7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:3b-text-q5_0", + "name": "llama3.2:3b-text-q5_0", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "2.3GB", + "digest": "3f80b071deb8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:3b-text-q5_1", + "name": "llama3.2:3b-text-q5_1", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "2.4GB", + "digest": "4f906c782668", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:3b-text-q5_K_M", + "name": "llama3.2:3b-text-q5_K_M", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "2.3GB", + "digest": "5115e096cd33", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:3b-text-q5_K_S", + "name": "llama3.2:3b-text-q5_K_S", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "2.3GB", + "digest": "ca4813388da9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:3b-text-q6_K", + "name": "llama3.2:3b-text-q6_K", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "2.6GB", + "digest": "2cc9f183bdd4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2:3b-text-q8_0", + "name": "llama3.2:3b-text-q8_0", + "description": "Meta's Llama 3.2 goes small with 1B and 3B models.", + "size": "3.4GB", + "digest": "945fcc4a41b8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1", + "name": "llama3.1", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "4.9GB", + "digest": "46e0c10c039e", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "llama3.1:8b", + "name": "llama3.1:8b", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "4.9GB", + "digest": "46e0c10c039e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:70b", + "name": "llama3.1:70b", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "43GB", + "digest": "711a9e8463af", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:405b", + "name": "llama3.1:405b", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "243GB", + "digest": "dbd6b9ea93de", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:405b-instruct-fp16", + "name": "llama3.1:405b-instruct-fp16", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "812GB", + "digest": "8ca13bcda28b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:405b-instruct-q2_K", + "name": "llama3.1:405b-instruct-q2_K", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "149GB", + "digest": "57c259aa0162", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:405b-instruct-q3_K_L", + "name": "llama3.1:405b-instruct-q3_K_L", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "213GB", + "digest": "fcd77ab1d261", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:405b-instruct-q3_K_M", + "name": "llama3.1:405b-instruct-q3_K_M", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "195GB", + "digest": "9ab0ea61e9d6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:405b-instruct-q3_K_S", + "name": "llama3.1:405b-instruct-q3_K_S", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "175GB", + "digest": "5629943379da", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:405b-instruct-q4_0", + "name": "llama3.1:405b-instruct-q4_0", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "229GB", + "digest": "65fa6b82bfda", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:405b-instruct-q4_1", + "name": "llama3.1:405b-instruct-q4_1", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "254GB", + "digest": "283fcc3a816a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:405b-instruct-q4_K_M", + "name": "llama3.1:405b-instruct-q4_K_M", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "243GB", + "digest": "dbd6b9ea93de", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:405b-instruct-q4_K_S", + "name": "llama3.1:405b-instruct-q4_K_S", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "231GB", + "digest": "4a745087e617", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:405b-instruct-q5_0", + "name": "llama3.1:405b-instruct-q5_0", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "279GB", + "digest": "441bbd85e453", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:405b-instruct-q5_1", + "name": "llama3.1:405b-instruct-q5_1", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "305GB", + "digest": "b80f0c0aea72", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:405b-instruct-q5_K_M", + "name": "llama3.1:405b-instruct-q5_K_M", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "287GB", + "digest": "fed1ac5214db", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:405b-instruct-q5_K_S", + "name": "llama3.1:405b-instruct-q5_K_S", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "279GB", + "digest": "5e5285368f59", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:405b-instruct-q6_K", + "name": "llama3.1:405b-instruct-q6_K", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "333GB", + "digest": "5478eb23c5fb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:405b-instruct-q8_0", + "name": "llama3.1:405b-instruct-q8_0", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "431GB", + "digest": "b674ab2e9d34", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:405b-text-fp16", + "name": "llama3.1:405b-text-fp16", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "812GB", + "digest": "bc01fb5255d5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:405b-text-q2_K", + "name": "llama3.1:405b-text-q2_K", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "149GB", + "digest": "f7b0ab60bfbe", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:405b-text-q3_K_L", + "name": "llama3.1:405b-text-q3_K_L", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "213GB", + "digest": "94bf2a77e235", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:405b-text-q3_K_M", + "name": "llama3.1:405b-text-q3_K_M", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "195GB", + "digest": "b9fb97304e8e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:405b-text-q3_K_S", + "name": "llama3.1:405b-text-q3_K_S", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "175GB", + "digest": "6c66c6eac804", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:405b-text-q4_0", + "name": "llama3.1:405b-text-q4_0", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "229GB", + "digest": "320335002c0c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:405b-text-q4_1", + "name": "llama3.1:405b-text-q4_1", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "254GB", + "digest": "fea44733a09c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:405b-text-q4_K_M", + "name": "llama3.1:405b-text-q4_K_M", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "243GB", + "digest": "d8a18ddb2815", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:405b-text-q4_K_S", + "name": "llama3.1:405b-text-q4_K_S", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "231GB", + "digest": "06c63988889d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:405b-text-q5_0", + "name": "llama3.1:405b-text-q5_0", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "279GB", + "digest": "8d3fd1384383", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:405b-text-q5_1", + "name": "llama3.1:405b-text-q5_1", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "305GB", + "digest": "105c1a731c53", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:405b-text-q5_K_M", + "name": "llama3.1:405b-text-q5_K_M", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "287GB", + "digest": "0d410297a920", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:405b-text-q5_K_S", + "name": "llama3.1:405b-text-q5_K_S", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "279GB", + "digest": "8be1c5b6185d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:405b-text-q6_K", + "name": "llama3.1:405b-text-q6_K", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "333GB", + "digest": "0217d822dee9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:405b-text-q8_0", + "name": "llama3.1:405b-text-q8_0", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "431GB", + "digest": "394d4ab99b16", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:70b-instruct-fp16", + "name": "llama3.1:70b-instruct-fp16", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "141GB", + "digest": "80d34437631f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:70b-instruct-q2_K", + "name": "llama3.1:70b-instruct-q2_K", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "26GB", + "digest": "3cbf499d6905", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:70b-instruct-q3_K_L", + "name": "llama3.1:70b-instruct-q3_K_L", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "37GB", + "digest": "dfa642c7de3f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:70b-instruct-q3_K_M", + "name": "llama3.1:70b-instruct-q3_K_M", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "34GB", + "digest": "0e97a7709799", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:70b-instruct-q3_K_S", + "name": "llama3.1:70b-instruct-q3_K_S", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "31GB", + "digest": "aae9a850239c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:70b-instruct-q4_0", + "name": "llama3.1:70b-instruct-q4_0", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "40GB", + "digest": "c0df3564cfe8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:70b-instruct-q4_K_M", + "name": "llama3.1:70b-instruct-q4_K_M", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "43GB", + "digest": "711a9e8463af", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:70b-instruct-q4_K_S", + "name": "llama3.1:70b-instruct-q4_K_S", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "40GB", + "digest": "826ee833d0c5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:70b-instruct-q5_0", + "name": "llama3.1:70b-instruct-q5_0", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "49GB", + "digest": "97b688346a84", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:70b-instruct-q5_1", + "name": "llama3.1:70b-instruct-q5_1", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "53GB", + "digest": "84421db620ee", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:70b-instruct-q5_K_M", + "name": "llama3.1:70b-instruct-q5_K_M", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "50GB", + "digest": "1201b5de8650", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:70b-instruct-q5_K_S", + "name": "llama3.1:70b-instruct-q5_K_S", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "49GB", + "digest": "9acd76c5572e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:70b-instruct-q6_K", + "name": "llama3.1:70b-instruct-q6_K", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "58GB", + "digest": "eb2f022cab3c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:70b-instruct-q8_0", + "name": "llama3.1:70b-instruct-q8_0", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "75GB", + "digest": "5dd991fa92a4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:70b-text-fp16", + "name": "llama3.1:70b-text-fp16", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "141GB", + "digest": "391fbe608631", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:70b-text-q2_K", + "name": "llama3.1:70b-text-q2_K", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "26GB", + "digest": "4dff43d37532", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:70b-text-q3_K_L", + "name": "llama3.1:70b-text-q3_K_L", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "37GB", + "digest": "92b790ee5c4e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:70b-text-q3_K_M", + "name": "llama3.1:70b-text-q3_K_M", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "34GB", + "digest": "521811adfd14", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:70b-text-q3_K_S", + "name": "llama3.1:70b-text-q3_K_S", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "31GB", + "digest": "5d0e57a281be", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:70b-text-q4_0", + "name": "llama3.1:70b-text-q4_0", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "40GB", + "digest": "89e7cf894d3c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:70b-text-q4_1", + "name": "llama3.1:70b-text-q4_1", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "44GB", + "digest": "dc22a40d439c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:70b-text-q4_K_M", + "name": "llama3.1:70b-text-q4_K_M", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "43GB", + "digest": "f2348d28d33b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:70b-text-q4_K_S", + "name": "llama3.1:70b-text-q4_K_S", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "40GB", + "digest": "6da906aeecc4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:70b-text-q5_0", + "name": "llama3.1:70b-text-q5_0", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "49GB", + "digest": "853b4f3150a5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:70b-text-q5_1", + "name": "llama3.1:70b-text-q5_1", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "53GB", + "digest": "fb7068813a93", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:70b-text-q5_K_M", + "name": "llama3.1:70b-text-q5_K_M", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "50GB", + "digest": "d06cbd1da457", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:70b-text-q5_K_S", + "name": "llama3.1:70b-text-q5_K_S", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "49GB", + "digest": "540ebde70524", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:70b-text-q6_K", + "name": "llama3.1:70b-text-q6_K", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "58GB", + "digest": "ff11f01d22b1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:70b-text-q8_0", + "name": "llama3.1:70b-text-q8_0", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "75GB", + "digest": "2da4cc56a344", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:8b-instruct-fp16", + "name": "llama3.1:8b-instruct-fp16", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "16GB", + "digest": "4aacac419454", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:8b-instruct-q2_K", + "name": "llama3.1:8b-instruct-q2_K", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "3.2GB", + "digest": "44a139eeb344", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:8b-instruct-q3_K_L", + "name": "llama3.1:8b-instruct-q3_K_L", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "4.3GB", + "digest": "04a2f1e44de7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:8b-instruct-q3_K_M", + "name": "llama3.1:8b-instruct-q3_K_M", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "4.0GB", + "digest": "4faa21fca5a2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:8b-instruct-q3_K_S", + "name": "llama3.1:8b-instruct-q3_K_S", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "3.7GB", + "digest": "16268e519444", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:8b-instruct-q4_0", + "name": "llama3.1:8b-instruct-q4_0", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "4.7GB", + "digest": "42182419e950", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:8b-instruct-q4_1", + "name": "llama3.1:8b-instruct-q4_1", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "5.1GB", + "digest": "e129e608a752", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:8b-instruct-q4_K_M", + "name": "llama3.1:8b-instruct-q4_K_M", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "4.9GB", + "digest": "46e0c10c039e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:8b-instruct-q4_K_S", + "name": "llama3.1:8b-instruct-q4_K_S", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "4.7GB", + "digest": "778e1e675704", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:8b-instruct-q5_0", + "name": "llama3.1:8b-instruct-q5_0", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "5.6GB", + "digest": "26bc223a1709", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:8b-instruct-q5_1", + "name": "llama3.1:8b-instruct-q5_1", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "6.1GB", + "digest": "8faaa53f9cda", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:8b-instruct-q5_K_M", + "name": "llama3.1:8b-instruct-q5_K_M", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "5.7GB", + "digest": "27fe1b0ab52c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:8b-instruct-q5_K_S", + "name": "llama3.1:8b-instruct-q5_K_S", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "5.6GB", + "digest": "2d79e69bc236", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:8b-instruct-q6_K", + "name": "llama3.1:8b-instruct-q6_K", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "6.6GB", + "digest": "81e7664fda9c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:8b-instruct-q8_0", + "name": "llama3.1:8b-instruct-q8_0", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "8.5GB", + "digest": "b158ded76fa0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:8b-text-fp16", + "name": "llama3.1:8b-text-fp16", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "16GB", + "digest": "722fd1ff1fda", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:8b-text-q2_K", + "name": "llama3.1:8b-text-q2_K", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "3.2GB", + "digest": "82bedef0ef47", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:8b-text-q3_K_L", + "name": "llama3.1:8b-text-q3_K_L", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "4.3GB", + "digest": "4d9a56f79245", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:8b-text-q3_K_M", + "name": "llama3.1:8b-text-q3_K_M", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "4.0GB", + "digest": "abcf9215e3df", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:8b-text-q3_K_S", + "name": "llama3.1:8b-text-q3_K_S", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "3.7GB", + "digest": "92c2cffe1a17", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:8b-text-q4_0", + "name": "llama3.1:8b-text-q4_0", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "4.7GB", + "digest": "025059e83055", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:8b-text-q4_1", + "name": "llama3.1:8b-text-q4_1", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "5.1GB", + "digest": "4b32d52187b4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:8b-text-q4_K_M", + "name": "llama3.1:8b-text-q4_K_M", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "4.9GB", + "digest": "6f98b5a6e4b7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:8b-text-q4_K_S", + "name": "llama3.1:8b-text-q4_K_S", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "4.7GB", + "digest": "d1a421604a57", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:8b-text-q5_0", + "name": "llama3.1:8b-text-q5_0", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "5.6GB", + "digest": "ee0f9a2ffa00", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:8b-text-q5_1", + "name": "llama3.1:8b-text-q5_1", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "6.1GB", + "digest": "ad68371dbd08", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:8b-text-q5_K_M", + "name": "llama3.1:8b-text-q5_K_M", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "5.7GB", + "digest": "e0b14a625560", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:8b-text-q5_K_S", + "name": "llama3.1:8b-text-q5_K_S", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "5.6GB", + "digest": "a7562b693302", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:8b-text-q6_K", + "name": "llama3.1:8b-text-q6_K", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "6.6GB", + "digest": "40e61b3c96cc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.1:8b-text-q8_0", + "name": "llama3.1:8b-text-q8_0", + "description": "Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.", + "size": "8.5GB", + "digest": "56fd90f1aa19", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nomic-embed-text", + "name": "nomic-embed-text", + "description": "A high-performing open embedding model with a large token context window.", + "size": "274MB", + "digest": "0a109f422b47", + "provider": "", + "is_popular": true, + "latest": true + }, + { + "id": "nomic-embed-text:137m-v1.5-fp16", + "name": "nomic-embed-text:137m-v1.5-fp16", + "description": "A high-performing open embedding model with a large token context window.", + "size": "274MB", + "digest": "0a109f422b47", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nomic-embed-text:v1.5", + "name": "nomic-embed-text:v1.5", + "description": "A high-performing open embedding model with a large token context window.", + "size": "274MB", + "digest": "0a109f422b47", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral", + "name": "mistral", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "4.1GB", + "digest": "f974a74358d6", + "provider": "", + "is_popular": true, + "latest": true + }, + { + "id": "mistral:7b", + "name": "mistral:7b", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "4.1GB", + "digest": "f974a74358d6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-instruct", + "name": "mistral:7b-instruct", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "4.1GB", + "digest": "f974a74358d6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-instruct-fp16", + "name": "mistral:7b-instruct-fp16", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "14GB", + "digest": "7334da3db4d2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-instruct-q2_K", + "name": "mistral:7b-instruct-q2_K", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "3.1GB", + "digest": "1344ecf13c2e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-instruct-q3_K_L", + "name": "mistral:7b-instruct-q3_K_L", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "3.8GB", + "digest": "7f1b28865005", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-instruct-q3_K_M", + "name": "mistral:7b-instruct-q3_K_M", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "3.5GB", + "digest": "9fddddabfd5d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-instruct-q3_K_S", + "name": "mistral:7b-instruct-q3_K_S", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "3.2GB", + "digest": "30ead8e09346", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-instruct-q4_0", + "name": "mistral:7b-instruct-q4_0", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "4.1GB", + "digest": "b17615239298", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-instruct-q4_1", + "name": "mistral:7b-instruct-q4_1", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "4.6GB", + "digest": "4455f2ee0189", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-instruct-q4_K_M", + "name": "mistral:7b-instruct-q4_K_M", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "4.4GB", + "digest": "1a85656b534f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-instruct-q4_K_S", + "name": "mistral:7b-instruct-q4_K_S", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "4.1GB", + "digest": "d8ee783f8c73", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-instruct-q5_0", + "name": "mistral:7b-instruct-q5_0", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "5.0GB", + "digest": "69b94d2f2086", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-instruct-q5_1", + "name": "mistral:7b-instruct-q5_1", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "5.4GB", + "digest": "0aeff8418eda", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-instruct-q5_K_M", + "name": "mistral:7b-instruct-q5_K_M", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "5.1GB", + "digest": "8397c99c426f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-instruct-q5_K_S", + "name": "mistral:7b-instruct-q5_K_S", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "5.0GB", + "digest": "6e47e694bb5c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-instruct-q6_K", + "name": "mistral:7b-instruct-q6_K", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "5.9GB", + "digest": "bb307cbab5aa", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-instruct-q8_0", + "name": "mistral:7b-instruct-q8_0", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "7.7GB", + "digest": "2162e081e7f0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-instruct-v0.2-fp16", + "name": "mistral:7b-instruct-v0.2-fp16", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "14GB", + "digest": "094d67ff087c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-instruct-v0.2-q2_K", + "name": "mistral:7b-instruct-v0.2-q2_K", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "3.1GB", + "digest": "6deedd139c2a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-instruct-v0.2-q3_K_L", + "name": "mistral:7b-instruct-v0.2-q3_K_L", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "3.8GB", + "digest": "efe60f8368f7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-instruct-v0.2-q3_K_M", + "name": "mistral:7b-instruct-v0.2-q3_K_M", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "3.5GB", + "digest": "6897f015d8dc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-instruct-v0.2-q3_K_S", + "name": "mistral:7b-instruct-v0.2-q3_K_S", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "3.2GB", + "digest": "a0adecf535f4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-instruct-v0.2-q4_0", + "name": "mistral:7b-instruct-v0.2-q4_0", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "4.1GB", + "digest": "61e88e884507", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-instruct-v0.2-q4_1", + "name": "mistral:7b-instruct-v0.2-q4_1", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "4.6GB", + "digest": "658e1f4c66cc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-instruct-v0.2-q4_K_M", + "name": "mistral:7b-instruct-v0.2-q4_K_M", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "4.4GB", + "digest": "eb14864c7427", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-instruct-v0.2-q4_K_S", + "name": "mistral:7b-instruct-v0.2-q4_K_S", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "4.1GB", + "digest": "ba00d3a5239e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-instruct-v0.2-q5_0", + "name": "mistral:7b-instruct-v0.2-q5_0", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "5.0GB", + "digest": "0e6b5e504307", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-instruct-v0.2-q5_1", + "name": "mistral:7b-instruct-v0.2-q5_1", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "5.4GB", + "digest": "ff048d9b25be", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-instruct-v0.2-q5_K_M", + "name": "mistral:7b-instruct-v0.2-q5_K_M", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "5.1GB", + "digest": "bec2cbe92b28", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-instruct-v0.2-q5_K_S", + "name": "mistral:7b-instruct-v0.2-q5_K_S", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "5.0GB", + "digest": "db882a87043d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-instruct-v0.2-q6_K", + "name": "mistral:7b-instruct-v0.2-q6_K", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "5.9GB", + "digest": "1019a5160773", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-instruct-v0.2-q8_0", + "name": "mistral:7b-instruct-v0.2-q8_0", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "7.7GB", + "digest": "3f321fd2a1c3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-instruct-v0.3-fp16", + "name": "mistral:7b-instruct-v0.3-fp16", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "14GB", + "digest": "1729fae719f1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-instruct-v0.3-q2_K", + "name": "mistral:7b-instruct-v0.3-q2_K", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "2.7GB", + "digest": "df064eda326d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-instruct-v0.3-q3_K_L", + "name": "mistral:7b-instruct-v0.3-q3_K_L", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "3.8GB", + "digest": "4bd00c37f8e9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-instruct-v0.3-q3_K_M", + "name": "mistral:7b-instruct-v0.3-q3_K_M", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "3.5GB", + "digest": "828e3497b80a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-instruct-v0.3-q3_K_S", + "name": "mistral:7b-instruct-v0.3-q3_K_S", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "3.2GB", + "digest": "86f93ac8c353", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-instruct-v0.3-q4_0", + "name": "mistral:7b-instruct-v0.3-q4_0", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "4.1GB", + "digest": "f974a74358d6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-instruct-v0.3-q4_1", + "name": "mistral:7b-instruct-v0.3-q4_1", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "4.6GB", + "digest": "68d44147583f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-instruct-v0.3-q4_K_M", + "name": "mistral:7b-instruct-v0.3-q4_K_M", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "4.4GB", + "digest": "61e1a49f19db", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-instruct-v0.3-q4_K_S", + "name": "mistral:7b-instruct-v0.3-q4_K_S", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "4.1GB", + "digest": "cabb111d0d1f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-instruct-v0.3-q5_0", + "name": "mistral:7b-instruct-v0.3-q5_0", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "5.0GB", + "digest": "a984e4fe4fe9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-instruct-v0.3-q5_1", + "name": "mistral:7b-instruct-v0.3-q5_1", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "5.4GB", + "digest": "3bc215ead684", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-instruct-v0.3-q5_K_M", + "name": "mistral:7b-instruct-v0.3-q5_K_M", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "5.1GB", + "digest": "244c1435dd8e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-instruct-v0.3-q5_K_S", + "name": "mistral:7b-instruct-v0.3-q5_K_S", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "5.0GB", + "digest": "0e7c66bf1366", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-instruct-v0.3-q6_K", + "name": "mistral:7b-instruct-v0.3-q6_K", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "5.9GB", + "digest": "639daf3310ab", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-instruct-v0.3-q8_0", + "name": "mistral:7b-instruct-v0.3-q8_0", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "7.7GB", + "digest": "10e5a5ebd26d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-text", + "name": "mistral:7b-text", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "4.1GB", + "digest": "495ae085225b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-text-fp16", + "name": "mistral:7b-text-fp16", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "14GB", + "digest": "0c3d49e38913", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-text-q2_K", + "name": "mistral:7b-text-q2_K", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "3.1GB", + "digest": "741772b3543d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-text-q3_K_L", + "name": "mistral:7b-text-q3_K_L", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "3.8GB", + "digest": "ae1eaf0c61df", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-text-q3_K_M", + "name": "mistral:7b-text-q3_K_M", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "3.5GB", + "digest": "633491386324", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-text-q3_K_S", + "name": "mistral:7b-text-q3_K_S", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "3.2GB", + "digest": "ec0a4bd34689", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-text-q4_0", + "name": "mistral:7b-text-q4_0", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "4.1GB", + "digest": "d19e34de4cb6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-text-q4_1", + "name": "mistral:7b-text-q4_1", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "4.6GB", + "digest": "14d146cb57dc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-text-q4_K_M", + "name": "mistral:7b-text-q4_K_M", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "4.4GB", + "digest": "60eca258468e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-text-q4_K_S", + "name": "mistral:7b-text-q4_K_S", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "4.1GB", + "digest": "e6aa05445f6e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-text-q5_0", + "name": "mistral:7b-text-q5_0", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "5.0GB", + "digest": "efb1aa205985", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-text-q5_1", + "name": "mistral:7b-text-q5_1", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "5.4GB", + "digest": "05b86a2ea9de", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-text-q5_K_M", + "name": "mistral:7b-text-q5_K_M", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "5.1GB", + "digest": "71cd339e522c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-text-q5_K_S", + "name": "mistral:7b-text-q5_K_S", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "5.0GB", + "digest": "be6784da326c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-text-q6_K", + "name": "mistral:7b-text-q6_K", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "5.9GB", + "digest": "08f5c2f86290", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-text-q8_0", + "name": "mistral:7b-text-q8_0", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "7.7GB", + "digest": "3197b6e23271", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-text-v0.2-fp16", + "name": "mistral:7b-text-v0.2-fp16", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "14GB", + "digest": "06b91ca50a5e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-text-v0.2-q2_K", + "name": "mistral:7b-text-v0.2-q2_K", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "2.7GB", + "digest": "748b32627509", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-text-v0.2-q3_K_L", + "name": "mistral:7b-text-v0.2-q3_K_L", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "3.8GB", + "digest": "991a9afb3a73", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-text-v0.2-q3_K_M", + "name": "mistral:7b-text-v0.2-q3_K_M", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "3.5GB", + "digest": "519ef17de46e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-text-v0.2-q3_K_S", + "name": "mistral:7b-text-v0.2-q3_K_S", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "3.2GB", + "digest": "1cd170493ae6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-text-v0.2-q4_0", + "name": "mistral:7b-text-v0.2-q4_0", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "4.1GB", + "digest": "495ae085225b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-text-v0.2-q4_1", + "name": "mistral:7b-text-v0.2-q4_1", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "4.6GB", + "digest": "fae6ab253307", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-text-v0.2-q4_K_M", + "name": "mistral:7b-text-v0.2-q4_K_M", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "4.4GB", + "digest": "33518cc91a4d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-text-v0.2-q4_K_S", + "name": "mistral:7b-text-v0.2-q4_K_S", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "4.1GB", + "digest": "1a6db06e5aa7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-text-v0.2-q5_0", + "name": "mistral:7b-text-v0.2-q5_0", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "5.0GB", + "digest": "de4b5d95fa55", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-text-v0.2-q5_1", + "name": "mistral:7b-text-v0.2-q5_1", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "5.4GB", + "digest": "719e139683a3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-text-v0.2-q5_K_M", + "name": "mistral:7b-text-v0.2-q5_K_M", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "5.1GB", + "digest": "d4e74c03817c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-text-v0.2-q5_K_S", + "name": "mistral:7b-text-v0.2-q5_K_S", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "5.0GB", + "digest": "d419d7d9e74a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-text-v0.2-q6_K", + "name": "mistral:7b-text-v0.2-q6_K", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "5.9GB", + "digest": "017da36fcc18", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:7b-text-v0.2-q8_0", + "name": "mistral:7b-text-v0.2-q8_0", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "7.7GB", + "digest": "e844517e7eaf", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:instruct", + "name": "mistral:instruct", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "4.1GB", + "digest": "f974a74358d6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:text", + "name": "mistral:text", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "4.1GB", + "digest": "495ae085225b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:v0.1", + "name": "mistral:v0.1", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "4.1GB", + "digest": "b17615239298", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:v0.2", + "name": "mistral:v0.2", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "4.1GB", + "digest": "61e88e884507", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral:v0.3", + "name": "mistral:v0.3", + "description": "The 7B model released by Mistral AI, updated to version 0.3.", + "size": "4.1GB", + "digest": "f974a74358d6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3", + "name": "llama3", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "4.7GB", + "digest": "365c0bd3c000", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "llama3:8b", + "name": "llama3:8b", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "4.7GB", + "digest": "365c0bd3c000", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:70b", + "name": "llama3:70b", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "40GB", + "digest": "786f3184aec0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:70b-instruct", + "name": "llama3:70b-instruct", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "40GB", + "digest": "786f3184aec0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:70b-instruct-fp16", + "name": "llama3:70b-instruct-fp16", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "141GB", + "digest": "a84c389adf03", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:70b-instruct-q2_K", + "name": "llama3:70b-instruct-q2_K", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "26GB", + "digest": "693db6efd8f9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:70b-instruct-q3_K_L", + "name": "llama3:70b-instruct-q3_K_L", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "37GB", + "digest": "e5d560a5f1ae", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:70b-instruct-q3_K_M", + "name": "llama3:70b-instruct-q3_K_M", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "34GB", + "digest": "aa0e78b2b879", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:70b-instruct-q3_K_S", + "name": "llama3:70b-instruct-q3_K_S", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "31GB", + "digest": "4c1a815173f7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:70b-instruct-q4_0", + "name": "llama3:70b-instruct-q4_0", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "40GB", + "digest": "786f3184aec0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:70b-instruct-q4_1", + "name": "llama3:70b-instruct-q4_1", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "44GB", + "digest": "df99b9a013cf", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:70b-instruct-q4_K_M", + "name": "llama3:70b-instruct-q4_K_M", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "43GB", + "digest": "f04e196898af", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:70b-instruct-q4_K_S", + "name": "llama3:70b-instruct-q4_K_S", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "40GB", + "digest": "3b5ca57de719", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:70b-instruct-q5_0", + "name": "llama3:70b-instruct-q5_0", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "49GB", + "digest": "4b557d9edc8f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:70b-instruct-q5_1", + "name": "llama3:70b-instruct-q5_1", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "53GB", + "digest": "8fc800ccfec4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:70b-instruct-q5_K_M", + "name": "llama3:70b-instruct-q5_K_M", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "50GB", + "digest": "4e84a5514862", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:70b-instruct-q5_K_S", + "name": "llama3:70b-instruct-q5_K_S", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "49GB", + "digest": "639ad63d3803", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:70b-instruct-q6_K", + "name": "llama3:70b-instruct-q6_K", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "58GB", + "digest": "a50a7631e818", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:70b-instruct-q8_0", + "name": "llama3:70b-instruct-q8_0", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "75GB", + "digest": "13ef6d4ac2af", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:70b-text", + "name": "llama3:70b-text", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "40GB", + "digest": "0b88ea68f949", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:70b-text-fp16", + "name": "llama3:70b-text-fp16", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "141GB", + "digest": "f698d14954d3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:70b-text-q2_K", + "name": "llama3:70b-text-q2_K", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "26GB", + "digest": "8e7acd975e4c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:70b-text-q3_K_L", + "name": "llama3:70b-text-q3_K_L", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "37GB", + "digest": "a59e68b60a66", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:70b-text-q3_K_M", + "name": "llama3:70b-text-q3_K_M", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "34GB", + "digest": "05a42206e81a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:70b-text-q3_K_S", + "name": "llama3:70b-text-q3_K_S", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "31GB", + "digest": "85adac3167c3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:70b-text-q4_0", + "name": "llama3:70b-text-q4_0", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "40GB", + "digest": "0b88ea68f949", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:70b-text-q4_1", + "name": "llama3:70b-text-q4_1", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "44GB", + "digest": "0568b52cd894", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:70b-text-q4_K_M", + "name": "llama3:70b-text-q4_K_M", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "43GB", + "digest": "d1a70936a292", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:70b-text-q4_K_S", + "name": "llama3:70b-text-q4_K_S", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "40GB", + "digest": "13aba0c20a4a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:70b-text-q5_0", + "name": "llama3:70b-text-q5_0", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "49GB", + "digest": "878949e474d3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:70b-text-q5_1", + "name": "llama3:70b-text-q5_1", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "53GB", + "digest": "f26e4666536b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:70b-text-q5_K_M", + "name": "llama3:70b-text-q5_K_M", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "50GB", + "digest": "3a9680b7a812", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:70b-text-q5_K_S", + "name": "llama3:70b-text-q5_K_S", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "49GB", + "digest": "3c9bae7f46ba", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:70b-text-q6_K", + "name": "llama3:70b-text-q6_K", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "58GB", + "digest": "9a3e4b9ce0a2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:70b-text-q8_0", + "name": "llama3:70b-text-q8_0", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "75GB", + "digest": "ec846ca4f4c2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:8b-instruct-fp16", + "name": "llama3:8b-instruct-fp16", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "16GB", + "digest": "c666fe422df7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:8b-instruct-q2_K", + "name": "llama3:8b-instruct-q2_K", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "3.2GB", + "digest": "2745d547f376", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:8b-instruct-q3_K_L", + "name": "llama3:8b-instruct-q3_K_L", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "4.3GB", + "digest": "df7624806f55", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:8b-instruct-q3_K_M", + "name": "llama3:8b-instruct-q3_K_M", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "4.0GB", + "digest": "726a1960bfed", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:8b-instruct-q3_K_S", + "name": "llama3:8b-instruct-q3_K_S", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "3.7GB", + "digest": "0891d012c467", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:8b-instruct-q4_0", + "name": "llama3:8b-instruct-q4_0", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "4.7GB", + "digest": "365c0bd3c000", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:8b-instruct-q4_1", + "name": "llama3:8b-instruct-q4_1", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "5.1GB", + "digest": "ec0a6ea1fb9b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:8b-instruct-q4_K_M", + "name": "llama3:8b-instruct-q4_K_M", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "4.9GB", + "digest": "9b8f3f3385bf", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:8b-instruct-q4_K_S", + "name": "llama3:8b-instruct-q4_K_S", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "4.7GB", + "digest": "469db3d82576", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:8b-instruct-q5_0", + "name": "llama3:8b-instruct-q5_0", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "5.6GB", + "digest": "a13deb0590c7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:8b-instruct-q5_1", + "name": "llama3:8b-instruct-q5_1", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "6.1GB", + "digest": "662158bc9277", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:8b-instruct-q5_K_M", + "name": "llama3:8b-instruct-q5_K_M", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "5.7GB", + "digest": "af3083b17cd4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:8b-instruct-q5_K_S", + "name": "llama3:8b-instruct-q5_K_S", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "5.6GB", + "digest": "7eae3176f5b5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:8b-instruct-q6_K", + "name": "llama3:8b-instruct-q6_K", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "6.6GB", + "digest": "e4a3943fcd76", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:8b-instruct-q8_0", + "name": "llama3:8b-instruct-q8_0", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "8.5GB", + "digest": "1b8e49cece7f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:8b-text", + "name": "llama3:8b-text", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "4.7GB", + "digest": "870a5d02cfaf", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:8b-text-fp16", + "name": "llama3:8b-text-fp16", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "16GB", + "digest": "1a8e5e89d89c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:8b-text-q2_K", + "name": "llama3:8b-text-q2_K", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "3.2GB", + "digest": "ddab15c8cb9c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:8b-text-q3_K_L", + "name": "llama3:8b-text-q3_K_L", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "4.3GB", + "digest": "c8a0b2fe8826", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:8b-text-q3_K_M", + "name": "llama3:8b-text-q3_K_M", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "4.0GB", + "digest": "8dc24663264e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:8b-text-q3_K_S", + "name": "llama3:8b-text-q3_K_S", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "3.7GB", + "digest": "ef8314434744", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:8b-text-q4_0", + "name": "llama3:8b-text-q4_0", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "4.7GB", + "digest": "870a5d02cfaf", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:8b-text-q4_1", + "name": "llama3:8b-text-q4_1", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "5.1GB", + "digest": "6b5617036d84", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:8b-text-q4_K_M", + "name": "llama3:8b-text-q4_K_M", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "4.9GB", + "digest": "92666a9c24c8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:8b-text-q4_K_S", + "name": "llama3:8b-text-q4_K_S", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "4.7GB", + "digest": "9a26d72d3e16", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:8b-text-q5_0", + "name": "llama3:8b-text-q5_0", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "5.6GB", + "digest": "fcf1eef68171", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:8b-text-q5_1", + "name": "llama3:8b-text-q5_1", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "6.1GB", + "digest": "3c3ab90050f5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:8b-text-q5_K_M", + "name": "llama3:8b-text-q5_K_M", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "5.7GB", + "digest": "f8dbc557876f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:8b-text-q5_K_S", + "name": "llama3:8b-text-q5_K_S", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "5.6GB", + "digest": "248acc1da82b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:8b-text-q6_K", + "name": "llama3:8b-text-q6_K", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "6.6GB", + "digest": "e8210b245747", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:8b-text-q8_0", + "name": "llama3:8b-text-q8_0", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "8.5GB", + "digest": "7a0307e073ae", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:instruct", + "name": "llama3:instruct", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "4.7GB", + "digest": "365c0bd3c000", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3:text", + "name": "llama3:text", + "description": "Meta Llama 3: The most capable openly available LLM to date", + "size": "4.7GB", + "digest": "870a5d02cfaf", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen", + "name": "qwen", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "2.3GB", + "digest": "d53d04290064", + "provider": "", + "is_popular": true, + "latest": true + }, + { + "id": "qwen:0.5b", + "name": "qwen:0.5b", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "395MB", + "digest": "b5dc5e784f2a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b", + "name": "qwen:1.8b", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "1.1GB", + "digest": "b6e8ec2e7126", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:4b", + "name": "qwen:4b", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "2.3GB", + "digest": "d53d04290064", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b", + "name": "qwen:7b", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "4.5GB", + "digest": "2091ee8c8d8f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b", + "name": "qwen:14b", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "8.2GB", + "digest": "80362ced6553", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:32b", + "name": "qwen:32b", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "18GB", + "digest": "26e7e8447f5d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b", + "name": "qwen:72b", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "41GB", + "digest": "e1c64582de5c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:110b", + "name": "qwen:110b", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "63GB", + "digest": "7fed4b7787da", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:0.5b-chat", + "name": "qwen:0.5b-chat", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "395MB", + "digest": "b5dc5e784f2a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:0.5b-chat-v1.5-fp16", + "name": "qwen:0.5b-chat-v1.5-fp16", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "1.2GB", + "digest": "967f7a3593ba", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:0.5b-chat-v1.5-q2_K", + "name": "qwen:0.5b-chat-v1.5-q2_K", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "298MB", + "digest": "a16189bc79c0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:0.5b-chat-v1.5-q3_K_L", + "name": "qwen:0.5b-chat-v1.5-q3_K_L", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "364MB", + "digest": "d184d2901228", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:0.5b-chat-v1.5-q3_K_M", + "name": "qwen:0.5b-chat-v1.5-q3_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "350MB", + "digest": "b18e5c255a90", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:0.5b-chat-v1.5-q3_K_S", + "name": "qwen:0.5b-chat-v1.5-q3_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "333MB", + "digest": "0bcee5f34ad7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:0.5b-chat-v1.5-q4_0", + "name": "qwen:0.5b-chat-v1.5-q4_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "395MB", + "digest": "b5dc5e784f2a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:0.5b-chat-v1.5-q4_1", + "name": "qwen:0.5b-chat-v1.5-q4_1", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "424MB", + "digest": "1bf15c40f38e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:0.5b-chat-v1.5-q4_K_M", + "name": "qwen:0.5b-chat-v1.5-q4_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "407MB", + "digest": "e1c9c6192a7e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:0.5b-chat-v1.5-q4_K_S", + "name": "qwen:0.5b-chat-v1.5-q4_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "397MB", + "digest": "5d85925638c3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:0.5b-chat-v1.5-q5_0", + "name": "qwen:0.5b-chat-v1.5-q5_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "453MB", + "digest": "60ea3fa139a6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:0.5b-chat-v1.5-q5_1", + "name": "qwen:0.5b-chat-v1.5-q5_1", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "482MB", + "digest": "a60a006869f5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:0.5b-chat-v1.5-q5_K_M", + "name": "qwen:0.5b-chat-v1.5-q5_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "459MB", + "digest": "743996dfe09d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:0.5b-chat-v1.5-q5_K_S", + "name": "qwen:0.5b-chat-v1.5-q5_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "453MB", + "digest": "1cf5f7bb58c9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:0.5b-chat-v1.5-q6_K", + "name": "qwen:0.5b-chat-v1.5-q6_K", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "515MB", + "digest": "0d79ae8737db", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:0.5b-chat-v1.5-q8_0", + "name": "qwen:0.5b-chat-v1.5-q8_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "665MB", + "digest": "38781999773b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:0.5b-text", + "name": "qwen:0.5b-text", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "395MB", + "digest": "f92ac32068ca", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:0.5b-text-v1.5-fp16", + "name": "qwen:0.5b-text-v1.5-fp16", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "1.2GB", + "digest": "9cedb3d846db", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:0.5b-text-v1.5-q2_K", + "name": "qwen:0.5b-text-v1.5-q2_K", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "298MB", + "digest": "6be7d85c1f37", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:0.5b-text-v1.5-q3_K_L", + "name": "qwen:0.5b-text-v1.5-q3_K_L", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "364MB", + "digest": "49837f2c5b03", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:0.5b-text-v1.5-q3_K_M", + "name": "qwen:0.5b-text-v1.5-q3_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "350MB", + "digest": "7b641307e2fe", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:0.5b-text-v1.5-q3_K_S", + "name": "qwen:0.5b-text-v1.5-q3_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "333MB", + "digest": "37eeb0d10fd8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:0.5b-text-v1.5-q4_0", + "name": "qwen:0.5b-text-v1.5-q4_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "395MB", + "digest": "f92ac32068ca", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:0.5b-text-v1.5-q4_1", + "name": "qwen:0.5b-text-v1.5-q4_1", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "424MB", + "digest": "8634f265be16", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:0.5b-text-v1.5-q4_K_M", + "name": "qwen:0.5b-text-v1.5-q4_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "407MB", + "digest": "d8d0c86b10cd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:0.5b-text-v1.5-q4_K_S", + "name": "qwen:0.5b-text-v1.5-q4_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "397MB", + "digest": "b0702a4235ed", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:0.5b-text-v1.5-q5_0", + "name": "qwen:0.5b-text-v1.5-q5_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "453MB", + "digest": "3822065b797a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:0.5b-text-v1.5-q5_1", + "name": "qwen:0.5b-text-v1.5-q5_1", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "482MB", + "digest": "9f7ae5e6520b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:0.5b-text-v1.5-q5_K_M", + "name": "qwen:0.5b-text-v1.5-q5_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "459MB", + "digest": "dcedf0beaf7e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:0.5b-text-v1.5-q5_K_S", + "name": "qwen:0.5b-text-v1.5-q5_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "453MB", + "digest": "4ea8ddc7c860", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:0.5b-text-v1.5-q6_K", + "name": "qwen:0.5b-text-v1.5-q6_K", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "515MB", + "digest": "c8c2e4f579df", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:0.5b-text-v1.5-q8_0", + "name": "qwen:0.5b-text-v1.5-q8_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "665MB", + "digest": "c92fe3f525ea", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-chat", + "name": "qwen:1.8b-chat", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "1.1GB", + "digest": "b6e8ec2e7126", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-chat-fp16", + "name": "qwen:1.8b-chat-fp16", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "3.7GB", + "digest": "7b9c77c7b5b6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-chat-q2_K", + "name": "qwen:1.8b-chat-q2_K", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "853MB", + "digest": "467dbacce487", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-chat-q3_K_L", + "name": "qwen:1.8b-chat-q3_K_L", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "1.1GB", + "digest": "e3d057690a37", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-chat-q3_K_M", + "name": "qwen:1.8b-chat-q3_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "1.0GB", + "digest": "f7be0cbb0c5c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-chat-q3_K_S", + "name": "qwen:1.8b-chat-q3_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "970MB", + "digest": "9c807784e6fb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-chat-q4_0", + "name": "qwen:1.8b-chat-q4_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "1.1GB", + "digest": "ef087b004e83", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-chat-q4_1", + "name": "qwen:1.8b-chat-q4_1", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "1.2GB", + "digest": "e422a7c56e8a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-chat-q4_K_M", + "name": "qwen:1.8b-chat-q4_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "1.2GB", + "digest": "9c250efbd096", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-chat-q4_K_S", + "name": "qwen:1.8b-chat-q4_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "1.2GB", + "digest": "d04762cf1457", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-chat-q5_0", + "name": "qwen:1.8b-chat-q5_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "1.3GB", + "digest": "39b08d9c553f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-chat-q5_1", + "name": "qwen:1.8b-chat-q5_1", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "1.4GB", + "digest": "ac833a41e88c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-chat-q5_K_M", + "name": "qwen:1.8b-chat-q5_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "1.4GB", + "digest": "8341fb324ce5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-chat-q5_K_S", + "name": "qwen:1.8b-chat-q5_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "1.3GB", + "digest": "857ae180d71f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-chat-q6_K", + "name": "qwen:1.8b-chat-q6_K", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "1.6GB", + "digest": "6068eacf7eab", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-chat-q8_0", + "name": "qwen:1.8b-chat-q8_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "2.0GB", + "digest": "761057adac8d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-chat-v1.5-fp16", + "name": "qwen:1.8b-chat-v1.5-fp16", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "3.7GB", + "digest": "e3562f7740ef", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-chat-v1.5-q2_K", + "name": "qwen:1.8b-chat-v1.5-q2_K", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "863MB", + "digest": "5ec5deec0331", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-chat-v1.5-q3_K_L", + "name": "qwen:1.8b-chat-v1.5-q3_K_L", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "1.1GB", + "digest": "7e69fb050fc6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-chat-v1.5-q3_K_M", + "name": "qwen:1.8b-chat-v1.5-q3_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "1.0GB", + "digest": "1e7a582ce4d6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-chat-v1.5-q3_K_S", + "name": "qwen:1.8b-chat-v1.5-q3_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "970MB", + "digest": "45631575b031", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-chat-v1.5-q4_0", + "name": "qwen:1.8b-chat-v1.5-q4_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "1.1GB", + "digest": "b6e8ec2e7126", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-chat-v1.5-q4_1", + "name": "qwen:1.8b-chat-v1.5-q4_1", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "1.2GB", + "digest": "5520d901c708", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-chat-v1.5-q4_K_M", + "name": "qwen:1.8b-chat-v1.5-q4_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "1.2GB", + "digest": "27cd5d607aa3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-chat-v1.5-q4_K_S", + "name": "qwen:1.8b-chat-v1.5-q4_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "1.2GB", + "digest": "318bbcfbbcb1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-chat-v1.5-q5_0", + "name": "qwen:1.8b-chat-v1.5-q5_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "1.3GB", + "digest": "942791d6df80", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-chat-v1.5-q5_1", + "name": "qwen:1.8b-chat-v1.5-q5_1", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "1.4GB", + "digest": "5cb573856803", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-chat-v1.5-q5_K_M", + "name": "qwen:1.8b-chat-v1.5-q5_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "1.4GB", + "digest": "c3c9b43d0ae7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-chat-v1.5-q5_K_S", + "name": "qwen:1.8b-chat-v1.5-q5_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "1.3GB", + "digest": "63a97b074a77", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-chat-v1.5-q6_K", + "name": "qwen:1.8b-chat-v1.5-q6_K", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "1.6GB", + "digest": "1b54bd2ede5d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-chat-v1.5-q8_0", + "name": "qwen:1.8b-chat-v1.5-q8_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "2.0GB", + "digest": "2af802a8e3c4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-text", + "name": "qwen:1.8b-text", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "1.1GB", + "digest": "617cceb63756", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-text-fp16", + "name": "qwen:1.8b-text-fp16", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "3.7GB", + "digest": "f4bf3caa7f4c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-text-q2_K", + "name": "qwen:1.8b-text-q2_K", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "853MB", + "digest": "25e8928e67d8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-text-q3_K_L", + "name": "qwen:1.8b-text-q3_K_L", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "1.1GB", + "digest": "b6d15127867d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-text-q3_K_M", + "name": "qwen:1.8b-text-q3_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "1.0GB", + "digest": "2d9bc3e28126", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-text-q3_K_S", + "name": "qwen:1.8b-text-q3_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "970MB", + "digest": "6d276d0b0e4d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-text-q4_0", + "name": "qwen:1.8b-text-q4_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "1.1GB", + "digest": "03dc8b7a4353", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-text-q4_1", + "name": "qwen:1.8b-text-q4_1", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "1.2GB", + "digest": "9d03e4ff6283", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-text-q4_K_M", + "name": "qwen:1.8b-text-q4_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "1.2GB", + "digest": "8f4011c63861", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-text-q4_K_S", + "name": "qwen:1.8b-text-q4_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "1.2GB", + "digest": "35417f1033ba", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-text-q5_0", + "name": "qwen:1.8b-text-q5_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "1.3GB", + "digest": "5dee62f8b270", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-text-q5_1", + "name": "qwen:1.8b-text-q5_1", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "1.4GB", + "digest": "1ace6d0d6868", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-text-q5_K_M", + "name": "qwen:1.8b-text-q5_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "1.4GB", + "digest": "ba3f032feb07", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-text-q5_K_S", + "name": "qwen:1.8b-text-q5_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "1.3GB", + "digest": "fc7b98d4110c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-text-q6_K", + "name": "qwen:1.8b-text-q6_K", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "1.6GB", + "digest": "60c274911b01", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-text-q8_0", + "name": "qwen:1.8b-text-q8_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "2.0GB", + "digest": "fb7576710ad5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-text-v1.5-fp16", + "name": "qwen:1.8b-text-v1.5-fp16", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "3.7GB", + "digest": "5b31a65f7476", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-text-v1.5-q2_K", + "name": "qwen:1.8b-text-v1.5-q2_K", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "863MB", + "digest": "9fbae281c54a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-text-v1.5-q3_K_L", + "name": "qwen:1.8b-text-v1.5-q3_K_L", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "1.1GB", + "digest": "55006f44ba8f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-text-v1.5-q3_K_M", + "name": "qwen:1.8b-text-v1.5-q3_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "1.0GB", + "digest": "1e00ca7ca1af", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-text-v1.5-q3_K_S", + "name": "qwen:1.8b-text-v1.5-q3_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "970MB", + "digest": "cfddca3d7609", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-text-v1.5-q4_0", + "name": "qwen:1.8b-text-v1.5-q4_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "1.1GB", + "digest": "617cceb63756", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-text-v1.5-q4_1", + "name": "qwen:1.8b-text-v1.5-q4_1", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "1.2GB", + "digest": "9c3064af8a6a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-text-v1.5-q4_K_M", + "name": "qwen:1.8b-text-v1.5-q4_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "1.2GB", + "digest": "2120d6a01bc3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-text-v1.5-q4_K_S", + "name": "qwen:1.8b-text-v1.5-q4_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "1.2GB", + "digest": "9de4291d63b0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-text-v1.5-q5_0", + "name": "qwen:1.8b-text-v1.5-q5_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "1.3GB", + "digest": "fbc1dd7dbb3f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-text-v1.5-q5_1", + "name": "qwen:1.8b-text-v1.5-q5_1", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "1.4GB", + "digest": "110bb7065fe0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-text-v1.5-q5_K_M", + "name": "qwen:1.8b-text-v1.5-q5_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "1.4GB", + "digest": "e2aedf4a65d7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-text-v1.5-q5_K_S", + "name": "qwen:1.8b-text-v1.5-q5_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "1.3GB", + "digest": "b12f16343645", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-text-v1.5-q6_K", + "name": "qwen:1.8b-text-v1.5-q6_K", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "1.6GB", + "digest": "e7be77cc89a1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:1.8b-text-v1.5-q8_0", + "name": "qwen:1.8b-text-v1.5-q8_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "2.0GB", + "digest": "48d0284fc9fe", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:110b-chat", + "name": "qwen:110b-chat", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "63GB", + "digest": "7fed4b7787da", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:110b-chat-v1.5-fp16", + "name": "qwen:110b-chat-v1.5-fp16", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "222GB", + "digest": "ba695125f554", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:110b-chat-v1.5-q2_K", + "name": "qwen:110b-chat-v1.5-q2_K", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "41GB", + "digest": "1e7acfd0a780", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:110b-chat-v1.5-q3_K_L", + "name": "qwen:110b-chat-v1.5-q3_K_L", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "58GB", + "digest": "38eec5a3a415", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:110b-chat-v1.5-q3_K_M", + "name": "qwen:110b-chat-v1.5-q3_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "54GB", + "digest": "e1dea48c9e67", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:110b-chat-v1.5-q3_K_S", + "name": "qwen:110b-chat-v1.5-q3_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "48GB", + "digest": "a2f6e6c88111", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:110b-chat-v1.5-q4_0", + "name": "qwen:110b-chat-v1.5-q4_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "63GB", + "digest": "7fed4b7787da", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:110b-chat-v1.5-q4_1", + "name": "qwen:110b-chat-v1.5-q4_1", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "70GB", + "digest": "6122c3a9ed71", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:110b-chat-v1.5-q4_K_M", + "name": "qwen:110b-chat-v1.5-q4_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "67GB", + "digest": "b9cfda07d6f6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:110b-chat-v1.5-q4_K_S", + "name": "qwen:110b-chat-v1.5-q4_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "63GB", + "digest": "89cc28d3008f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:110b-chat-v1.5-q5_0", + "name": "qwen:110b-chat-v1.5-q5_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "77GB", + "digest": "34209c9810a9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:110b-chat-v1.5-q5_1", + "name": "qwen:110b-chat-v1.5-q5_1", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "84GB", + "digest": "e74e5965cc23", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:110b-chat-v1.5-q5_K_M", + "name": "qwen:110b-chat-v1.5-q5_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "79GB", + "digest": "98574b6ea163", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:110b-chat-v1.5-q5_K_S", + "name": "qwen:110b-chat-v1.5-q5_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "77GB", + "digest": "7ba26ace3df0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:110b-chat-v1.5-q6_K", + "name": "qwen:110b-chat-v1.5-q6_K", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "91GB", + "digest": "1e57b2da94fa", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:110b-chat-v1.5-q8_0", + "name": "qwen:110b-chat-v1.5-q8_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "118GB", + "digest": "a7b94c2ca097", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:110b-text-v1.5-fp16", + "name": "qwen:110b-text-v1.5-fp16", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "222GB", + "digest": "db7af5aa87cf", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:110b-text-v1.5-q2_K", + "name": "qwen:110b-text-v1.5-q2_K", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "41GB", + "digest": "0c0dc39aeb62", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:110b-text-v1.5-q3_K_L", + "name": "qwen:110b-text-v1.5-q3_K_L", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "58GB", + "digest": "d600eac4b5ea", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:110b-text-v1.5-q3_K_M", + "name": "qwen:110b-text-v1.5-q3_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "54GB", + "digest": "354ef171b532", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:110b-text-v1.5-q3_K_S", + "name": "qwen:110b-text-v1.5-q3_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "48GB", + "digest": "f47bf7b34be3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:110b-text-v1.5-q4_0", + "name": "qwen:110b-text-v1.5-q4_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "63GB", + "digest": "641bc60e9274", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:110b-text-v1.5-q4_1", + "name": "qwen:110b-text-v1.5-q4_1", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "70GB", + "digest": "88fd1ce3561e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:110b-text-v1.5-q4_K_M", + "name": "qwen:110b-text-v1.5-q4_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "67GB", + "digest": "b66e1e01042f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:110b-text-v1.5-q4_K_S", + "name": "qwen:110b-text-v1.5-q4_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "63GB", + "digest": "29294418d682", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:110b-text-v1.5-q5_0", + "name": "qwen:110b-text-v1.5-q5_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "77GB", + "digest": "818ee5b08aa2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:110b-text-v1.5-q5_1", + "name": "qwen:110b-text-v1.5-q5_1", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "84GB", + "digest": "19c32c34f04a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:110b-text-v1.5-q5_K_M", + "name": "qwen:110b-text-v1.5-q5_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "79GB", + "digest": "db245b9a7f62", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:110b-text-v1.5-q5_K_S", + "name": "qwen:110b-text-v1.5-q5_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "77GB", + "digest": "358e654339d6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:110b-text-v1.5-q6_K", + "name": "qwen:110b-text-v1.5-q6_K", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "91GB", + "digest": "446cabb2ebd6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:110b-text-v1.5-q8_0", + "name": "qwen:110b-text-v1.5-q8_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "118GB", + "digest": "53bc7e72b768", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-chat", + "name": "qwen:14b-chat", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "8.2GB", + "digest": "80362ced6553", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-chat-fp16", + "name": "qwen:14b-chat-fp16", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "28GB", + "digest": "13c401be87d4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-chat-q2_K", + "name": "qwen:14b-chat-q2_K", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "6.0GB", + "digest": "fd1a3ccd26ec", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-chat-q3_K_L", + "name": "qwen:14b-chat-q3_K_L", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "8.0GB", + "digest": "8b5eb6ea106d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-chat-q3_K_M", + "name": "qwen:14b-chat-q3_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "7.7GB", + "digest": "f3e7aa8567ed", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-chat-q3_K_S", + "name": "qwen:14b-chat-q3_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "6.9GB", + "digest": "79c06fc56da4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-chat-q4_0", + "name": "qwen:14b-chat-q4_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "8.2GB", + "digest": "e5a75212c4d4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-chat-q4_1", + "name": "qwen:14b-chat-q4_1", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "9.0GB", + "digest": "282ce204bb6b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-chat-q4_K_M", + "name": "qwen:14b-chat-q4_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "9.4GB", + "digest": "f845925f8d90", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-chat-q4_K_S", + "name": "qwen:14b-chat-q4_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "8.6GB", + "digest": "dc341a2db63b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-chat-q5_0", + "name": "qwen:14b-chat-q5_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "9.9GB", + "digest": "ee17956b87cc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-chat-q5_1", + "name": "qwen:14b-chat-q5_1", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "11GB", + "digest": "248b0b25c47e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-chat-q5_K_M", + "name": "qwen:14b-chat-q5_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "11GB", + "digest": "240a4381badd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-chat-q5_K_S", + "name": "qwen:14b-chat-q5_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "10GB", + "digest": "91f5698531f7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-chat-q6_K", + "name": "qwen:14b-chat-q6_K", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "12GB", + "digest": "5967f08cc189", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-chat-q8_0", + "name": "qwen:14b-chat-q8_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "15GB", + "digest": "66f562724bd2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-chat-v1.5-fp16", + "name": "qwen:14b-chat-v1.5-fp16", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "28GB", + "digest": "cb20f077361d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-chat-v1.5-q2_K", + "name": "qwen:14b-chat-v1.5-q2_K", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "6.1GB", + "digest": "42f07244d30a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-chat-v1.5-q3_K_L", + "name": "qwen:14b-chat-v1.5-q3_K_L", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "7.8GB", + "digest": "0eca84ada344", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-chat-v1.5-q3_K_M", + "name": "qwen:14b-chat-v1.5-q3_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "7.4GB", + "digest": "319f64f95f85", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-chat-v1.5-q3_K_S", + "name": "qwen:14b-chat-v1.5-q3_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "6.9GB", + "digest": "3ad40beca67d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-chat-v1.5-q4_0", + "name": "qwen:14b-chat-v1.5-q4_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "8.2GB", + "digest": "80362ced6553", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-chat-v1.5-q4_1", + "name": "qwen:14b-chat-v1.5-q4_1", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "9.0GB", + "digest": "4f50c5079631", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-chat-v1.5-q4_K_M", + "name": "qwen:14b-chat-v1.5-q4_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "9.2GB", + "digest": "128a75c88e2f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-chat-v1.5-q4_K_S", + "name": "qwen:14b-chat-v1.5-q4_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "8.6GB", + "digest": "e6c0570ce501", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-chat-v1.5-q5_0", + "name": "qwen:14b-chat-v1.5-q5_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "9.9GB", + "digest": "d06d5137e584", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-chat-v1.5-q5_1", + "name": "qwen:14b-chat-v1.5-q5_1", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "11GB", + "digest": "a16ff3fb4f19", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-chat-v1.5-q5_K_M", + "name": "qwen:14b-chat-v1.5-q5_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "11GB", + "digest": "ba0e61d66b27", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-chat-v1.5-q5_K_S", + "name": "qwen:14b-chat-v1.5-q5_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "10GB", + "digest": "85650ef588d4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-chat-v1.5-q6_K", + "name": "qwen:14b-chat-v1.5-q6_K", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "12GB", + "digest": "9378d98cce24", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-chat-v1.5-q8_0", + "name": "qwen:14b-chat-v1.5-q8_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "15GB", + "digest": "f1954a35f7ce", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-text", + "name": "qwen:14b-text", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "8.2GB", + "digest": "06e198d562c8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-text-fp16", + "name": "qwen:14b-text-fp16", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "28GB", + "digest": "c49a8e18017a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-text-q2_K", + "name": "qwen:14b-text-q2_K", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "6.0GB", + "digest": "490383e818bc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-text-q3_K_L", + "name": "qwen:14b-text-q3_K_L", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "8.0GB", + "digest": "e706cfc43d67", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-text-q3_K_M", + "name": "qwen:14b-text-q3_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "7.7GB", + "digest": "35babf7c6752", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-text-q3_K_S", + "name": "qwen:14b-text-q3_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "6.9GB", + "digest": "7b6da3dbc02c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-text-q4_0", + "name": "qwen:14b-text-q4_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "8.2GB", + "digest": "856ff95ace9a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-text-q4_1", + "name": "qwen:14b-text-q4_1", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "9.0GB", + "digest": "fb080c3f9385", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-text-q4_K_M", + "name": "qwen:14b-text-q4_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "9.4GB", + "digest": "9a20ad8849dc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-text-q4_K_S", + "name": "qwen:14b-text-q4_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "8.6GB", + "digest": "074ac9031894", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-text-q5_0", + "name": "qwen:14b-text-q5_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "9.9GB", + "digest": "7f52ab937912", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-text-q5_1", + "name": "qwen:14b-text-q5_1", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "11GB", + "digest": "9a711abdb0ca", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-text-q5_K_M", + "name": "qwen:14b-text-q5_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "11GB", + "digest": "2acf4c66179b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-text-q5_K_S", + "name": "qwen:14b-text-q5_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "10GB", + "digest": "8c818d039803", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-text-q6_K", + "name": "qwen:14b-text-q6_K", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "12GB", + "digest": "e653065c8329", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-text-q8_0", + "name": "qwen:14b-text-q8_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "15GB", + "digest": "3c3330be50fe", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-text-v1.5-fp16", + "name": "qwen:14b-text-v1.5-fp16", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "28GB", + "digest": "6a5ff630639c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-text-v1.5-q2_K", + "name": "qwen:14b-text-v1.5-q2_K", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "6.1GB", + "digest": "b29e82a9291d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-text-v1.5-q3_K_L", + "name": "qwen:14b-text-v1.5-q3_K_L", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "7.8GB", + "digest": "e5feaa6b570f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-text-v1.5-q3_K_M", + "name": "qwen:14b-text-v1.5-q3_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "7.4GB", + "digest": "8ba10671f72c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-text-v1.5-q3_K_S", + "name": "qwen:14b-text-v1.5-q3_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "6.9GB", + "digest": "79262f8761eb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-text-v1.5-q4_0", + "name": "qwen:14b-text-v1.5-q4_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "8.2GB", + "digest": "06e198d562c8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-text-v1.5-q4_1", + "name": "qwen:14b-text-v1.5-q4_1", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "9.0GB", + "digest": "3514cc84da3f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-text-v1.5-q4_K_M", + "name": "qwen:14b-text-v1.5-q4_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "9.2GB", + "digest": "4a22e598c7c9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-text-v1.5-q4_K_S", + "name": "qwen:14b-text-v1.5-q4_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "8.6GB", + "digest": "ab6680a741b8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-text-v1.5-q5_0", + "name": "qwen:14b-text-v1.5-q5_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "9.9GB", + "digest": "c9413c9c81d5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-text-v1.5-q5_1", + "name": "qwen:14b-text-v1.5-q5_1", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "11GB", + "digest": "5f196042dc74", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-text-v1.5-q5_K_M", + "name": "qwen:14b-text-v1.5-q5_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "11GB", + "digest": "1564ba9fc84c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-text-v1.5-q5_K_S", + "name": "qwen:14b-text-v1.5-q5_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "10GB", + "digest": "a31ed924fdab", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-text-v1.5-q6_K", + "name": "qwen:14b-text-v1.5-q6_K", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "12GB", + "digest": "d65ba73d052f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:14b-text-v1.5-q8_0", + "name": "qwen:14b-text-v1.5-q8_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "15GB", + "digest": "5cc57127891d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:32b-chat", + "name": "qwen:32b-chat", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "18GB", + "digest": "26e7e8447f5d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:32b-chat-v1.5-fp16", + "name": "qwen:32b-chat-v1.5-fp16", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "65GB", + "digest": "bb930ce340f6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:32b-chat-v1.5-q2_K", + "name": "qwen:32b-chat-v1.5-q2_K", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "12GB", + "digest": "cae8aaeddda8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:32b-chat-v1.5-q3_K_L", + "name": "qwen:32b-chat-v1.5-q3_K_L", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "17GB", + "digest": "d3bd7dde094e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:32b-chat-v1.5-q3_K_M", + "name": "qwen:32b-chat-v1.5-q3_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "16GB", + "digest": "ecaa1f67c173", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:32b-chat-v1.5-q3_K_S", + "name": "qwen:32b-chat-v1.5-q3_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "14GB", + "digest": "1d172657e5a4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:32b-chat-v1.5-q4_0", + "name": "qwen:32b-chat-v1.5-q4_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "18GB", + "digest": "26e7e8447f5d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:32b-chat-v1.5-q4_1", + "name": "qwen:32b-chat-v1.5-q4_1", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "20GB", + "digest": "7fe1bf3d215e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:32b-chat-v1.5-q4_K_M", + "name": "qwen:32b-chat-v1.5-q4_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "20GB", + "digest": "7975942ff0b1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:32b-chat-v1.5-q4_K_S", + "name": "qwen:32b-chat-v1.5-q4_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "19GB", + "digest": "4016dd0cf4e1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:32b-chat-v1.5-q5_0", + "name": "qwen:32b-chat-v1.5-q5_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "22GB", + "digest": "828e952fda6b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:32b-chat-v1.5-q5_1", + "name": "qwen:32b-chat-v1.5-q5_1", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "24GB", + "digest": "f3d3a42b3783", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:32b-chat-v1.5-q5_K_M", + "name": "qwen:32b-chat-v1.5-q5_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "23GB", + "digest": "380f376a451a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:32b-chat-v1.5-q5_K_S", + "name": "qwen:32b-chat-v1.5-q5_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "22GB", + "digest": "e67b35358286", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:32b-chat-v1.5-q6_K", + "name": "qwen:32b-chat-v1.5-q6_K", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "27GB", + "digest": "af95b2a2409c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:32b-chat-v1.5-q8_0", + "name": "qwen:32b-chat-v1.5-q8_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "35GB", + "digest": "33c6cb647280", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:32b-text", + "name": "qwen:32b-text", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "18GB", + "digest": "e0618f6f0310", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:32b-text-v1.5-q2_K", + "name": "qwen:32b-text-v1.5-q2_K", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "12GB", + "digest": "95302f736724", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:32b-text-v1.5-q3_K_L", + "name": "qwen:32b-text-v1.5-q3_K_L", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "17GB", + "digest": "1a047023c341", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:32b-text-v1.5-q3_K_M", + "name": "qwen:32b-text-v1.5-q3_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "16GB", + "digest": "24ea7d162ce2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:32b-text-v1.5-q3_K_S", + "name": "qwen:32b-text-v1.5-q3_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "14GB", + "digest": "1d103fa3fd6e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:32b-text-v1.5-q4_0", + "name": "qwen:32b-text-v1.5-q4_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "18GB", + "digest": "e0618f6f0310", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:32b-text-v1.5-q4_1", + "name": "qwen:32b-text-v1.5-q4_1", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "20GB", + "digest": "cefaaea22fea", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:32b-text-v1.5-q4_K_S", + "name": "qwen:32b-text-v1.5-q4_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "19GB", + "digest": "b68f170dbfd9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:32b-text-v1.5-q5_0", + "name": "qwen:32b-text-v1.5-q5_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "22GB", + "digest": "8ab0ebc4b274", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:32b-text-v1.5-q5_1", + "name": "qwen:32b-text-v1.5-q5_1", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "24GB", + "digest": "577251d3ca12", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:32b-text-v1.5-q8_0", + "name": "qwen:32b-text-v1.5-q8_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "35GB", + "digest": "60a90eb7a7da", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:4b-chat", + "name": "qwen:4b-chat", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "2.3GB", + "digest": "d53d04290064", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:4b-chat-v1.5-fp16", + "name": "qwen:4b-chat-v1.5-fp16", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "7.9GB", + "digest": "86621ca225c4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:4b-chat-v1.5-q2_K", + "name": "qwen:4b-chat-v1.5-q2_K", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "1.6GB", + "digest": "e6c11802c6ad", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:4b-chat-v1.5-q3_K_L", + "name": "qwen:4b-chat-v1.5-q3_K_L", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "2.2GB", + "digest": "373625817e6f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:4b-chat-v1.5-q3_K_M", + "name": "qwen:4b-chat-v1.5-q3_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "2.0GB", + "digest": "da9fe589f9b3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:4b-chat-v1.5-q3_K_S", + "name": "qwen:4b-chat-v1.5-q3_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "1.9GB", + "digest": "d75968a2b37c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:4b-chat-v1.5-q4_0", + "name": "qwen:4b-chat-v1.5-q4_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "2.3GB", + "digest": "d53d04290064", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:4b-chat-v1.5-q4_1", + "name": "qwen:4b-chat-v1.5-q4_1", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "2.6GB", + "digest": "8d4b987199fe", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:4b-chat-v1.5-q4_K_M", + "name": "qwen:4b-chat-v1.5-q4_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "2.5GB", + "digest": "84dd8780ab54", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:4b-chat-v1.5-q4_K_S", + "name": "qwen:4b-chat-v1.5-q4_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "2.3GB", + "digest": "1f33fcfdb4b1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:4b-chat-v1.5-q5_0", + "name": "qwen:4b-chat-v1.5-q5_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "2.8GB", + "digest": "1a7d31503b2a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:4b-chat-v1.5-q5_1", + "name": "qwen:4b-chat-v1.5-q5_1", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "3.0GB", + "digest": "061afe4b95b5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:4b-chat-v1.5-q5_K_M", + "name": "qwen:4b-chat-v1.5-q5_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "2.8GB", + "digest": "0f701078af82", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:4b-chat-v1.5-q5_K_S", + "name": "qwen:4b-chat-v1.5-q5_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "2.8GB", + "digest": "4a434490ef35", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:4b-chat-v1.5-q6_K", + "name": "qwen:4b-chat-v1.5-q6_K", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "3.2GB", + "digest": "13f15e36187d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:4b-chat-v1.5-q8_0", + "name": "qwen:4b-chat-v1.5-q8_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "4.2GB", + "digest": "7dfc4f0660c0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:4b-text", + "name": "qwen:4b-text", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "2.3GB", + "digest": "a1332f1a62c4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:4b-text-v1.5-fp16", + "name": "qwen:4b-text-v1.5-fp16", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "7.9GB", + "digest": "bd8bb0558fba", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:4b-text-v1.5-q2_K", + "name": "qwen:4b-text-v1.5-q2_K", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "1.6GB", + "digest": "9f5aaac70cb0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:4b-text-v1.5-q3_K_L", + "name": "qwen:4b-text-v1.5-q3_K_L", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "2.2GB", + "digest": "34cd35706e60", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:4b-text-v1.5-q3_K_M", + "name": "qwen:4b-text-v1.5-q3_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "2.0GB", + "digest": "b446af0b99f1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:4b-text-v1.5-q3_K_S", + "name": "qwen:4b-text-v1.5-q3_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "1.9GB", + "digest": "8a41ec56a16b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:4b-text-v1.5-q4_0", + "name": "qwen:4b-text-v1.5-q4_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "2.3GB", + "digest": "a1332f1a62c4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:4b-text-v1.5-q4_1", + "name": "qwen:4b-text-v1.5-q4_1", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "2.6GB", + "digest": "0139d9637b43", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:4b-text-v1.5-q4_K_M", + "name": "qwen:4b-text-v1.5-q4_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "2.5GB", + "digest": "ba6453687014", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:4b-text-v1.5-q4_K_S", + "name": "qwen:4b-text-v1.5-q4_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "2.3GB", + "digest": "a569a7c9c36b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:4b-text-v1.5-q5_0", + "name": "qwen:4b-text-v1.5-q5_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "2.8GB", + "digest": "9c5c32de923f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:4b-text-v1.5-q5_1", + "name": "qwen:4b-text-v1.5-q5_1", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "3.0GB", + "digest": "33f576bd435a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:4b-text-v1.5-q5_K_M", + "name": "qwen:4b-text-v1.5-q5_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "2.8GB", + "digest": "55b9362ae113", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:4b-text-v1.5-q5_K_S", + "name": "qwen:4b-text-v1.5-q5_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "2.8GB", + "digest": "dc8f41c10a81", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:4b-text-v1.5-q6_K", + "name": "qwen:4b-text-v1.5-q6_K", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "3.2GB", + "digest": "e40c4d6f1e33", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:4b-text-v1.5-q8_0", + "name": "qwen:4b-text-v1.5-q8_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "4.2GB", + "digest": "e3bafc3eec84", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-chat", + "name": "qwen:72b-chat", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "41GB", + "digest": "e1c64582de5c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-chat-fp16", + "name": "qwen:72b-chat-fp16", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "145GB", + "digest": "123c97eccf0d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-chat-q2_K", + "name": "qwen:72b-chat-q2_K", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "27GB", + "digest": "244e559ab857", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-chat-q3_K_L", + "name": "qwen:72b-chat-q3_K_L", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "39GB", + "digest": "227bc5757311", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-chat-q3_K_M", + "name": "qwen:72b-chat-q3_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "37GB", + "digest": "2142023c2267", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-chat-q3_K_S", + "name": "qwen:72b-chat-q3_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "32GB", + "digest": "e69b5490aa6d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-chat-q4_0", + "name": "qwen:72b-chat-q4_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "41GB", + "digest": "bf2a98cf5f68", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-chat-q4_1", + "name": "qwen:72b-chat-q4_1", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "45GB", + "digest": "4d7d270862ce", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-chat-q4_K_M", + "name": "qwen:72b-chat-q4_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "45GB", + "digest": "d1f376d8aaa7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-chat-q4_K_S", + "name": "qwen:72b-chat-q4_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "41GB", + "digest": "5c65776c1c19", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-chat-q5_0", + "name": "qwen:72b-chat-q5_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "50GB", + "digest": "7363152de4ba", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-chat-q5_1", + "name": "qwen:72b-chat-q5_1", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "54GB", + "digest": "d3f70b712d5c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-chat-q5_K_M", + "name": "qwen:72b-chat-q5_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "53GB", + "digest": "29453752b3f1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-chat-q5_K_S", + "name": "qwen:72b-chat-q5_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "50GB", + "digest": "f9a9015181f4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-chat-q6_K", + "name": "qwen:72b-chat-q6_K", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "59GB", + "digest": "5d2b88c19b53", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-chat-q8_0", + "name": "qwen:72b-chat-q8_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "77GB", + "digest": "030f5b2af0ff", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-chat-v1.5-fp16", + "name": "qwen:72b-chat-v1.5-fp16", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "145GB", + "digest": "28d7b95e342e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-chat-v1.5-q2_K", + "name": "qwen:72b-chat-v1.5-q2_K", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "28GB", + "digest": "26d588038b9d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-chat-v1.5-q3_K_L", + "name": "qwen:72b-chat-v1.5-q3_K_L", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "38GB", + "digest": "1a4a7d398f67", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-chat-v1.5-q3_K_M", + "name": "qwen:72b-chat-v1.5-q3_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "36GB", + "digest": "8c8712c6e79c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-chat-v1.5-q3_K_S", + "name": "qwen:72b-chat-v1.5-q3_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "33GB", + "digest": "a3f91495a290", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-chat-v1.5-q4_0", + "name": "qwen:72b-chat-v1.5-q4_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "41GB", + "digest": "e1c64582de5c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-chat-v1.5-q4_1", + "name": "qwen:72b-chat-v1.5-q4_1", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "45GB", + "digest": "a5a048009124", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-chat-v1.5-q4_K_M", + "name": "qwen:72b-chat-v1.5-q4_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "44GB", + "digest": "92daf708b997", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-chat-v1.5-q4_K_S", + "name": "qwen:72b-chat-v1.5-q4_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "42GB", + "digest": "7e941773ce08", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-chat-v1.5-q5_0", + "name": "qwen:72b-chat-v1.5-q5_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "50GB", + "digest": "7ff940bf7ddc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-chat-v1.5-q5_1", + "name": "qwen:72b-chat-v1.5-q5_1", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "54GB", + "digest": "8432bf6237b9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-chat-v1.5-q5_K_M", + "name": "qwen:72b-chat-v1.5-q5_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "51GB", + "digest": "13a773260811", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-chat-v1.5-q5_K_S", + "name": "qwen:72b-chat-v1.5-q5_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "50GB", + "digest": "f92117215877", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-chat-v1.5-q6_K", + "name": "qwen:72b-chat-v1.5-q6_K", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "59GB", + "digest": "5e3a83c19698", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-chat-v1.5-q8_0", + "name": "qwen:72b-chat-v1.5-q8_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "77GB", + "digest": "d9fd9f90f55b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-text", + "name": "qwen:72b-text", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "63GB", + "digest": "641bc60e9274", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-text-fp16", + "name": "qwen:72b-text-fp16", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "145GB", + "digest": "34db8c6fcc66", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-text-q2_K", + "name": "qwen:72b-text-q2_K", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "27GB", + "digest": "23b4e03b0625", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-text-q3_K_L", + "name": "qwen:72b-text-q3_K_L", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "39GB", + "digest": "a7cdeaeb4dc6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-text-q3_K_M", + "name": "qwen:72b-text-q3_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "37GB", + "digest": "1c5d6fd01ff9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-text-q3_K_S", + "name": "qwen:72b-text-q3_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "32GB", + "digest": "325a8011ee4b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-text-q4_0", + "name": "qwen:72b-text-q4_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "41GB", + "digest": "1cd3d5885ed6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-text-q4_1", + "name": "qwen:72b-text-q4_1", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "45GB", + "digest": "b466cc1b68b6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-text-q4_K_M", + "name": "qwen:72b-text-q4_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "45GB", + "digest": "17d08105327a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-text-q4_K_S", + "name": "qwen:72b-text-q4_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "41GB", + "digest": "66750638e89b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-text-q5_0", + "name": "qwen:72b-text-q5_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "50GB", + "digest": "d552a292aad1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-text-q5_1", + "name": "qwen:72b-text-q5_1", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "54GB", + "digest": "d8d15961dfea", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-text-q5_K_M", + "name": "qwen:72b-text-q5_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "53GB", + "digest": "5a9b21fe4698", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-text-q5_K_S", + "name": "qwen:72b-text-q5_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "50GB", + "digest": "c47f6138bc77", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-text-q6_K", + "name": "qwen:72b-text-q6_K", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "59GB", + "digest": "025578f7c6ba", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-text-q8_0", + "name": "qwen:72b-text-q8_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "77GB", + "digest": "5c8b151ce1ed", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-text-v1.5-fp16", + "name": "qwen:72b-text-v1.5-fp16", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "145GB", + "digest": "e45fb69e7592", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-text-v1.5-q2_K", + "name": "qwen:72b-text-v1.5-q2_K", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "28GB", + "digest": "197347e6f44a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-text-v1.5-q3_K_L", + "name": "qwen:72b-text-v1.5-q3_K_L", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "38GB", + "digest": "12d317b5786e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-text-v1.5-q3_K_M", + "name": "qwen:72b-text-v1.5-q3_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "36GB", + "digest": "0369ae92fbbb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-text-v1.5-q3_K_S", + "name": "qwen:72b-text-v1.5-q3_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "33GB", + "digest": "543046c80b47", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-text-v1.5-q4_0", + "name": "qwen:72b-text-v1.5-q4_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "41GB", + "digest": "d5c16df7f831", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-text-v1.5-q4_1", + "name": "qwen:72b-text-v1.5-q4_1", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "45GB", + "digest": "c43dd2a16f0f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-text-v1.5-q4_K_M", + "name": "qwen:72b-text-v1.5-q4_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "44GB", + "digest": "b6c1eefce0a6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-text-v1.5-q4_K_S", + "name": "qwen:72b-text-v1.5-q4_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "42GB", + "digest": "c395d71df009", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-text-v1.5-q5_0", + "name": "qwen:72b-text-v1.5-q5_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "50GB", + "digest": "ce956e731751", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-text-v1.5-q5_1", + "name": "qwen:72b-text-v1.5-q5_1", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "54GB", + "digest": "e61f727ecdb2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-text-v1.5-q5_K_M", + "name": "qwen:72b-text-v1.5-q5_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "51GB", + "digest": "ea68416fee98", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-text-v1.5-q5_K_S", + "name": "qwen:72b-text-v1.5-q5_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "50GB", + "digest": "8c427eabb6e1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-text-v1.5-q6_K", + "name": "qwen:72b-text-v1.5-q6_K", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "59GB", + "digest": "c75eef5a9035", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:72b-text-v1.5-q8_0", + "name": "qwen:72b-text-v1.5-q8_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "77GB", + "digest": "da7cc3b6659a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-chat", + "name": "qwen:7b-chat", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "4.5GB", + "digest": "2091ee8c8d8f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-chat-fp16", + "name": "qwen:7b-chat-fp16", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "15GB", + "digest": "496130f8bb9c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-chat-q2_K", + "name": "qwen:7b-chat-q2_K", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "3.0GB", + "digest": "b1e83e951244", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-chat-q3_K_L", + "name": "qwen:7b-chat-q3_K_L", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "4.3GB", + "digest": "6c760e557c98", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-chat-q3_K_M", + "name": "qwen:7b-chat-q3_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "4.1GB", + "digest": "981740748bb1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-chat-q3_K_S", + "name": "qwen:7b-chat-q3_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "3.6GB", + "digest": "6ee05062598c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-chat-q4_0", + "name": "qwen:7b-chat-q4_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "4.5GB", + "digest": "8a759e224c54", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-chat-q4_1", + "name": "qwen:7b-chat-q4_1", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "5.0GB", + "digest": "e70d79f49f09", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-chat-q4_K_M", + "name": "qwen:7b-chat-q4_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "4.9GB", + "digest": "6c6f9fb7cb7b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-chat-q4_K_S", + "name": "qwen:7b-chat-q4_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "4.5GB", + "digest": "670c5afa68d5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-chat-q5_0", + "name": "qwen:7b-chat-q5_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "5.4GB", + "digest": "940f9af7bba7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-chat-q5_1", + "name": "qwen:7b-chat-q5_1", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "5.8GB", + "digest": "71556ed81da3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-chat-q5_K_M", + "name": "qwen:7b-chat-q5_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "5.7GB", + "digest": "eb70368f4555", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-chat-q5_K_S", + "name": "qwen:7b-chat-q5_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "5.4GB", + "digest": "82f7b355c834", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-chat-q6_K", + "name": "qwen:7b-chat-q6_K", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "6.3GB", + "digest": "be7c8c5aee85", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-chat-q8_0", + "name": "qwen:7b-chat-q8_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "8.2GB", + "digest": "75224d9ec839", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-chat-v1.5-fp16", + "name": "qwen:7b-chat-v1.5-fp16", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "15GB", + "digest": "39e2b1482d7d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-chat-v1.5-q2_K", + "name": "qwen:7b-chat-v1.5-q2_K", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "3.1GB", + "digest": "faee39b0b827", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-chat-v1.5-q3_K_L", + "name": "qwen:7b-chat-v1.5-q3_K_L", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "4.2GB", + "digest": "c78b559835da", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-chat-v1.5-q3_K_M", + "name": "qwen:7b-chat-v1.5-q3_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "3.9GB", + "digest": "dfd589fd9f3b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-chat-v1.5-q3_K_S", + "name": "qwen:7b-chat-v1.5-q3_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "3.6GB", + "digest": "ef462b8bc3ca", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-chat-v1.5-q4_0", + "name": "qwen:7b-chat-v1.5-q4_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "4.5GB", + "digest": "2091ee8c8d8f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-chat-v1.5-q4_1", + "name": "qwen:7b-chat-v1.5-q4_1", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "5.0GB", + "digest": "3dc4f8204e32", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-chat-v1.5-q4_K_M", + "name": "qwen:7b-chat-v1.5-q4_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "4.8GB", + "digest": "315448cc7b99", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-chat-v1.5-q4_K_S", + "name": "qwen:7b-chat-v1.5-q4_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "4.5GB", + "digest": "1b769918d6f3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-chat-v1.5-q5_0", + "name": "qwen:7b-chat-v1.5-q5_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "5.4GB", + "digest": "76b41a9e206c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-chat-v1.5-q5_1", + "name": "qwen:7b-chat-v1.5-q5_1", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "5.8GB", + "digest": "80b5a8dd99a2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-chat-v1.5-q5_K_M", + "name": "qwen:7b-chat-v1.5-q5_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "5.5GB", + "digest": "44ca6b3fda9d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-chat-v1.5-q5_K_S", + "name": "qwen:7b-chat-v1.5-q5_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "5.4GB", + "digest": "94f4b35970c7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-chat-v1.5-q6_K", + "name": "qwen:7b-chat-v1.5-q6_K", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "6.3GB", + "digest": "6b5b161d1076", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-chat-v1.5-q8_0", + "name": "qwen:7b-chat-v1.5-q8_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "8.2GB", + "digest": "3985a6e61dfa", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-fp16", + "name": "qwen:7b-fp16", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "15GB", + "digest": "bdb4603ac3f3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-q2_K", + "name": "qwen:7b-q2_K", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "3.0GB", + "digest": "afe0b73c064a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-q3_K_L", + "name": "qwen:7b-q3_K_L", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "4.3GB", + "digest": "2a971f9c4019", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-q3_K_M", + "name": "qwen:7b-q3_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "4.1GB", + "digest": "407571073d23", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-q3_K_S", + "name": "qwen:7b-q3_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "3.6GB", + "digest": "e770768ad724", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-q4_0", + "name": "qwen:7b-q4_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "4.5GB", + "digest": "a602ed3d295f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-q4_1", + "name": "qwen:7b-q4_1", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "5.0GB", + "digest": "aced3b622251", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-q4_K_M", + "name": "qwen:7b-q4_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "4.9GB", + "digest": "e6124c271f88", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-q4_K_S", + "name": "qwen:7b-q4_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "4.5GB", + "digest": "13660ea6e426", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-q5_0", + "name": "qwen:7b-q5_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "5.4GB", + "digest": "82a77b5d2839", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-q5_1", + "name": "qwen:7b-q5_1", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "5.8GB", + "digest": "3a554a4eca23", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-q5_K_M", + "name": "qwen:7b-q5_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "5.7GB", + "digest": "ee14f131c864", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-q5_K_S", + "name": "qwen:7b-q5_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "5.4GB", + "digest": "48ac7dcf12ec", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-q6_K", + "name": "qwen:7b-q6_K", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "6.3GB", + "digest": "733a6dcda35a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-q8_0", + "name": "qwen:7b-q8_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "8.2GB", + "digest": "ea380ed299dd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-text", + "name": "qwen:7b-text", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "4.5GB", + "digest": "952dc7c77fea", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-text-v1.5-fp16", + "name": "qwen:7b-text-v1.5-fp16", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "15GB", + "digest": "ba1ea7856323", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-text-v1.5-q2_K", + "name": "qwen:7b-text-v1.5-q2_K", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "3.1GB", + "digest": "7c798100fec5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-text-v1.5-q3_K_L", + "name": "qwen:7b-text-v1.5-q3_K_L", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "4.2GB", + "digest": "c103abc28f47", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-text-v1.5-q3_K_M", + "name": "qwen:7b-text-v1.5-q3_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "3.9GB", + "digest": "fab4b0426e2d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-text-v1.5-q3_K_S", + "name": "qwen:7b-text-v1.5-q3_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "3.6GB", + "digest": "59ff1e9f7a72", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-text-v1.5-q4_0", + "name": "qwen:7b-text-v1.5-q4_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "4.5GB", + "digest": "952dc7c77fea", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-text-v1.5-q4_1", + "name": "qwen:7b-text-v1.5-q4_1", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "5.0GB", + "digest": "1c67239d76ac", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-text-v1.5-q4_K_M", + "name": "qwen:7b-text-v1.5-q4_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "4.8GB", + "digest": "a2e8ed289a56", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-text-v1.5-q4_K_S", + "name": "qwen:7b-text-v1.5-q4_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "4.5GB", + "digest": "05bb240791f0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-text-v1.5-q5_0", + "name": "qwen:7b-text-v1.5-q5_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "5.4GB", + "digest": "2074857a59f8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-text-v1.5-q5_1", + "name": "qwen:7b-text-v1.5-q5_1", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "5.8GB", + "digest": "0945490c2698", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-text-v1.5-q5_K_M", + "name": "qwen:7b-text-v1.5-q5_K_M", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "5.5GB", + "digest": "4bf2de545437", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-text-v1.5-q5_K_S", + "name": "qwen:7b-text-v1.5-q5_K_S", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "5.4GB", + "digest": "6d3df3af15c9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-text-v1.5-q6_K", + "name": "qwen:7b-text-v1.5-q6_K", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "6.3GB", + "digest": "989f69b773a3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen:7b-text-v1.5-q8_0", + "name": "qwen:7b-text-v1.5-q8_0", + "description": "Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5B to 110B parameters", + "size": "8.2GB", + "digest": "968572e9757d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma", + "name": "gemma", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "5.0GB", + "digest": "a72c7f4d0a15", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "gemma:2b", + "name": "gemma:2b", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "1.7GB", + "digest": "b50d6c999e59", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:7b", + "name": "gemma:7b", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "5.0GB", + "digest": "a72c7f4d0a15", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:2b-instruct", + "name": "gemma:2b-instruct", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "1.6GB", + "digest": "030ee63283b5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:2b-instruct-fp16", + "name": "gemma:2b-instruct-fp16", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "4.5GB", + "digest": "1cca4a1914b8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:2b-instruct-q2_K", + "name": "gemma:2b-instruct-q2_K", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "1.3GB", + "digest": "462aa639add9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:2b-instruct-q3_K_L", + "name": "gemma:2b-instruct-q3_K_L", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "1.6GB", + "digest": "a5e1a96f2947", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:2b-instruct-q3_K_M", + "name": "gemma:2b-instruct-q3_K_M", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "1.5GB", + "digest": "0bb5a6a99256", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:2b-instruct-q3_K_S", + "name": "gemma:2b-instruct-q3_K_S", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "1.4GB", + "digest": "1147ae8910c1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:2b-instruct-q4_0", + "name": "gemma:2b-instruct-q4_0", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "1.7GB", + "digest": "b50d6c999e59", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:2b-instruct-q4_1", + "name": "gemma:2b-instruct-q4_1", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "1.8GB", + "digest": "79f47baf629d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:2b-instruct-q4_K_M", + "name": "gemma:2b-instruct-q4_K_M", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "1.8GB", + "digest": "073d0876d678", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:2b-instruct-q4_K_S", + "name": "gemma:2b-instruct-q4_K_S", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "1.7GB", + "digest": "1f62e695daaf", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:2b-instruct-q5_0", + "name": "gemma:2b-instruct-q5_0", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "1.9GB", + "digest": "f2e0978e20a7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:2b-instruct-q5_1", + "name": "gemma:2b-instruct-q5_1", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "2.1GB", + "digest": "2005cd5b9f9a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:2b-instruct-q5_K_M", + "name": "gemma:2b-instruct-q5_K_M", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "2.0GB", + "digest": "79fe7a4a6e26", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:2b-instruct-q5_K_S", + "name": "gemma:2b-instruct-q5_K_S", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "1.9GB", + "digest": "466d55f10b72", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:2b-instruct-q6_K", + "name": "gemma:2b-instruct-q6_K", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "2.2GB", + "digest": "2934d89f4873", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:2b-instruct-q8_0", + "name": "gemma:2b-instruct-q8_0", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "2.7GB", + "digest": "233b6c11a9a9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:2b-instruct-v1.1-fp16", + "name": "gemma:2b-instruct-v1.1-fp16", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "5.0GB", + "digest": "fa8ddc50dcc2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:2b-instruct-v1.1-q2_K", + "name": "gemma:2b-instruct-v1.1-q2_K", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "1.2GB", + "digest": "8be00e58cf4f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:2b-instruct-v1.1-q3_K_L", + "name": "gemma:2b-instruct-v1.1-q3_K_L", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "1.5GB", + "digest": "198260e1ebc4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:2b-instruct-v1.1-q3_K_M", + "name": "gemma:2b-instruct-v1.1-q3_K_M", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "1.4GB", + "digest": "5bb1882722eb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:2b-instruct-v1.1-q3_K_S", + "name": "gemma:2b-instruct-v1.1-q3_K_S", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "1.3GB", + "digest": "fa7ef5ec4918", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:2b-instruct-v1.1-q4_0", + "name": "gemma:2b-instruct-v1.1-q4_0", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "1.6GB", + "digest": "030ee63283b5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:2b-instruct-v1.1-q4_1", + "name": "gemma:2b-instruct-v1.1-q4_1", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "1.7GB", + "digest": "7eceb81ab6c2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:2b-instruct-v1.1-q4_K_M", + "name": "gemma:2b-instruct-v1.1-q4_K_M", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "1.6GB", + "digest": "1a26b1fdc8cf", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:2b-instruct-v1.1-q4_K_S", + "name": "gemma:2b-instruct-v1.1-q4_K_S", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "1.6GB", + "digest": "0c8c655954ea", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:2b-instruct-v1.1-q5_0", + "name": "gemma:2b-instruct-v1.1-q5_0", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "1.8GB", + "digest": "08119f9e759a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:2b-instruct-v1.1-q5_1", + "name": "gemma:2b-instruct-v1.1-q5_1", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "1.9GB", + "digest": "c30cb73e47bb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:2b-instruct-v1.1-q5_K_M", + "name": "gemma:2b-instruct-v1.1-q5_K_M", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "1.8GB", + "digest": "8b4445dd0168", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:2b-instruct-v1.1-q5_K_S", + "name": "gemma:2b-instruct-v1.1-q5_K_S", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "1.8GB", + "digest": "86981b46f254", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:2b-instruct-v1.1-q6_K", + "name": "gemma:2b-instruct-v1.1-q6_K", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "2.1GB", + "digest": "25735feffbe0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:2b-instruct-v1.1-q8_0", + "name": "gemma:2b-instruct-v1.1-q8_0", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "2.7GB", + "digest": "040645156534", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:2b-text", + "name": "gemma:2b-text", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "1.7GB", + "digest": "4003359bdf67", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:2b-text-fp16", + "name": "gemma:2b-text-fp16", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "4.5GB", + "digest": "bced1b198253", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:2b-text-q2_K", + "name": "gemma:2b-text-q2_K", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "1.3GB", + "digest": "fa08f447fb74", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:2b-text-q3_K_L", + "name": "gemma:2b-text-q3_K_L", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "1.6GB", + "digest": "fb3cb86ed3a0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:2b-text-q3_K_M", + "name": "gemma:2b-text-q3_K_M", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "1.5GB", + "digest": "3755aa666a62", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:2b-text-q3_K_S", + "name": "gemma:2b-text-q3_K_S", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "1.4GB", + "digest": "30edc7975a67", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:2b-text-q4_0", + "name": "gemma:2b-text-q4_0", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "1.7GB", + "digest": "4003359bdf67", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:2b-text-q4_1", + "name": "gemma:2b-text-q4_1", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "1.8GB", + "digest": "2336b3481fc2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:2b-text-q4_K_M", + "name": "gemma:2b-text-q4_K_M", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "1.8GB", + "digest": "14b9181dd33c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:2b-text-q4_K_S", + "name": "gemma:2b-text-q4_K_S", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "1.7GB", + "digest": "e1f170c66fed", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:2b-text-q5_0", + "name": "gemma:2b-text-q5_0", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "1.9GB", + "digest": "b82a85f35c76", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:2b-text-q5_1", + "name": "gemma:2b-text-q5_1", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "2.1GB", + "digest": "af9d160f687e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:2b-text-q5_K_M", + "name": "gemma:2b-text-q5_K_M", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "2.0GB", + "digest": "75095004592a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:2b-text-q5_K_S", + "name": "gemma:2b-text-q5_K_S", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "1.9GB", + "digest": "dbbce6ea20a0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:2b-text-q6_K", + "name": "gemma:2b-text-q6_K", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "2.2GB", + "digest": "5bd4a449bdbe", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:2b-text-q8_0", + "name": "gemma:2b-text-q8_0", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "2.7GB", + "digest": "40e5082de8d9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:2b-v1.1", + "name": "gemma:2b-v1.1", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "1.6GB", + "digest": "030ee63283b5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:7b-instruct", + "name": "gemma:7b-instruct", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "5.0GB", + "digest": "a72c7f4d0a15", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:7b-instruct-fp16", + "name": "gemma:7b-instruct-fp16", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "17GB", + "digest": "f689ad351c8d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:7b-instruct-q2_K", + "name": "gemma:7b-instruct-q2_K", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "3.7GB", + "digest": "831e95226882", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:7b-instruct-q3_K_L", + "name": "gemma:7b-instruct-q3_K_L", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "4.9GB", + "digest": "1fa1f8e1a003", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:7b-instruct-q3_K_M", + "name": "gemma:7b-instruct-q3_K_M", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "4.6GB", + "digest": "92dd270cb673", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:7b-instruct-q3_K_S", + "name": "gemma:7b-instruct-q3_K_S", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "4.2GB", + "digest": "e4aea70c287e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:7b-instruct-q4_0", + "name": "gemma:7b-instruct-q4_0", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "5.2GB", + "digest": "430ed3535049", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:7b-instruct-q4_1", + "name": "gemma:7b-instruct-q4_1", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "5.7GB", + "digest": "e1e4a2e0c8ee", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:7b-instruct-q4_K_M", + "name": "gemma:7b-instruct-q4_K_M", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "5.5GB", + "digest": "d9c26a968eb4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:7b-instruct-q4_K_S", + "name": "gemma:7b-instruct-q4_K_S", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "5.2GB", + "digest": "bb7b8325814d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:7b-instruct-q5_0", + "name": "gemma:7b-instruct-q5_0", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "6.2GB", + "digest": "de923fde2f26", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:7b-instruct-q5_1", + "name": "gemma:7b-instruct-q5_1", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "6.7GB", + "digest": "2e51588baf45", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:7b-instruct-q5_K_M", + "name": "gemma:7b-instruct-q5_K_M", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "6.3GB", + "digest": "556abeb39bfd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:7b-instruct-q5_K_S", + "name": "gemma:7b-instruct-q5_K_S", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "6.2GB", + "digest": "42630cbe71a2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:7b-instruct-q6_K", + "name": "gemma:7b-instruct-q6_K", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "7.2GB", + "digest": "5c7aded0b8bd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:7b-instruct-q8_0", + "name": "gemma:7b-instruct-q8_0", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "9.1GB", + "digest": "61d0f0df3637", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:7b-instruct-v1.1-fp16", + "name": "gemma:7b-instruct-v1.1-fp16", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "17GB", + "digest": "056b9586873a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:7b-instruct-v1.1-q2_K", + "name": "gemma:7b-instruct-v1.1-q2_K", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "3.5GB", + "digest": "bbdb1a3dd39f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:7b-instruct-v1.1-q3_K_L", + "name": "gemma:7b-instruct-v1.1-q3_K_L", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "4.7GB", + "digest": "567c802627ea", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:7b-instruct-v1.1-q3_K_M", + "name": "gemma:7b-instruct-v1.1-q3_K_M", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "4.4GB", + "digest": "e71bd8c16242", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:7b-instruct-v1.1-q3_K_S", + "name": "gemma:7b-instruct-v1.1-q3_K_S", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "4.0GB", + "digest": "d858885a94e0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:7b-instruct-v1.1-q4_0", + "name": "gemma:7b-instruct-v1.1-q4_0", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "5.0GB", + "digest": "a72c7f4d0a15", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:7b-instruct-v1.1-q4_1", + "name": "gemma:7b-instruct-v1.1-q4_1", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "5.5GB", + "digest": "a65ceace358f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:7b-instruct-v1.1-q4_K_M", + "name": "gemma:7b-instruct-v1.1-q4_K_M", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "5.3GB", + "digest": "81c8c66b7df1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:7b-instruct-v1.1-q4_K_S", + "name": "gemma:7b-instruct-v1.1-q4_K_S", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "5.0GB", + "digest": "2c55699e04d0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:7b-instruct-v1.1-q5_0", + "name": "gemma:7b-instruct-v1.1-q5_0", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "6.0GB", + "digest": "800d99beee5d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:7b-instruct-v1.1-q5_1", + "name": "gemma:7b-instruct-v1.1-q5_1", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "6.5GB", + "digest": "cdf1dca21036", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:7b-instruct-v1.1-q5_K_M", + "name": "gemma:7b-instruct-v1.1-q5_K_M", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "6.1GB", + "digest": "adf00ced5519", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:7b-instruct-v1.1-q5_K_S", + "name": "gemma:7b-instruct-v1.1-q5_K_S", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "6.0GB", + "digest": "31eb523ac3df", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:7b-instruct-v1.1-q6_K", + "name": "gemma:7b-instruct-v1.1-q6_K", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "7.0GB", + "digest": "ad2f1a0dacb5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:7b-instruct-v1.1-q8_0", + "name": "gemma:7b-instruct-v1.1-q8_0", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "9.1GB", + "digest": "f6dee485fe1a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:7b-text", + "name": "gemma:7b-text", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "5.2GB", + "digest": "af57093b878e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:7b-text-fp16", + "name": "gemma:7b-text-fp16", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "16GB", + "digest": "1f1e9df10872", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:7b-text-q2_K", + "name": "gemma:7b-text-q2_K", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "3.7GB", + "digest": "e43e18a484ed", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:7b-text-q3_K_L", + "name": "gemma:7b-text-q3_K_L", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "4.9GB", + "digest": "1676d1f86165", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:7b-text-q3_K_M", + "name": "gemma:7b-text-q3_K_M", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "4.6GB", + "digest": "ffd8ea66cf1f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:7b-text-q3_K_S", + "name": "gemma:7b-text-q3_K_S", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "4.2GB", + "digest": "f40e21d459ff", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:7b-text-q4_0", + "name": "gemma:7b-text-q4_0", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "5.2GB", + "digest": "af57093b878e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:7b-text-q4_1", + "name": "gemma:7b-text-q4_1", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "5.7GB", + "digest": "a7adb7322d8b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:7b-text-q4_K_M", + "name": "gemma:7b-text-q4_K_M", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "5.5GB", + "digest": "5ec372e05241", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:7b-text-q4_K_S", + "name": "gemma:7b-text-q4_K_S", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "5.2GB", + "digest": "51854f1241b3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:7b-text-q5_0", + "name": "gemma:7b-text-q5_0", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "6.2GB", + "digest": "fd6dc849a9f8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:7b-text-q5_1", + "name": "gemma:7b-text-q5_1", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "6.7GB", + "digest": "938308342124", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:7b-text-q5_K_M", + "name": "gemma:7b-text-q5_K_M", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "6.3GB", + "digest": "dc8f812e49c7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:7b-text-q5_K_S", + "name": "gemma:7b-text-q5_K_S", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "6.2GB", + "digest": "df449b30e2e1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:7b-text-q6_K", + "name": "gemma:7b-text-q6_K", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "7.2GB", + "digest": "9e7cfd3fab5b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:7b-text-q8_0", + "name": "gemma:7b-text-q8_0", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "9.1GB", + "digest": "1b7b1e5e2f98", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:7b-v1.1", + "name": "gemma:7b-v1.1", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "5.0GB", + "digest": "a72c7f4d0a15", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:instruct", + "name": "gemma:instruct", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "5.0GB", + "digest": "a72c7f4d0a15", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:text", + "name": "gemma:text", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "5.2GB", + "digest": "af57093b878e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma:v1.1", + "name": "gemma:v1.1", + "description": "Gemma is a family of lightweight, state-of-the-art open models built by Google DeepMind. Updated to version 1.1", + "size": "5.0GB", + "digest": "a72c7f4d0a15", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2", + "name": "qwen2", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "4.4GB", + "digest": "dd314f039b9d", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "qwen2:0.5b", + "name": "qwen2:0.5b", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "352MB", + "digest": "6f48b936a09f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:1.5b", + "name": "qwen2:1.5b", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "935MB", + "digest": "f6daf2b25194", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:7b", + "name": "qwen2:7b", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "4.4GB", + "digest": "dd314f039b9d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:72b", + "name": "qwen2:72b", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "41GB", + "digest": "93563ef658b2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:0.5b-instruct", + "name": "qwen2:0.5b-instruct", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "352MB", + "digest": "6f48b936a09f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:0.5b-instruct-fp16", + "name": "qwen2:0.5b-instruct-fp16", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "994MB", + "digest": "f9b12d5481d2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:0.5b-instruct-q2_K", + "name": "qwen2:0.5b-instruct-q2_K", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "339MB", + "digest": "06dda8c1519a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:0.5b-instruct-q3_K_L", + "name": "qwen2:0.5b-instruct-q3_K_L", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "369MB", + "digest": "425aee1fa207", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:0.5b-instruct-q3_K_M", + "name": "qwen2:0.5b-instruct-q3_K_M", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "355MB", + "digest": "2adbb16f0a5d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:0.5b-instruct-q3_K_S", + "name": "qwen2:0.5b-instruct-q3_K_S", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "338MB", + "digest": "ae41a13fd9b2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:0.5b-instruct-q4_0", + "name": "qwen2:0.5b-instruct-q4_0", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "352MB", + "digest": "6f48b936a09f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:0.5b-instruct-q4_1", + "name": "qwen2:0.5b-instruct-q4_1", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "375MB", + "digest": "a1a9a139f5f4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:0.5b-instruct-q4_K_M", + "name": "qwen2:0.5b-instruct-q4_K_M", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "398MB", + "digest": "19d15f48d098", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:0.5b-instruct-q4_K_S", + "name": "qwen2:0.5b-instruct-q4_K_S", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "385MB", + "digest": "f6898a38eeae", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:0.5b-instruct-q5_0", + "name": "qwen2:0.5b-instruct-q5_0", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "397MB", + "digest": "b17625f38956", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:0.5b-instruct-q5_1", + "name": "qwen2:0.5b-instruct-q5_1", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "419MB", + "digest": "76769ded76b2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:0.5b-instruct-q5_K_M", + "name": "qwen2:0.5b-instruct-q5_K_M", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "420MB", + "digest": "d9515b0adb44", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:0.5b-instruct-q5_K_S", + "name": "qwen2:0.5b-instruct-q5_K_S", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "413MB", + "digest": "dfba5ca4486a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:0.5b-instruct-q6_K", + "name": "qwen2:0.5b-instruct-q6_K", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "506MB", + "digest": "8e5bba81c7b5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:0.5b-instruct-q8_0", + "name": "qwen2:0.5b-instruct-q8_0", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "531MB", + "digest": "6b8eef84f0bf", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:1.5b-instruct", + "name": "qwen2:1.5b-instruct", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "935MB", + "digest": "f6daf2b25194", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:1.5b-instruct-fp16", + "name": "qwen2:1.5b-instruct-fp16", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "3.1GB", + "digest": "44ae02940761", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:1.5b-instruct-q2_K", + "name": "qwen2:1.5b-instruct-q2_K", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "676MB", + "digest": "7851c5581bce", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:1.5b-instruct-q3_K_L", + "name": "qwen2:1.5b-instruct-q3_K_L", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "880MB", + "digest": "2c7ac92e9b2a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:1.5b-instruct-q3_K_M", + "name": "qwen2:1.5b-instruct-q3_K_M", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "824MB", + "digest": "4a143b4bca71", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:1.5b-instruct-q3_K_S", + "name": "qwen2:1.5b-instruct-q3_K_S", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "761MB", + "digest": "980b3bdef07c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:1.5b-instruct-q4_0", + "name": "qwen2:1.5b-instruct-q4_0", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "935MB", + "digest": "f6daf2b25194", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:1.5b-instruct-q4_1", + "name": "qwen2:1.5b-instruct-q4_1", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "1.0GB", + "digest": "8cbdd0be53c3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:1.5b-instruct-q4_K_M", + "name": "qwen2:1.5b-instruct-q4_K_M", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "986MB", + "digest": "0d2a504f5771", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:1.5b-instruct-q4_K_S", + "name": "qwen2:1.5b-instruct-q4_K_S", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "940MB", + "digest": "976868269c51", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:1.5b-instruct-q5_0", + "name": "qwen2:1.5b-instruct-q5_0", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "1.1GB", + "digest": "945eea96cfa5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:1.5b-instruct-q5_1", + "name": "qwen2:1.5b-instruct-q5_1", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "1.2GB", + "digest": "5b1266375ca6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:1.5b-instruct-q5_K_M", + "name": "qwen2:1.5b-instruct-q5_K_M", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "1.1GB", + "digest": "2ce7afe8f9e9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:1.5b-instruct-q5_K_S", + "name": "qwen2:1.5b-instruct-q5_K_S", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "1.1GB", + "digest": "272e01e2734a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:1.5b-instruct-q6_K", + "name": "qwen2:1.5b-instruct-q6_K", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "1.3GB", + "digest": "1fcc9e410c55", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:1.5b-instruct-q8_0", + "name": "qwen2:1.5b-instruct-q8_0", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "1.6GB", + "digest": "908c3f054aac", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:72b-instruct", + "name": "qwen2:72b-instruct", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "41GB", + "digest": "93563ef658b2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:72b-instruct-fp16", + "name": "qwen2:72b-instruct-fp16", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "145GB", + "digest": "345ab45e8107", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:72b-instruct-q2_K", + "name": "qwen2:72b-instruct-q2_K", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "30GB", + "digest": "cb6c3529e5c1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:72b-instruct-q3_K_L", + "name": "qwen2:72b-instruct-q3_K_L", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "40GB", + "digest": "d78d37529ebe", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:72b-instruct-q3_K_M", + "name": "qwen2:72b-instruct-q3_K_M", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "38GB", + "digest": "448681f34ba7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:72b-instruct-q3_K_S", + "name": "qwen2:72b-instruct-q3_K_S", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "34GB", + "digest": "ae65012ceeac", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:72b-instruct-q4_0", + "name": "qwen2:72b-instruct-q4_0", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "41GB", + "digest": "93563ef658b2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:72b-instruct-q4_1", + "name": "qwen2:72b-instruct-q4_1", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "46GB", + "digest": "3c2ddfc9cd29", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:72b-instruct-q4_K_M", + "name": "qwen2:72b-instruct-q4_K_M", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "47GB", + "digest": "1f4e04e13ff3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:72b-instruct-q4_K_S", + "name": "qwen2:72b-instruct-q4_K_S", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "44GB", + "digest": "fc25a7dea14d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:72b-instruct-q5_0", + "name": "qwen2:72b-instruct-q5_0", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "50GB", + "digest": "90a488948103", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:72b-instruct-q5_1", + "name": "qwen2:72b-instruct-q5_1", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "55GB", + "digest": "5a83f6b7eca1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:72b-instruct-q5_K_M", + "name": "qwen2:72b-instruct-q5_K_M", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "54GB", + "digest": "36ae993a19fb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:72b-instruct-q5_K_S", + "name": "qwen2:72b-instruct-q5_K_S", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "51GB", + "digest": "3f262d50f9be", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:72b-instruct-q6_K", + "name": "qwen2:72b-instruct-q6_K", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "64GB", + "digest": "5a83045ef50f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:72b-instruct-q8_0", + "name": "qwen2:72b-instruct-q8_0", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "77GB", + "digest": "8f1da3c9500d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:72b-text", + "name": "qwen2:72b-text", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "41GB", + "digest": "9d70f91bdc28", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:72b-text-fp16", + "name": "qwen2:72b-text-fp16", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "145GB", + "digest": "fba4b417782d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:72b-text-q2_K", + "name": "qwen2:72b-text-q2_K", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "30GB", + "digest": "9752808de1d3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:72b-text-q3_K_L", + "name": "qwen2:72b-text-q3_K_L", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "40GB", + "digest": "cf78b2fa4fdd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:72b-text-q3_K_M", + "name": "qwen2:72b-text-q3_K_M", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "38GB", + "digest": "cfb026174537", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:72b-text-q3_K_S", + "name": "qwen2:72b-text-q3_K_S", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "34GB", + "digest": "9c8a530d0bd7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:72b-text-q4_0", + "name": "qwen2:72b-text-q4_0", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "41GB", + "digest": "9d70f91bdc28", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:72b-text-q4_1", + "name": "qwen2:72b-text-q4_1", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "46GB", + "digest": "137edb538d01", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:72b-text-q4_K_M", + "name": "qwen2:72b-text-q4_K_M", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "47GB", + "digest": "395e2f1e4576", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:72b-text-q4_K_S", + "name": "qwen2:72b-text-q4_K_S", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "44GB", + "digest": "1993d079c16b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:72b-text-q5_0", + "name": "qwen2:72b-text-q5_0", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "50GB", + "digest": "e2b400cfa315", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:72b-text-q5_1", + "name": "qwen2:72b-text-q5_1", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "55GB", + "digest": "de61bf13ea38", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:72b-text-q5_K_M", + "name": "qwen2:72b-text-q5_K_M", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "54GB", + "digest": "cfaee9537e26", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:72b-text-q5_K_S", + "name": "qwen2:72b-text-q5_K_S", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "51GB", + "digest": "0307018fbf53", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:72b-text-q6_K", + "name": "qwen2:72b-text-q6_K", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "64GB", + "digest": "5de588e06754", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:72b-text-q8_0", + "name": "qwen2:72b-text-q8_0", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "77GB", + "digest": "480baf5d488d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:7b-instruct", + "name": "qwen2:7b-instruct", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "4.4GB", + "digest": "dd314f039b9d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:7b-instruct-fp16", + "name": "qwen2:7b-instruct-fp16", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "15GB", + "digest": "5ad93c6749a1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:7b-instruct-q2_K", + "name": "qwen2:7b-instruct-q2_K", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "3.0GB", + "digest": "2ce92f066b62", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:7b-instruct-q3_K_L", + "name": "qwen2:7b-instruct-q3_K_L", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "4.1GB", + "digest": "0022885490d9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:7b-instruct-q3_K_M", + "name": "qwen2:7b-instruct-q3_K_M", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "3.8GB", + "digest": "39ea238e2e11", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:7b-instruct-q3_K_S", + "name": "qwen2:7b-instruct-q3_K_S", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "3.5GB", + "digest": "ff9bc8063c30", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:7b-instruct-q4_0", + "name": "qwen2:7b-instruct-q4_0", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "4.4GB", + "digest": "dd314f039b9d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:7b-instruct-q4_1", + "name": "qwen2:7b-instruct-q4_1", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "4.9GB", + "digest": "6cbf8f4e11ba", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:7b-instruct-q4_K_M", + "name": "qwen2:7b-instruct-q4_K_M", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "4.7GB", + "digest": "f10f702d139e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:7b-instruct-q4_K_S", + "name": "qwen2:7b-instruct-q4_K_S", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "4.5GB", + "digest": "47d94758e9c1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:7b-instruct-q5_0", + "name": "qwen2:7b-instruct-q5_0", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "5.3GB", + "digest": "383487c3b3c4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:7b-instruct-q5_1", + "name": "qwen2:7b-instruct-q5_1", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "5.8GB", + "digest": "1dbbe91baa3c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:7b-instruct-q5_K_M", + "name": "qwen2:7b-instruct-q5_K_M", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "5.4GB", + "digest": "11803450872c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:7b-instruct-q5_K_S", + "name": "qwen2:7b-instruct-q5_K_S", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "5.3GB", + "digest": "6879a027e0ab", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:7b-instruct-q6_K", + "name": "qwen2:7b-instruct-q6_K", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "6.3GB", + "digest": "43f1d6679e17", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:7b-instruct-q8_0", + "name": "qwen2:7b-instruct-q8_0", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "8.1GB", + "digest": "5f579402cc6c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:7b-text", + "name": "qwen2:7b-text", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "4.4GB", + "digest": "5c0af9e4500d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:7b-text-q2_K", + "name": "qwen2:7b-text-q2_K", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "3.0GB", + "digest": "37935d384f48", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:7b-text-q3_K_L", + "name": "qwen2:7b-text-q3_K_L", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "4.1GB", + "digest": "45ac40a8d58b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:7b-text-q3_K_M", + "name": "qwen2:7b-text-q3_K_M", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "3.8GB", + "digest": "636d21d77b6c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:7b-text-q3_K_S", + "name": "qwen2:7b-text-q3_K_S", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "3.5GB", + "digest": "2eaaf224cac3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:7b-text-q4_0", + "name": "qwen2:7b-text-q4_0", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "4.4GB", + "digest": "5c0af9e4500d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:7b-text-q4_1", + "name": "qwen2:7b-text-q4_1", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "4.9GB", + "digest": "b765b8677fb7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:7b-text-q4_K_M", + "name": "qwen2:7b-text-q4_K_M", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "4.7GB", + "digest": "37dee31a1b72", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:7b-text-q4_K_S", + "name": "qwen2:7b-text-q4_K_S", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "4.5GB", + "digest": "5cfe6a2793de", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:7b-text-q5_0", + "name": "qwen2:7b-text-q5_0", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "5.3GB", + "digest": "b8336b2174d3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:7b-text-q5_1", + "name": "qwen2:7b-text-q5_1", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "5.8GB", + "digest": "0899d84212a8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2:7b-text-q8_0", + "name": "qwen2:7b-text-q8_0", + "description": "Qwen2 is a new series of large language models from Alibaba group", + "size": "8.1GB", + "digest": "1ad9e7ef89a6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5", + "name": "qwen2.5", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "4.7GB", + "digest": "845dbda0ea48", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "qwen2.5:0.5b", + "name": "qwen2.5:0.5b", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "398MB", + "digest": "a8b0c5157701", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:1.5b", + "name": "qwen2.5:1.5b", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "986MB", + "digest": "65ec06548149", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:3b", + "name": "qwen2.5:3b", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "1.9GB", + "digest": "357c53fb659c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:7b", + "name": "qwen2.5:7b", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "4.7GB", + "digest": "845dbda0ea48", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:14b", + "name": "qwen2.5:14b", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "9.0GB", + "digest": "7cdf5a0187d5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:32b", + "name": "qwen2.5:32b", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "20GB", + "digest": "9f13ba1299af", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:72b", + "name": "qwen2.5:72b", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "47GB", + "digest": "424bad2cc13f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:0.5b-base", + "name": "qwen2.5:0.5b-base", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "398MB", + "digest": "24c564a74dea", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:0.5b-base-q2_K", + "name": "qwen2.5:0.5b-base-q2_K", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "339MB", + "digest": "b439066a7c50", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:0.5b-base-q3_K_L", + "name": "qwen2.5:0.5b-base-q3_K_L", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "369MB", + "digest": "59bf60d67517", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:0.5b-base-q3_K_M", + "name": "qwen2.5:0.5b-base-q3_K_M", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "355MB", + "digest": "2b0f4078dcc1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:0.5b-base-q3_K_S", + "name": "qwen2.5:0.5b-base-q3_K_S", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "338MB", + "digest": "cf1fe7a28bac", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:0.5b-base-q4_0", + "name": "qwen2.5:0.5b-base-q4_0", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "352MB", + "digest": "a990247b9c63", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:0.5b-base-q4_1", + "name": "qwen2.5:0.5b-base-q4_1", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "375MB", + "digest": "50cc344abeb2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:0.5b-base-q4_K_M", + "name": "qwen2.5:0.5b-base-q4_K_M", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "398MB", + "digest": "24c564a74dea", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:0.5b-base-q4_K_S", + "name": "qwen2.5:0.5b-base-q4_K_S", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "385MB", + "digest": "75db83387279", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:0.5b-base-q5_0", + "name": "qwen2.5:0.5b-base-q5_0", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "397MB", + "digest": "a30fbb649ad5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:0.5b-base-q5_1", + "name": "qwen2.5:0.5b-base-q5_1", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "419MB", + "digest": "c3e31c5b32da", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:0.5b-base-q5_K_S", + "name": "qwen2.5:0.5b-base-q5_K_S", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "413MB", + "digest": "2484afe4f04e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:0.5b-base-q8_0", + "name": "qwen2.5:0.5b-base-q8_0", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "531MB", + "digest": "db0459695543", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:0.5b-instruct", + "name": "qwen2.5:0.5b-instruct", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "398MB", + "digest": "a8b0c5157701", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:0.5b-instruct-fp16", + "name": "qwen2.5:0.5b-instruct-fp16", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "994MB", + "digest": "c82efd44bfdc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:0.5b-instruct-q2_K", + "name": "qwen2.5:0.5b-instruct-q2_K", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "339MB", + "digest": "fa66a85e7fe2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:0.5b-instruct-q3_K_L", + "name": "qwen2.5:0.5b-instruct-q3_K_L", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "369MB", + "digest": "2ea07e2fd539", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:0.5b-instruct-q3_K_M", + "name": "qwen2.5:0.5b-instruct-q3_K_M", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "355MB", + "digest": "a1b962ae1ffb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:0.5b-instruct-q3_K_S", + "name": "qwen2.5:0.5b-instruct-q3_K_S", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "338MB", + "digest": "2b61ae1bb74f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:0.5b-instruct-q4_0", + "name": "qwen2.5:0.5b-instruct-q4_0", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "352MB", + "digest": "44deb286b008", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:0.5b-instruct-q4_1", + "name": "qwen2.5:0.5b-instruct-q4_1", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "375MB", + "digest": "61378941e31f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:0.5b-instruct-q4_K_M", + "name": "qwen2.5:0.5b-instruct-q4_K_M", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "398MB", + "digest": "a8b0c5157701", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:0.5b-instruct-q4_K_S", + "name": "qwen2.5:0.5b-instruct-q4_K_S", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "385MB", + "digest": "6f4611e3bd35", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:0.5b-instruct-q5_0", + "name": "qwen2.5:0.5b-instruct-q5_0", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "397MB", + "digest": "4a8f6fc82b6e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:0.5b-instruct-q5_1", + "name": "qwen2.5:0.5b-instruct-q5_1", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "419MB", + "digest": "95b03700b65c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:0.5b-instruct-q5_K_M", + "name": "qwen2.5:0.5b-instruct-q5_K_M", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "420MB", + "digest": "0762ec590a8c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:0.5b-instruct-q5_K_S", + "name": "qwen2.5:0.5b-instruct-q5_K_S", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "413MB", + "digest": "5830fc2c0193", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:0.5b-instruct-q6_K", + "name": "qwen2.5:0.5b-instruct-q6_K", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "506MB", + "digest": "ac75f8387539", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:0.5b-instruct-q8_0", + "name": "qwen2.5:0.5b-instruct-q8_0", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "531MB", + "digest": "84d044692a2c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:1.5b-instruct", + "name": "qwen2.5:1.5b-instruct", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "986MB", + "digest": "65ec06548149", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:1.5b-instruct-fp16", + "name": "qwen2.5:1.5b-instruct-fp16", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "3.1GB", + "digest": "d8035f049126", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:1.5b-instruct-q2_K", + "name": "qwen2.5:1.5b-instruct-q2_K", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "676MB", + "digest": "c239521b8b51", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:1.5b-instruct-q3_K_L", + "name": "qwen2.5:1.5b-instruct-q3_K_L", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "880MB", + "digest": "b16c18a133fa", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:1.5b-instruct-q3_K_M", + "name": "qwen2.5:1.5b-instruct-q3_K_M", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "824MB", + "digest": "5a4d48f91dab", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:1.5b-instruct-q3_K_S", + "name": "qwen2.5:1.5b-instruct-q3_K_S", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "761MB", + "digest": "2ead4934f6e9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:1.5b-instruct-q4_0", + "name": "qwen2.5:1.5b-instruct-q4_0", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "935MB", + "digest": "635e70c8687b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:1.5b-instruct-q4_1", + "name": "qwen2.5:1.5b-instruct-q4_1", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "1.0GB", + "digest": "4543b48a5085", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:1.5b-instruct-q4_K_M", + "name": "qwen2.5:1.5b-instruct-q4_K_M", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "986MB", + "digest": "65ec06548149", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:1.5b-instruct-q4_K_S", + "name": "qwen2.5:1.5b-instruct-q4_K_S", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "940MB", + "digest": "17dd5468f0a7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:1.5b-instruct-q5_0", + "name": "qwen2.5:1.5b-instruct-q5_0", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "1.1GB", + "digest": "267c3094f0b0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:1.5b-instruct-q5_1", + "name": "qwen2.5:1.5b-instruct-q5_1", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "1.2GB", + "digest": "828d5d698355", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:1.5b-instruct-q5_K_M", + "name": "qwen2.5:1.5b-instruct-q5_K_M", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "1.1GB", + "digest": "7a0e895425bc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:1.5b-instruct-q5_K_S", + "name": "qwen2.5:1.5b-instruct-q5_K_S", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "1.1GB", + "digest": "4dce61337043", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:1.5b-instruct-q6_K", + "name": "qwen2.5:1.5b-instruct-q6_K", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "1.3GB", + "digest": "03ec957c269f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:1.5b-instruct-q8_0", + "name": "qwen2.5:1.5b-instruct-q8_0", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "1.6GB", + "digest": "b19683a34698", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:14b-instruct", + "name": "qwen2.5:14b-instruct", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "9.0GB", + "digest": "7cdf5a0187d5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:14b-instruct-fp16", + "name": "qwen2.5:14b-instruct-fp16", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "30GB", + "digest": "06c8c6f15cf9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:14b-instruct-q2_K", + "name": "qwen2.5:14b-instruct-q2_K", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "5.8GB", + "digest": "9caf6424b5f9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:14b-instruct-q3_K_L", + "name": "qwen2.5:14b-instruct-q3_K_L", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "7.9GB", + "digest": "0ab75160d333", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:14b-instruct-q3_K_M", + "name": "qwen2.5:14b-instruct-q3_K_M", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "7.3GB", + "digest": "4d8dbee0507f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:14b-instruct-q3_K_S", + "name": "qwen2.5:14b-instruct-q3_K_S", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "6.7GB", + "digest": "c8f457c1f8f5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:14b-instruct-q4_0", + "name": "qwen2.5:14b-instruct-q4_0", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "8.5GB", + "digest": "5449194ff803", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:14b-instruct-q4_1", + "name": "qwen2.5:14b-instruct-q4_1", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "9.4GB", + "digest": "4d404313d9cd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:14b-instruct-q4_K_M", + "name": "qwen2.5:14b-instruct-q4_K_M", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "9.0GB", + "digest": "7cdf5a0187d5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:14b-instruct-q4_K_S", + "name": "qwen2.5:14b-instruct-q4_K_S", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "8.6GB", + "digest": "927254c04779", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:14b-instruct-q5_0", + "name": "qwen2.5:14b-instruct-q5_0", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "10GB", + "digest": "e242bafd33eb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:14b-instruct-q5_1", + "name": "qwen2.5:14b-instruct-q5_1", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "11GB", + "digest": "43a5486ba383", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:14b-instruct-q5_K_M", + "name": "qwen2.5:14b-instruct-q5_K_M", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "11GB", + "digest": "7bb3f324cafc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:14b-instruct-q5_K_S", + "name": "qwen2.5:14b-instruct-q5_K_S", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "10GB", + "digest": "f766877d708a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:14b-instruct-q6_K", + "name": "qwen2.5:14b-instruct-q6_K", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "12GB", + "digest": "4f6861a20c29", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:14b-instruct-q8_0", + "name": "qwen2.5:14b-instruct-q8_0", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "16GB", + "digest": "985c5f25dfe9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:32b-instruct", + "name": "qwen2.5:32b-instruct", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "20GB", + "digest": "9f13ba1299af", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:32b-instruct-fp16", + "name": "qwen2.5:32b-instruct-fp16", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "66GB", + "digest": "d988bddd9a2e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:32b-instruct-q2_K", + "name": "qwen2.5:32b-instruct-q2_K", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "12GB", + "digest": "ecc53cfdce75", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:32b-instruct-q3_K_L", + "name": "qwen2.5:32b-instruct-q3_K_L", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "17GB", + "digest": "83db34c608fc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:32b-instruct-q3_K_M", + "name": "qwen2.5:32b-instruct-q3_K_M", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "16GB", + "digest": "44bd723cfd42", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:32b-instruct-q3_K_S", + "name": "qwen2.5:32b-instruct-q3_K_S", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "14GB", + "digest": "aefb7287ac72", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:32b-instruct-q4_0", + "name": "qwen2.5:32b-instruct-q4_0", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "19GB", + "digest": "0508d3b6da02", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:32b-instruct-q4_1", + "name": "qwen2.5:32b-instruct-q4_1", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "21GB", + "digest": "c35507089a57", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:32b-instruct-q4_K_M", + "name": "qwen2.5:32b-instruct-q4_K_M", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "20GB", + "digest": "9f13ba1299af", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:32b-instruct-q4_K_S", + "name": "qwen2.5:32b-instruct-q4_K_S", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "19GB", + "digest": "0ef28b3b6dba", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:32b-instruct-q5_0", + "name": "qwen2.5:32b-instruct-q5_0", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "23GB", + "digest": "af981f1d421b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:32b-instruct-q5_1", + "name": "qwen2.5:32b-instruct-q5_1", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "25GB", + "digest": "fc1b4cb1aabb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:32b-instruct-q5_K_M", + "name": "qwen2.5:32b-instruct-q5_K_M", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "23GB", + "digest": "b0936ea364bf", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:32b-instruct-q5_K_S", + "name": "qwen2.5:32b-instruct-q5_K_S", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "23GB", + "digest": "3cb439a8d19b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:32b-instruct-q6_K", + "name": "qwen2.5:32b-instruct-q6_K", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "27GB", + "digest": "09f123ce518b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:32b-instruct-q8_0", + "name": "qwen2.5:32b-instruct-q8_0", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "35GB", + "digest": "378290543760", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:3b-instruct", + "name": "qwen2.5:3b-instruct", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "1.9GB", + "digest": "357c53fb659c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:3b-instruct-fp16", + "name": "qwen2.5:3b-instruct-fp16", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "6.2GB", + "digest": "de47f806df14", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:3b-instruct-q2_K", + "name": "qwen2.5:3b-instruct-q2_K", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "1.3GB", + "digest": "1fe27cd0c26a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:3b-instruct-q3_K_L", + "name": "qwen2.5:3b-instruct-q3_K_L", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "1.7GB", + "digest": "f8d588c5572a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:3b-instruct-q3_K_M", + "name": "qwen2.5:3b-instruct-q3_K_M", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "1.6GB", + "digest": "c3240229f22f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:3b-instruct-q3_K_S", + "name": "qwen2.5:3b-instruct-q3_K_S", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "1.5GB", + "digest": "5ed381ff5c13", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:3b-instruct-q4_0", + "name": "qwen2.5:3b-instruct-q4_0", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "1.8GB", + "digest": "09f7fe4d29e6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:3b-instruct-q4_1", + "name": "qwen2.5:3b-instruct-q4_1", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "2.0GB", + "digest": "c8aefde2cd4f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:3b-instruct-q4_K_M", + "name": "qwen2.5:3b-instruct-q4_K_M", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "1.9GB", + "digest": "357c53fb659c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:3b-instruct-q4_K_S", + "name": "qwen2.5:3b-instruct-q4_K_S", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "1.8GB", + "digest": "3033a0ab2cfd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:3b-instruct-q5_0", + "name": "qwen2.5:3b-instruct-q5_0", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "2.2GB", + "digest": "f2c8c51a4c62", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:3b-instruct-q5_1", + "name": "qwen2.5:3b-instruct-q5_1", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "2.3GB", + "digest": "c7e5301cb49e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:3b-instruct-q5_K_M", + "name": "qwen2.5:3b-instruct-q5_K_M", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "2.2GB", + "digest": "19cf317bd479", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:3b-instruct-q5_K_S", + "name": "qwen2.5:3b-instruct-q5_K_S", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "2.2GB", + "digest": "8ce4b148557a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:3b-instruct-q6_K", + "name": "qwen2.5:3b-instruct-q6_K", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "2.5GB", + "digest": "9f78f7728716", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:3b-instruct-q8_0", + "name": "qwen2.5:3b-instruct-q8_0", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "3.3GB", + "digest": "cd6aa8b25d7a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:72b-instruct", + "name": "qwen2.5:72b-instruct", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "47GB", + "digest": "424bad2cc13f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:72b-instruct-fp16", + "name": "qwen2.5:72b-instruct-fp16", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "145GB", + "digest": "754bbe314ad4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:72b-instruct-q2_K", + "name": "qwen2.5:72b-instruct-q2_K", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "30GB", + "digest": "d072709cc1a8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:72b-instruct-q3_K_L", + "name": "qwen2.5:72b-instruct-q3_K_L", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "40GB", + "digest": "c3f33d2ad20a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:72b-instruct-q3_K_M", + "name": "qwen2.5:72b-instruct-q3_K_M", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "38GB", + "digest": "15abb3b7022f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:72b-instruct-q3_K_S", + "name": "qwen2.5:72b-instruct-q3_K_S", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "34GB", + "digest": "6fcfede9cc1c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:72b-instruct-q4_0", + "name": "qwen2.5:72b-instruct-q4_0", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "41GB", + "digest": "2dd03ae27777", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:72b-instruct-q4_1", + "name": "qwen2.5:72b-instruct-q4_1", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "46GB", + "digest": "bcf8fafd0731", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:72b-instruct-q4_K_M", + "name": "qwen2.5:72b-instruct-q4_K_M", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "47GB", + "digest": "424bad2cc13f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:72b-instruct-q4_K_S", + "name": "qwen2.5:72b-instruct-q4_K_S", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "44GB", + "digest": "a4520526d819", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:72b-instruct-q5_0", + "name": "qwen2.5:72b-instruct-q5_0", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "50GB", + "digest": "7a43bbfe6536", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:72b-instruct-q5_1", + "name": "qwen2.5:72b-instruct-q5_1", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "55GB", + "digest": "40630a45532c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:72b-instruct-q5_K_M", + "name": "qwen2.5:72b-instruct-q5_K_M", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "54GB", + "digest": "210a146b67de", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:72b-instruct-q5_K_S", + "name": "qwen2.5:72b-instruct-q5_K_S", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "51GB", + "digest": "ee3ecbad0795", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:72b-instruct-q6_K", + "name": "qwen2.5:72b-instruct-q6_K", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "64GB", + "digest": "5f611a49224d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:72b-instruct-q8_0", + "name": "qwen2.5:72b-instruct-q8_0", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "77GB", + "digest": "23f2cb48bb9a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:7b-instruct", + "name": "qwen2.5:7b-instruct", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "4.7GB", + "digest": "845dbda0ea48", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:7b-instruct-fp16", + "name": "qwen2.5:7b-instruct-fp16", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "15GB", + "digest": "59805ce4a404", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:7b-instruct-q2_K", + "name": "qwen2.5:7b-instruct-q2_K", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "3.0GB", + "digest": "94ac6d14b93f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:7b-instruct-q3_K_L", + "name": "qwen2.5:7b-instruct-q3_K_L", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "4.1GB", + "digest": "6ed3506191d1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:7b-instruct-q3_K_M", + "name": "qwen2.5:7b-instruct-q3_K_M", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "3.8GB", + "digest": "29492a928341", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:7b-instruct-q3_K_S", + "name": "qwen2.5:7b-instruct-q3_K_S", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "3.5GB", + "digest": "05d9cc3116db", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:7b-instruct-q4_0", + "name": "qwen2.5:7b-instruct-q4_0", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "4.4GB", + "digest": "2e92ac0dd3a8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:7b-instruct-q4_1", + "name": "qwen2.5:7b-instruct-q4_1", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "4.9GB", + "digest": "840e00017aa6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:7b-instruct-q4_K_M", + "name": "qwen2.5:7b-instruct-q4_K_M", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "4.7GB", + "digest": "845dbda0ea48", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:7b-instruct-q4_K_S", + "name": "qwen2.5:7b-instruct-q4_K_S", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "4.5GB", + "digest": "d572758f0ffe", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:7b-instruct-q5_0", + "name": "qwen2.5:7b-instruct-q5_0", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "5.3GB", + "digest": "16c4cf552635", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:7b-instruct-q5_1", + "name": "qwen2.5:7b-instruct-q5_1", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "5.8GB", + "digest": "0f1627cf5764", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:7b-instruct-q5_K_M", + "name": "qwen2.5:7b-instruct-q5_K_M", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "5.4GB", + "digest": "a1040ddd2b49", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:7b-instruct-q5_K_S", + "name": "qwen2.5:7b-instruct-q5_K_S", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "5.3GB", + "digest": "1a3492b0a1dc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:7b-instruct-q6_K", + "name": "qwen2.5:7b-instruct-q6_K", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "6.3GB", + "digest": "a7e494737d58", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5:7b-instruct-q8_0", + "name": "qwen2.5:7b-instruct-q8_0", + "description": "Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encompassing up to 18 trillion tokens. The model supports up to 128K tokens and has multilingual support.", + "size": "8.1GB", + "digest": "2d9500c94841", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava", + "name": "llava", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "4.7GB", + "digest": "8dd30f6b0cb1", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "llava:7b", + "name": "llava:7b", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "4.7GB", + "digest": "8dd30f6b0cb1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:13b", + "name": "llava:13b", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "8.0GB", + "digest": "0d0eb4d7f485", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:34b", + "name": "llava:34b", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "20GB", + "digest": "3d2d24f46674", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:13b-v1.5-fp16", + "name": "llava:13b-v1.5-fp16", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "27GB", + "digest": "ce3bde71eaa7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:13b-v1.5-q2_K", + "name": "llava:13b-v1.5-q2_K", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "6.1GB", + "digest": "3cdd3869f154", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:13b-v1.5-q3_K_L", + "name": "llava:13b-v1.5-q3_K_L", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "7.6GB", + "digest": "07b1b74ec398", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:13b-v1.5-q3_K_M", + "name": "llava:13b-v1.5-q3_K_M", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "7.0GB", + "digest": "61441e82808c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:13b-v1.5-q3_K_S", + "name": "llava:13b-v1.5-q3_K_S", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "6.3GB", + "digest": "c860f869008d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:13b-v1.5-q4_0", + "name": "llava:13b-v1.5-q4_0", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "8.0GB", + "digest": "e3b7997801dc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:13b-v1.5-q4_1", + "name": "llava:13b-v1.5-q4_1", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "8.8GB", + "digest": "0ca30ff66062", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:13b-v1.5-q4_K_M", + "name": "llava:13b-v1.5-q4_K_M", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "8.5GB", + "digest": "d0a6a3f0e6c4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:13b-v1.5-q4_K_S", + "name": "llava:13b-v1.5-q4_K_S", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "8.1GB", + "digest": "16939c152bd9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:13b-v1.5-q5_0", + "name": "llava:13b-v1.5-q5_0", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "9.6GB", + "digest": "78e17026912a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:13b-v1.5-q5_1", + "name": "llava:13b-v1.5-q5_1", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "10GB", + "digest": "b11f33bc65fa", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:13b-v1.5-q5_K_M", + "name": "llava:13b-v1.5-q5_K_M", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "9.9GB", + "digest": "48418b116e18", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:13b-v1.5-q5_K_S", + "name": "llava:13b-v1.5-q5_K_S", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "9.6GB", + "digest": "c7f4b8076a0e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:13b-v1.5-q6_K", + "name": "llava:13b-v1.5-q6_K", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "11GB", + "digest": "3c085b55f924", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:13b-v1.5-q8_0", + "name": "llava:13b-v1.5-q8_0", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "14GB", + "digest": "4e00c435bb25", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:13b-v1.6", + "name": "llava:13b-v1.6", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "8.0GB", + "digest": "0d0eb4d7f485", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:13b-v1.6-vicuna-fp16", + "name": "llava:13b-v1.6-vicuna-fp16", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "27GB", + "digest": "81e28406a4e9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:13b-v1.6-vicuna-q2_K", + "name": "llava:13b-v1.6-vicuna-q2_K", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "5.5GB", + "digest": "87aecb135e2a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:13b-v1.6-vicuna-q3_K_L", + "name": "llava:13b-v1.6-vicuna-q3_K_L", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "7.6GB", + "digest": "a2b56a2b8e79", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:13b-v1.6-vicuna-q3_K_M", + "name": "llava:13b-v1.6-vicuna-q3_K_M", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "7.0GB", + "digest": "2e48f094b51a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:13b-v1.6-vicuna-q3_K_S", + "name": "llava:13b-v1.6-vicuna-q3_K_S", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "6.3GB", + "digest": "54ef03322645", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:13b-v1.6-vicuna-q4_0", + "name": "llava:13b-v1.6-vicuna-q4_0", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "8.0GB", + "digest": "0d0eb4d7f485", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:13b-v1.6-vicuna-q4_1", + "name": "llava:13b-v1.6-vicuna-q4_1", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "8.8GB", + "digest": "0b97528b26b0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:13b-v1.6-vicuna-q4_K_M", + "name": "llava:13b-v1.6-vicuna-q4_K_M", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "8.5GB", + "digest": "0843119c3874", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:13b-v1.6-vicuna-q4_K_S", + "name": "llava:13b-v1.6-vicuna-q4_K_S", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "8.1GB", + "digest": "5e4cf96dfc4c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:13b-v1.6-vicuna-q5_0", + "name": "llava:13b-v1.6-vicuna-q5_0", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "9.6GB", + "digest": "6e06e1393058", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:13b-v1.6-vicuna-q5_1", + "name": "llava:13b-v1.6-vicuna-q5_1", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "10GB", + "digest": "31f1d78cb272", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:13b-v1.6-vicuna-q5_K_M", + "name": "llava:13b-v1.6-vicuna-q5_K_M", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "9.9GB", + "digest": "446b10458a6a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:13b-v1.6-vicuna-q5_K_S", + "name": "llava:13b-v1.6-vicuna-q5_K_S", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "9.6GB", + "digest": "53999e2c86c8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:13b-v1.6-vicuna-q6_K", + "name": "llava:13b-v1.6-vicuna-q6_K", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "11GB", + "digest": "1c0a91e1e4d9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:13b-v1.6-vicuna-q8_0", + "name": "llava:13b-v1.6-vicuna-q8_0", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "14GB", + "digest": "b25c4195f9e2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:34b-v1.6", + "name": "llava:34b-v1.6", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "20GB", + "digest": "3d2d24f46674", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:34b-v1.6-fp16", + "name": "llava:34b-v1.6-fp16", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "69GB", + "digest": "89c50af82d5e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:34b-v1.6-q2_K", + "name": "llava:34b-v1.6-q2_K", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "14GB", + "digest": "6326f59da4f1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:34b-v1.6-q3_K_L", + "name": "llava:34b-v1.6-q3_K_L", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "19GB", + "digest": "7f9889648d1a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:34b-v1.6-q3_K_M", + "name": "llava:34b-v1.6-q3_K_M", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "17GB", + "digest": "89e924fed7d4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:34b-v1.6-q3_K_S", + "name": "llava:34b-v1.6-q3_K_S", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "16GB", + "digest": "a0376a205682", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:34b-v1.6-q4_0", + "name": "llava:34b-v1.6-q4_0", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "20GB", + "digest": "3d2d24f46674", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:34b-v1.6-q4_1", + "name": "llava:34b-v1.6-q4_1", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "22GB", + "digest": "96d20de28a1a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:34b-v1.6-q4_K_M", + "name": "llava:34b-v1.6-q4_K_M", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "21GB", + "digest": "538ff4c5a8b8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:34b-v1.6-q4_K_S", + "name": "llava:34b-v1.6-q4_K_S", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "20GB", + "digest": "787b2213f0db", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:34b-v1.6-q5_0", + "name": "llava:34b-v1.6-q5_0", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "24GB", + "digest": "b239e218bdf0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:34b-v1.6-q5_1", + "name": "llava:34b-v1.6-q5_1", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "27GB", + "digest": "60926fd725ec", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:34b-v1.6-q5_K_M", + "name": "llava:34b-v1.6-q5_K_M", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "25GB", + "digest": "0eb2ab10d35c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:34b-v1.6-q5_K_S", + "name": "llava:34b-v1.6-q5_K_S", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "24GB", + "digest": "cdd8d5db3870", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:34b-v1.6-q6_K", + "name": "llava:34b-v1.6-q6_K", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "29GB", + "digest": "8f572ea02185", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:34b-v1.6-q8_0", + "name": "llava:34b-v1.6-q8_0", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "37GB", + "digest": "959065f30849", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:7b-v1.5-fp16", + "name": "llava:7b-v1.5-fp16", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "14GB", + "digest": "337a5b25bada", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:7b-v1.5-q2_K", + "name": "llava:7b-v1.5-q2_K", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "3.5GB", + "digest": "33973d2589d1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:7b-v1.5-q3_K_L", + "name": "llava:7b-v1.5-q3_K_L", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "4.2GB", + "digest": "057fefd59cdb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:7b-v1.5-q3_K_M", + "name": "llava:7b-v1.5-q3_K_M", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "3.9GB", + "digest": "9d738df24288", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:7b-v1.5-q3_K_S", + "name": "llava:7b-v1.5-q3_K_S", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "3.6GB", + "digest": "605b68e0b568", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:7b-v1.5-q4_0", + "name": "llava:7b-v1.5-q4_0", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "4.5GB", + "digest": "cd3274b81a85", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:7b-v1.5-q4_1", + "name": "llava:7b-v1.5-q4_1", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "4.9GB", + "digest": "146a55d9df75", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:7b-v1.5-q4_K_M", + "name": "llava:7b-v1.5-q4_K_M", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "4.7GB", + "digest": "75a9333e75cd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:7b-v1.5-q4_K_S", + "name": "llava:7b-v1.5-q4_K_S", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "4.5GB", + "digest": "d8d545afa5f0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:7b-v1.5-q5_0", + "name": "llava:7b-v1.5-q5_0", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "5.3GB", + "digest": "339249626980", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:7b-v1.5-q5_1", + "name": "llava:7b-v1.5-q5_1", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "5.7GB", + "digest": "6d97e8715c53", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:7b-v1.5-q5_K_M", + "name": "llava:7b-v1.5-q5_K_M", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "5.4GB", + "digest": "4fb097b9cfa3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:7b-v1.5-q5_K_S", + "name": "llava:7b-v1.5-q5_K_S", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "5.3GB", + "digest": "34f9b24f2315", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:7b-v1.5-q6_K", + "name": "llava:7b-v1.5-q6_K", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "6.2GB", + "digest": "df0203e92f79", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:7b-v1.5-q8_0", + "name": "llava:7b-v1.5-q8_0", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "7.8GB", + "digest": "c684b68b3f34", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:7b-v1.6", + "name": "llava:7b-v1.6", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "4.7GB", + "digest": "8dd30f6b0cb1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:7b-v1.6-mistral-fp16", + "name": "llava:7b-v1.6-mistral-fp16", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "15GB", + "digest": "9fd1e5417c5f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:7b-v1.6-mistral-q2_K", + "name": "llava:7b-v1.6-mistral-q2_K", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "3.3GB", + "digest": "52e0ce44a5f5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:7b-v1.6-mistral-q3_K_L", + "name": "llava:7b-v1.6-mistral-q3_K_L", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "4.4GB", + "digest": "a48bbc9b567b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:7b-v1.6-mistral-q3_K_M", + "name": "llava:7b-v1.6-mistral-q3_K_M", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "4.1GB", + "digest": "25a00600f8b4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:7b-v1.6-mistral-q3_K_S", + "name": "llava:7b-v1.6-mistral-q3_K_S", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "3.8GB", + "digest": "2b9c055fe6a2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:7b-v1.6-mistral-q4_0", + "name": "llava:7b-v1.6-mistral-q4_0", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "4.7GB", + "digest": "8dd30f6b0cb1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:7b-v1.6-mistral-q4_1", + "name": "llava:7b-v1.6-mistral-q4_1", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "5.2GB", + "digest": "8da3213068e6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:7b-v1.6-mistral-q4_K_M", + "name": "llava:7b-v1.6-mistral-q4_K_M", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "5.0GB", + "digest": "8d3fbd6ad3f4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:7b-v1.6-mistral-q4_K_S", + "name": "llava:7b-v1.6-mistral-q4_K_S", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "4.8GB", + "digest": "2878e8c79f6e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:7b-v1.6-mistral-q5_0", + "name": "llava:7b-v1.6-mistral-q5_0", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "5.6GB", + "digest": "b8f63553f521", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:7b-v1.6-mistral-q5_1", + "name": "llava:7b-v1.6-mistral-q5_1", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "6.1GB", + "digest": "eda0b3f3b09b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:7b-v1.6-mistral-q5_K_M", + "name": "llava:7b-v1.6-mistral-q5_K_M", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "5.8GB", + "digest": "244b7e3d3d5a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:7b-v1.6-mistral-q5_K_S", + "name": "llava:7b-v1.6-mistral-q5_K_S", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "5.6GB", + "digest": "62dc434a7ae8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:7b-v1.6-mistral-q6_K", + "name": "llava:7b-v1.6-mistral-q6_K", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "6.6GB", + "digest": "8781169d7f8f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:7b-v1.6-mistral-q8_0", + "name": "llava:7b-v1.6-mistral-q8_0", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "8.3GB", + "digest": "c2973e390e84", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:7b-v1.6-vicuna-fp16", + "name": "llava:7b-v1.6-vicuna-fp16", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "14GB", + "digest": "bb8da134bacb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:7b-v1.6-vicuna-q2_K", + "name": "llava:7b-v1.6-vicuna-q2_K", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "3.2GB", + "digest": "6321163f3833", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:7b-v1.6-vicuna-q3_K_L", + "name": "llava:7b-v1.6-vicuna-q3_K_L", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "4.2GB", + "digest": "0127d9087e07", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:7b-v1.6-vicuna-q3_K_M", + "name": "llava:7b-v1.6-vicuna-q3_K_M", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "3.9GB", + "digest": "7004e1f24eb1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:7b-v1.6-vicuna-q3_K_S", + "name": "llava:7b-v1.6-vicuna-q3_K_S", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "3.6GB", + "digest": "7701df672950", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:7b-v1.6-vicuna-q4_0", + "name": "llava:7b-v1.6-vicuna-q4_0", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "4.5GB", + "digest": "b6cbe07f1d5e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:7b-v1.6-vicuna-q4_1", + "name": "llava:7b-v1.6-vicuna-q4_1", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "4.9GB", + "digest": "f8a27e237e97", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:7b-v1.6-vicuna-q4_K_M", + "name": "llava:7b-v1.6-vicuna-q4_K_M", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "4.7GB", + "digest": "15360a9e0fb9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:7b-v1.6-vicuna-q4_K_S", + "name": "llava:7b-v1.6-vicuna-q4_K_S", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "4.5GB", + "digest": "5006a8a41d2b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:7b-v1.6-vicuna-q5_0", + "name": "llava:7b-v1.6-vicuna-q5_0", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "5.3GB", + "digest": "6a2bb61a611a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:7b-v1.6-vicuna-q5_1", + "name": "llava:7b-v1.6-vicuna-q5_1", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "5.7GB", + "digest": "1bd37032ec33", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:7b-v1.6-vicuna-q5_K_M", + "name": "llava:7b-v1.6-vicuna-q5_K_M", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "5.4GB", + "digest": "b22b0c041223", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:7b-v1.6-vicuna-q5_K_S", + "name": "llava:7b-v1.6-vicuna-q5_K_S", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "5.3GB", + "digest": "4aaa19502e34", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:7b-v1.6-vicuna-q6_K", + "name": "llava:7b-v1.6-vicuna-q6_K", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "6.2GB", + "digest": "11bd55683f9c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:7b-v1.6-vicuna-q8_0", + "name": "llava:7b-v1.6-vicuna-q8_0", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "7.8GB", + "digest": "6da20a71d9bb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava:v1.6", + "name": "llava:v1.6", + "description": "🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vision encoder and Vicuna for general-purpose visual and language understanding. Updated to version 1.6.", + "size": "4.7GB", + "digest": "8dd30f6b0cb1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2", + "name": "llama2", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "3.8GB", + "digest": "78e26419b446", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "llama2:7b", + "name": "llama2:7b", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "3.8GB", + "digest": "78e26419b446", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:13b", + "name": "llama2:13b", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "7.4GB", + "digest": "d475bf4c50bc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:70b", + "name": "llama2:70b", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "39GB", + "digest": "e7f6c06ffef4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:13b-chat", + "name": "llama2:13b-chat", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "7.4GB", + "digest": "d475bf4c50bc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:13b-chat-fp16", + "name": "llama2:13b-chat-fp16", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "26GB", + "digest": "83b0fe8fee34", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:13b-chat-q2_K", + "name": "llama2:13b-chat-q2_K", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "5.4GB", + "digest": "14d3396d4e1b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:13b-chat-q3_K_L", + "name": "llama2:13b-chat-q3_K_L", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "6.9GB", + "digest": "d0a4d669c0b5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:13b-chat-q3_K_M", + "name": "llama2:13b-chat-q3_K_M", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "6.3GB", + "digest": "7a39765cf206", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:13b-chat-q3_K_S", + "name": "llama2:13b-chat-q3_K_S", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "5.7GB", + "digest": "224005fe00d3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:13b-chat-q4_0", + "name": "llama2:13b-chat-q4_0", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "7.4GB", + "digest": "d475bf4c50bc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:13b-chat-q4_1", + "name": "llama2:13b-chat-q4_1", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "8.2GB", + "digest": "8da45bab53a7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:13b-chat-q4_K_M", + "name": "llama2:13b-chat-q4_K_M", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "7.9GB", + "digest": "87727269f62c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:13b-chat-q4_K_S", + "name": "llama2:13b-chat-q4_K_S", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "7.4GB", + "digest": "c9bc1759c3b8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:13b-chat-q5_0", + "name": "llama2:13b-chat-q5_0", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "9.0GB", + "digest": "2ceaa73b479a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:13b-chat-q5_1", + "name": "llama2:13b-chat-q5_1", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "9.8GB", + "digest": "76c91147b201", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:13b-chat-q5_K_M", + "name": "llama2:13b-chat-q5_K_M", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "9.2GB", + "digest": "34471ad29e7c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:13b-chat-q5_K_S", + "name": "llama2:13b-chat-q5_K_S", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "9.0GB", + "digest": "25324e6a6e04", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:13b-chat-q6_K", + "name": "llama2:13b-chat-q6_K", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "11GB", + "digest": "df2e3c78030b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:13b-chat-q8_0", + "name": "llama2:13b-chat-q8_0", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "14GB", + "digest": "303a83449a06", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:13b-text", + "name": "llama2:13b-text", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "7.4GB", + "digest": "d9ecf5544188", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:13b-text-fp16", + "name": "llama2:13b-text-fp16", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "26GB", + "digest": "d19bbe682374", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:13b-text-q2_K", + "name": "llama2:13b-text-q2_K", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "5.4GB", + "digest": "64ace2ba0375", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:13b-text-q3_K_L", + "name": "llama2:13b-text-q3_K_L", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "6.9GB", + "digest": "cc161efc495b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:13b-text-q3_K_M", + "name": "llama2:13b-text-q3_K_M", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "6.3GB", + "digest": "ff280395c1b4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:13b-text-q3_K_S", + "name": "llama2:13b-text-q3_K_S", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "5.7GB", + "digest": "959925e1415d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:13b-text-q4_0", + "name": "llama2:13b-text-q4_0", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "7.4GB", + "digest": "d9ecf5544188", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:13b-text-q4_1", + "name": "llama2:13b-text-q4_1", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "8.2GB", + "digest": "ff9b7e23cab5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:13b-text-q4_K_M", + "name": "llama2:13b-text-q4_K_M", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "7.9GB", + "digest": "74b8a493a98e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:13b-text-q4_K_S", + "name": "llama2:13b-text-q4_K_S", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "7.4GB", + "digest": "2fadc16207a6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:13b-text-q5_0", + "name": "llama2:13b-text-q5_0", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "9.0GB", + "digest": "8f3886efc72d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:13b-text-q5_1", + "name": "llama2:13b-text-q5_1", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "9.8GB", + "digest": "2afbee63a3f1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:13b-text-q5_K_M", + "name": "llama2:13b-text-q5_K_M", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "9.2GB", + "digest": "4be0a0bc5acb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:13b-text-q5_K_S", + "name": "llama2:13b-text-q5_K_S", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "9.0GB", + "digest": "1025495b5ee3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:13b-text-q6_K", + "name": "llama2:13b-text-q6_K", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "11GB", + "digest": "376544bcd2db", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:13b-text-q8_0", + "name": "llama2:13b-text-q8_0", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "14GB", + "digest": "604d6e23f647", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:70b-chat", + "name": "llama2:70b-chat", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "39GB", + "digest": "e7f6c06ffef4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:70b-chat-fp16", + "name": "llama2:70b-chat-fp16", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "138GB", + "digest": "18d69cd1de10", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:70b-chat-q2_K", + "name": "llama2:70b-chat-q2_K", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "29GB", + "digest": "3cac2828f2b8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:70b-chat-q3_K_L", + "name": "llama2:70b-chat-q3_K_L", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "36GB", + "digest": "e2275953b0b3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:70b-chat-q3_K_M", + "name": "llama2:70b-chat-q3_K_M", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "33GB", + "digest": "f11f61dc9832", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:70b-chat-q3_K_S", + "name": "llama2:70b-chat-q3_K_S", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "30GB", + "digest": "051b27c23c3f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:70b-chat-q4_0", + "name": "llama2:70b-chat-q4_0", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "39GB", + "digest": "e7f6c06ffef4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:70b-chat-q4_1", + "name": "llama2:70b-chat-q4_1", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "43GB", + "digest": "8618469361ea", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:70b-chat-q4_K_M", + "name": "llama2:70b-chat-q4_K_M", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "41GB", + "digest": "8f88029f07f8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:70b-chat-q4_K_S", + "name": "llama2:70b-chat-q4_K_S", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "39GB", + "digest": "e202e9dd13cc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:70b-chat-q5_0", + "name": "llama2:70b-chat-q5_0", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "47GB", + "digest": "6cb5828911b8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:70b-chat-q5_1", + "name": "llama2:70b-chat-q5_1", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "52GB", + "digest": "9d1fbb3c4074", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:70b-chat-q5_K_M", + "name": "llama2:70b-chat-q5_K_M", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "49GB", + "digest": "2e12d2211dd5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:70b-chat-q5_K_S", + "name": "llama2:70b-chat-q5_K_S", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "47GB", + "digest": "eb071689d8e5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:70b-chat-q6_K", + "name": "llama2:70b-chat-q6_K", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "57GB", + "digest": "b8bbc9a59804", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:70b-chat-q8_0", + "name": "llama2:70b-chat-q8_0", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "73GB", + "digest": "d91d0643f080", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:70b-text", + "name": "llama2:70b-text", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "39GB", + "digest": "b9b52e6b61c5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:70b-text-fp16", + "name": "llama2:70b-text-fp16", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "138GB", + "digest": "dc03bc3a16cf", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:70b-text-q2_K", + "name": "llama2:70b-text-q2_K", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "29GB", + "digest": "b45d7449cc92", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:70b-text-q3_K_L", + "name": "llama2:70b-text-q3_K_L", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "36GB", + "digest": "b5bdb4982992", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:70b-text-q3_K_M", + "name": "llama2:70b-text-q3_K_M", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "33GB", + "digest": "fbd62f5dcf16", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:70b-text-q3_K_S", + "name": "llama2:70b-text-q3_K_S", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "30GB", + "digest": "2227129bfc8a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:70b-text-q4_0", + "name": "llama2:70b-text-q4_0", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "39GB", + "digest": "b9b52e6b61c5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:70b-text-q4_1", + "name": "llama2:70b-text-q4_1", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "43GB", + "digest": "92c3da1574b4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:70b-text-q4_K_M", + "name": "llama2:70b-text-q4_K_M", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "41GB", + "digest": "bc70b8e5b4e5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:70b-text-q4_K_S", + "name": "llama2:70b-text-q4_K_S", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "39GB", + "digest": "1197a01c76e7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:70b-text-q5_0", + "name": "llama2:70b-text-q5_0", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "47GB", + "digest": "4ec9f6c43f82", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:70b-text-q5_1", + "name": "llama2:70b-text-q5_1", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "52GB", + "digest": "9cafaca2d2fe", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:70b-text-q5_K_M", + "name": "llama2:70b-text-q5_K_M", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "49GB", + "digest": "b365053e53fc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:70b-text-q5_K_S", + "name": "llama2:70b-text-q5_K_S", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "47GB", + "digest": "eab38b764b5b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:70b-text-q6_K", + "name": "llama2:70b-text-q6_K", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "57GB", + "digest": "78e480a0450b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:70b-text-q8_0", + "name": "llama2:70b-text-q8_0", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "73GB", + "digest": "2aa27df56a63", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:7b-chat", + "name": "llama2:7b-chat", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "3.8GB", + "digest": "78e26419b446", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:7b-chat-fp16", + "name": "llama2:7b-chat-fp16", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "13GB", + "digest": "50a12b7ddb9d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:7b-chat-q2_K", + "name": "llama2:7b-chat-q2_K", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "2.8GB", + "digest": "56baf05e3e67", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:7b-chat-q3_K_L", + "name": "llama2:7b-chat-q3_K_L", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "3.6GB", + "digest": "c04042faafd0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:7b-chat-q3_K_M", + "name": "llama2:7b-chat-q3_K_M", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "3.3GB", + "digest": "63ebc93e095e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:7b-chat-q3_K_S", + "name": "llama2:7b-chat-q3_K_S", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "2.9GB", + "digest": "3af967e4a825", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:7b-chat-q4_0", + "name": "llama2:7b-chat-q4_0", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "3.8GB", + "digest": "78e26419b446", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:7b-chat-q4_1", + "name": "llama2:7b-chat-q4_1", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "4.2GB", + "digest": "85eb4bc10598", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:7b-chat-q4_K_M", + "name": "llama2:7b-chat-q4_K_M", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "4.1GB", + "digest": "fe3834f64df5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:7b-chat-q4_K_S", + "name": "llama2:7b-chat-q4_K_S", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "3.9GB", + "digest": "bec61ac554e8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:7b-chat-q5_0", + "name": "llama2:7b-chat-q5_0", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "4.7GB", + "digest": "68cf22a36a37", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:7b-chat-q5_1", + "name": "llama2:7b-chat-q5_1", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "5.1GB", + "digest": "ae646aad1ac9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:7b-chat-q5_K_M", + "name": "llama2:7b-chat-q5_K_M", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "4.8GB", + "digest": "5918a2e3bb37", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:7b-chat-q5_K_S", + "name": "llama2:7b-chat-q5_K_S", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "4.7GB", + "digest": "4f771b179264", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:7b-chat-q6_K", + "name": "llama2:7b-chat-q6_K", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "5.5GB", + "digest": "7eabddae7b75", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:7b-chat-q8_0", + "name": "llama2:7b-chat-q8_0", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "7.2GB", + "digest": "fc35dd6c8370", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:7b-text", + "name": "llama2:7b-text", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "3.8GB", + "digest": "53b394a404fd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:7b-text-fp16", + "name": "llama2:7b-text-fp16", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "13GB", + "digest": "f69718db483a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:7b-text-q2_K", + "name": "llama2:7b-text-q2_K", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "2.8GB", + "digest": "c581571a4e90", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:7b-text-q3_K_L", + "name": "llama2:7b-text-q3_K_L", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "3.6GB", + "digest": "df57d4d53dac", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:7b-text-q3_K_M", + "name": "llama2:7b-text-q3_K_M", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "3.3GB", + "digest": "c1ddf19ff6db", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:7b-text-q3_K_S", + "name": "llama2:7b-text-q3_K_S", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "2.9GB", + "digest": "2f3ee65fe92a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:7b-text-q4_0", + "name": "llama2:7b-text-q4_0", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "3.8GB", + "digest": "53b394a404fd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:7b-text-q4_1", + "name": "llama2:7b-text-q4_1", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "4.2GB", + "digest": "189a0d0904e4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:7b-text-q4_K_M", + "name": "llama2:7b-text-q4_K_M", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "4.1GB", + "digest": "b50304b988e8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:7b-text-q4_K_S", + "name": "llama2:7b-text-q4_K_S", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "3.9GB", + "digest": "1c2571d89f3b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:7b-text-q5_0", + "name": "llama2:7b-text-q5_0", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "4.7GB", + "digest": "7377932417e0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:7b-text-q5_1", + "name": "llama2:7b-text-q5_1", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "5.1GB", + "digest": "1a5e521c1e5c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:7b-text-q5_K_M", + "name": "llama2:7b-text-q5_K_M", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "4.8GB", + "digest": "eaa320e04479", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:7b-text-q5_K_S", + "name": "llama2:7b-text-q5_K_S", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "4.7GB", + "digest": "6dd64259f527", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:7b-text-q6_K", + "name": "llama2:7b-text-q6_K", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "5.5GB", + "digest": "7e54061a4751", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:7b-text-q8_0", + "name": "llama2:7b-text-q8_0", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "7.2GB", + "digest": "fd701415200a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:chat", + "name": "llama2:chat", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "3.8GB", + "digest": "78e26419b446", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2:text", + "name": "llama2:text", + "description": "Llama 2 is a collection of foundation language models ranging from 7B to 70B parameters.", + "size": "3.8GB", + "digest": "53b394a404fd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3", + "name": "phi3", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "2.2GB", + "digest": "4f2222927938", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "phi3:3.8b", + "name": "phi3:3.8b", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "2.2GB", + "digest": "4f2222927938", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:14b", + "name": "phi3:14b", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "7.9GB", + "digest": "cf611a26b048", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:14b-instruct", + "name": "phi3:14b-instruct", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "7.9GB", + "digest": "cf611a26b048", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:14b-medium-128k-instruct-fp16", + "name": "phi3:14b-medium-128k-instruct-fp16", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "28GB", + "digest": "ab0d71a0814b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:14b-medium-128k-instruct-q2_K", + "name": "phi3:14b-medium-128k-instruct-q2_K", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "5.1GB", + "digest": "94ce47285859", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:14b-medium-128k-instruct-q3_K_L", + "name": "phi3:14b-medium-128k-instruct-q3_K_L", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "7.5GB", + "digest": "214c9ceb5140", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:14b-medium-128k-instruct-q3_K_M", + "name": "phi3:14b-medium-128k-instruct-q3_K_M", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "6.9GB", + "digest": "b0a6824d6ba9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:14b-medium-128k-instruct-q3_K_S", + "name": "phi3:14b-medium-128k-instruct-q3_K_S", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "6.1GB", + "digest": "2538a4dd560c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:14b-medium-128k-instruct-q4_0", + "name": "phi3:14b-medium-128k-instruct-q4_0", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "7.9GB", + "digest": "cf611a26b048", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:14b-medium-128k-instruct-q4_1", + "name": "phi3:14b-medium-128k-instruct-q4_1", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "8.8GB", + "digest": "92a08305e23f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:14b-medium-128k-instruct-q4_K_M", + "name": "phi3:14b-medium-128k-instruct-q4_K_M", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "8.6GB", + "digest": "1372226c9b0b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:14b-medium-128k-instruct-q4_K_S", + "name": "phi3:14b-medium-128k-instruct-q4_K_S", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "8.0GB", + "digest": "7a0ee8ddd91b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:14b-medium-128k-instruct-q5_0", + "name": "phi3:14b-medium-128k-instruct-q5_0", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "9.6GB", + "digest": "87d42cf3a64b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:14b-medium-128k-instruct-q5_1", + "name": "phi3:14b-medium-128k-instruct-q5_1", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "10GB", + "digest": "06195d5c378a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:14b-medium-128k-instruct-q5_K_M", + "name": "phi3:14b-medium-128k-instruct-q5_K_M", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "10GB", + "digest": "0d45fefe05bb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:14b-medium-128k-instruct-q5_K_S", + "name": "phi3:14b-medium-128k-instruct-q5_K_S", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "9.6GB", + "digest": "85a94efb79c6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:14b-medium-128k-instruct-q6_K", + "name": "phi3:14b-medium-128k-instruct-q6_K", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "11GB", + "digest": "3aa42cb65da9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:14b-medium-128k-instruct-q8_0", + "name": "phi3:14b-medium-128k-instruct-q8_0", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "15GB", + "digest": "f1d91573aa38", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:14b-medium-4k-instruct-fp16", + "name": "phi3:14b-medium-4k-instruct-fp16", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "28GB", + "digest": "b8af0a87fe3b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:14b-medium-4k-instruct-q2_K", + "name": "phi3:14b-medium-4k-instruct-q2_K", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "5.1GB", + "digest": "1d0b237ac0c0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:14b-medium-4k-instruct-q3_K_L", + "name": "phi3:14b-medium-4k-instruct-q3_K_L", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "7.5GB", + "digest": "8c89f02e74e7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:14b-medium-4k-instruct-q3_K_M", + "name": "phi3:14b-medium-4k-instruct-q3_K_M", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "6.9GB", + "digest": "b44869982901", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:14b-medium-4k-instruct-q3_K_S", + "name": "phi3:14b-medium-4k-instruct-q3_K_S", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "6.1GB", + "digest": "1d8e8b16704d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:14b-medium-4k-instruct-q4_0", + "name": "phi3:14b-medium-4k-instruct-q4_0", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "7.9GB", + "digest": "325e47441f3f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:14b-medium-4k-instruct-q4_1", + "name": "phi3:14b-medium-4k-instruct-q4_1", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "8.8GB", + "digest": "7e56b73c5446", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:14b-medium-4k-instruct-q4_K_M", + "name": "phi3:14b-medium-4k-instruct-q4_K_M", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "8.6GB", + "digest": "4de15128ef23", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:14b-medium-4k-instruct-q4_K_S", + "name": "phi3:14b-medium-4k-instruct-q4_K_S", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "8.0GB", + "digest": "98b4f4a2f662", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:14b-medium-4k-instruct-q5_0", + "name": "phi3:14b-medium-4k-instruct-q5_0", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "9.6GB", + "digest": "621f05f2d49e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:14b-medium-4k-instruct-q5_1", + "name": "phi3:14b-medium-4k-instruct-q5_1", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "10GB", + "digest": "d7fd9927e592", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:14b-medium-4k-instruct-q5_K_M", + "name": "phi3:14b-medium-4k-instruct-q5_K_M", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "10GB", + "digest": "44aec5aa964d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:14b-medium-4k-instruct-q5_K_S", + "name": "phi3:14b-medium-4k-instruct-q5_K_S", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "9.6GB", + "digest": "0efda84af8ae", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:14b-medium-4k-instruct-q6_K", + "name": "phi3:14b-medium-4k-instruct-q6_K", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "11GB", + "digest": "8d6899ff682b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:14b-medium-4k-instruct-q8_0", + "name": "phi3:14b-medium-4k-instruct-q8_0", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "15GB", + "digest": "87e27f01007b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:3.8b-instruct", + "name": "phi3:3.8b-instruct", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "2.2GB", + "digest": "4f2222927938", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:3.8b-mini-128k-instruct-fp16", + "name": "phi3:3.8b-mini-128k-instruct-fp16", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "7.6GB", + "digest": "40010fd60dc7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:3.8b-mini-128k-instruct-q2_K", + "name": "phi3:3.8b-mini-128k-instruct-q2_K", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "1.4GB", + "digest": "0dc429b5761b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:3.8b-mini-128k-instruct-q3_K_L", + "name": "phi3:3.8b-mini-128k-instruct-q3_K_L", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "2.1GB", + "digest": "58dabb8dab6e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:3.8b-mini-128k-instruct-q3_K_M", + "name": "phi3:3.8b-mini-128k-instruct-q3_K_M", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "2.0GB", + "digest": "bf51ffbfc6fd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:3.8b-mini-128k-instruct-q3_K_S", + "name": "phi3:3.8b-mini-128k-instruct-q3_K_S", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "1.7GB", + "digest": "b867d0390a90", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:3.8b-mini-128k-instruct-q4_0", + "name": "phi3:3.8b-mini-128k-instruct-q4_0", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "2.2GB", + "digest": "4f2222927938", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:3.8b-mini-128k-instruct-q4_1", + "name": "phi3:3.8b-mini-128k-instruct-q4_1", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "2.4GB", + "digest": "7ed2c3a2024e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:3.8b-mini-128k-instruct-q4_K_M", + "name": "phi3:3.8b-mini-128k-instruct-q4_K_M", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "2.4GB", + "digest": "5a157c52afff", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:3.8b-mini-128k-instruct-q4_K_S", + "name": "phi3:3.8b-mini-128k-instruct-q4_K_S", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "2.2GB", + "digest": "786fb198d976", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:3.8b-mini-128k-instruct-q5_0", + "name": "phi3:3.8b-mini-128k-instruct-q5_0", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "2.6GB", + "digest": "68e0cbe0eb8a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:3.8b-mini-128k-instruct-q5_1", + "name": "phi3:3.8b-mini-128k-instruct-q5_1", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "2.9GB", + "digest": "7ccd40684bd5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:3.8b-mini-128k-instruct-q5_K_M", + "name": "phi3:3.8b-mini-128k-instruct-q5_K_M", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "2.8GB", + "digest": "ffbd0ae55416", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:3.8b-mini-128k-instruct-q5_K_S", + "name": "phi3:3.8b-mini-128k-instruct-q5_K_S", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "2.6GB", + "digest": "86b1e7aa6fd8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:3.8b-mini-128k-instruct-q6_K", + "name": "phi3:3.8b-mini-128k-instruct-q6_K", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "3.1GB", + "digest": "90771235c599", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:3.8b-mini-128k-instruct-q8_0", + "name": "phi3:3.8b-mini-128k-instruct-q8_0", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "4.1GB", + "digest": "adc0589ce82e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:3.8b-mini-4k-instruct-fp16", + "name": "phi3:3.8b-mini-4k-instruct-fp16", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "7.6GB", + "digest": "d2a1bcb6ea9d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:3.8b-mini-4k-instruct-q2_K", + "name": "phi3:3.8b-mini-4k-instruct-q2_K", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "1.4GB", + "digest": "f71db22ea23b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:3.8b-mini-4k-instruct-q3_K_L", + "name": "phi3:3.8b-mini-4k-instruct-q3_K_L", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "2.1GB", + "digest": "7b07bdbff049", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:3.8b-mini-4k-instruct-q3_K_M", + "name": "phi3:3.8b-mini-4k-instruct-q3_K_M", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "2.0GB", + "digest": "9971a6367aaa", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:3.8b-mini-4k-instruct-q3_K_S", + "name": "phi3:3.8b-mini-4k-instruct-q3_K_S", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "1.7GB", + "digest": "71d5c0da0a45", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:3.8b-mini-4k-instruct-q4_0", + "name": "phi3:3.8b-mini-4k-instruct-q4_0", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "2.2GB", + "digest": "9e6804ea5320", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:3.8b-mini-4k-instruct-q4_1", + "name": "phi3:3.8b-mini-4k-instruct-q4_1", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "2.4GB", + "digest": "ce621d0c2d06", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:3.8b-mini-4k-instruct-q4_K_M", + "name": "phi3:3.8b-mini-4k-instruct-q4_K_M", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "2.4GB", + "digest": "d5ea514251bf", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:3.8b-mini-4k-instruct-q4_K_S", + "name": "phi3:3.8b-mini-4k-instruct-q4_K_S", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "2.2GB", + "digest": "3a368186663f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:3.8b-mini-4k-instruct-q5_0", + "name": "phi3:3.8b-mini-4k-instruct-q5_0", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "2.6GB", + "digest": "df35ca8fb243", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:3.8b-mini-4k-instruct-q5_1", + "name": "phi3:3.8b-mini-4k-instruct-q5_1", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "2.9GB", + "digest": "416e85af3eae", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:3.8b-mini-4k-instruct-q5_K_M", + "name": "phi3:3.8b-mini-4k-instruct-q5_K_M", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "2.8GB", + "digest": "a902ed3435bb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:3.8b-mini-4k-instruct-q5_K_S", + "name": "phi3:3.8b-mini-4k-instruct-q5_K_S", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "2.6GB", + "digest": "2f614430e421", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:3.8b-mini-4k-instruct-q6_K", + "name": "phi3:3.8b-mini-4k-instruct-q6_K", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "3.1GB", + "digest": "bbae7edc39d4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:3.8b-mini-4k-instruct-q8_0", + "name": "phi3:3.8b-mini-4k-instruct-q8_0", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "4.1GB", + "digest": "6b7f8cbb8b25", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:instruct", + "name": "phi3:instruct", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "2.2GB", + "digest": "4f2222927938", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:medium", + "name": "phi3:medium", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "7.9GB", + "digest": "cf611a26b048", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:medium-128k", + "name": "phi3:medium-128k", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "7.9GB", + "digest": "cf611a26b048", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:medium-4k", + "name": "phi3:medium-4k", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "7.9GB", + "digest": "325e47441f3f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:mini", + "name": "phi3:mini", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "2.2GB", + "digest": "4f2222927938", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:mini-128k", + "name": "phi3:mini-128k", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "2.2GB", + "digest": "4f2222927938", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3:mini-4k", + "name": "phi3:mini-4k", + "description": "Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art open models by Microsoft.", + "size": "2.4GB", + "digest": "d5ea514251bf", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2", + "name": "gemma2", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "5.4GB", + "digest": "ff02c3702f32", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "gemma2:2b", + "name": "gemma2:2b", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "1.6GB", + "digest": "8ccf136fdd52", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:9b", + "name": "gemma2:9b", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "5.4GB", + "digest": "ff02c3702f32", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:27b", + "name": "gemma2:27b", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "16GB", + "digest": "53261bc9c192", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:27b-instruct-fp16", + "name": "gemma2:27b-instruct-fp16", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "54GB", + "digest": "4a8f851205c5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:27b-instruct-q2_K", + "name": "gemma2:27b-instruct-q2_K", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "10GB", + "digest": "76893265b678", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:27b-instruct-q3_K_L", + "name": "gemma2:27b-instruct-q3_K_L", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "15GB", + "digest": "b4373ced0518", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:27b-instruct-q3_K_M", + "name": "gemma2:27b-instruct-q3_K_M", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "13GB", + "digest": "6a5f9669ec46", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:27b-instruct-q3_K_S", + "name": "gemma2:27b-instruct-q3_K_S", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "12GB", + "digest": "69280a4e9328", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:27b-instruct-q4_0", + "name": "gemma2:27b-instruct-q4_0", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "16GB", + "digest": "53261bc9c192", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:27b-instruct-q4_1", + "name": "gemma2:27b-instruct-q4_1", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "17GB", + "digest": "00571b7df00d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:27b-instruct-q4_K_M", + "name": "gemma2:27b-instruct-q4_K_M", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "17GB", + "digest": "cfd95e5696e9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:27b-instruct-q4_K_S", + "name": "gemma2:27b-instruct-q4_K_S", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "16GB", + "digest": "04e31e399ce4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:27b-instruct-q5_0", + "name": "gemma2:27b-instruct-q5_0", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "19GB", + "digest": "9a3c9159e872", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:27b-instruct-q5_1", + "name": "gemma2:27b-instruct-q5_1", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "21GB", + "digest": "2945f01919f8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:27b-instruct-q5_K_M", + "name": "gemma2:27b-instruct-q5_K_M", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "19GB", + "digest": "fc62fd7d70c9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:27b-instruct-q5_K_S", + "name": "gemma2:27b-instruct-q5_K_S", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "19GB", + "digest": "44414d6eeb99", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:27b-instruct-q6_K", + "name": "gemma2:27b-instruct-q6_K", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "22GB", + "digest": "42dd7dda6a9b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:27b-instruct-q8_0", + "name": "gemma2:27b-instruct-q8_0", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "29GB", + "digest": "dab5dca674db", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:27b-text-fp16", + "name": "gemma2:27b-text-fp16", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "54GB", + "digest": "f2bf7cf9592e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:27b-text-q2_K", + "name": "gemma2:27b-text-q2_K", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "10GB", + "digest": "b155db00c442", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:27b-text-q3_K_L", + "name": "gemma2:27b-text-q3_K_L", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "15GB", + "digest": "141000b954c5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:27b-text-q3_K_M", + "name": "gemma2:27b-text-q3_K_M", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "13GB", + "digest": "a0339d8fbaca", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:27b-text-q3_K_S", + "name": "gemma2:27b-text-q3_K_S", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "12GB", + "digest": "5005188f3c9f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:27b-text-q4_0", + "name": "gemma2:27b-text-q4_0", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "16GB", + "digest": "7fc57426afcc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:27b-text-q4_1", + "name": "gemma2:27b-text-q4_1", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "17GB", + "digest": "e478a638db41", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:27b-text-q4_K_M", + "name": "gemma2:27b-text-q4_K_M", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "17GB", + "digest": "1cab10d40d57", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:27b-text-q4_K_S", + "name": "gemma2:27b-text-q4_K_S", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "16GB", + "digest": "3943c447b4cb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:27b-text-q5_0", + "name": "gemma2:27b-text-q5_0", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "19GB", + "digest": "b14cd86ea97e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:27b-text-q5_1", + "name": "gemma2:27b-text-q5_1", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "21GB", + "digest": "43e7a8f2c64b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:27b-text-q5_K_M", + "name": "gemma2:27b-text-q5_K_M", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "19GB", + "digest": "bd157e89aea0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:27b-text-q5_K_S", + "name": "gemma2:27b-text-q5_K_S", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "19GB", + "digest": "3cdf7604434b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:27b-text-q6_K", + "name": "gemma2:27b-text-q6_K", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "22GB", + "digest": "c0d8f9013cd0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:27b-text-q8_0", + "name": "gemma2:27b-text-q8_0", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "29GB", + "digest": "0f062e1aad57", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:2b-instruct-fp16", + "name": "gemma2:2b-instruct-fp16", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "5.2GB", + "digest": "ca5f76641a2a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:2b-instruct-q2_K", + "name": "gemma2:2b-instruct-q2_K", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "1.2GB", + "digest": "470392386d3f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:2b-instruct-q3_K_L", + "name": "gemma2:2b-instruct-q3_K_L", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "1.6GB", + "digest": "3f4d7eff5631", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:2b-instruct-q3_K_M", + "name": "gemma2:2b-instruct-q3_K_M", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "1.5GB", + "digest": "c9f6dc0ebba9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:2b-instruct-q3_K_S", + "name": "gemma2:2b-instruct-q3_K_S", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "1.4GB", + "digest": "23e3c31b0102", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:2b-instruct-q4_0", + "name": "gemma2:2b-instruct-q4_0", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "1.6GB", + "digest": "8ccf136fdd52", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:2b-instruct-q4_1", + "name": "gemma2:2b-instruct-q4_1", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "1.8GB", + "digest": "147febd40666", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:2b-instruct-q4_K_M", + "name": "gemma2:2b-instruct-q4_K_M", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "1.7GB", + "digest": "cb2d06dce813", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:2b-instruct-q4_K_S", + "name": "gemma2:2b-instruct-q4_K_S", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "1.6GB", + "digest": "832970b742f1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:2b-instruct-q5_0", + "name": "gemma2:2b-instruct-q5_0", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "1.9GB", + "digest": "33c77c94b6d9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:2b-instruct-q5_1", + "name": "gemma2:2b-instruct-q5_1", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "2.0GB", + "digest": "3d4744db4971", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:2b-instruct-q5_K_M", + "name": "gemma2:2b-instruct-q5_K_M", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "1.9GB", + "digest": "44b731fe20db", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:2b-instruct-q5_K_S", + "name": "gemma2:2b-instruct-q5_K_S", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "1.9GB", + "digest": "6ced300e723a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:2b-instruct-q6_K", + "name": "gemma2:2b-instruct-q6_K", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "2.2GB", + "digest": "6c5eedbb9189", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:2b-instruct-q8_0", + "name": "gemma2:2b-instruct-q8_0", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "2.8GB", + "digest": "9d27a8c2325c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:2b-text-fp16", + "name": "gemma2:2b-text-fp16", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "5.2GB", + "digest": "230266e59979", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:2b-text-q2_K", + "name": "gemma2:2b-text-q2_K", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "1.2GB", + "digest": "dc8ae2e5288f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:2b-text-q3_K_L", + "name": "gemma2:2b-text-q3_K_L", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "1.6GB", + "digest": "3bb5d7d90c92", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:2b-text-q3_K_M", + "name": "gemma2:2b-text-q3_K_M", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "1.5GB", + "digest": "d1fbc3646636", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:2b-text-q3_K_S", + "name": "gemma2:2b-text-q3_K_S", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "1.4GB", + "digest": "79e51c86c582", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:2b-text-q4_0", + "name": "gemma2:2b-text-q4_0", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "1.6GB", + "digest": "3e796d92bb34", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:2b-text-q4_1", + "name": "gemma2:2b-text-q4_1", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "1.8GB", + "digest": "47a5df96d4e0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:2b-text-q4_K_M", + "name": "gemma2:2b-text-q4_K_M", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "1.7GB", + "digest": "c104b2dcf9cd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:2b-text-q4_K_S", + "name": "gemma2:2b-text-q4_K_S", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "1.6GB", + "digest": "d86f9248222e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:2b-text-q5_0", + "name": "gemma2:2b-text-q5_0", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "1.9GB", + "digest": "5584a807b8ba", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:2b-text-q5_1", + "name": "gemma2:2b-text-q5_1", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "2.0GB", + "digest": "6fb41a6313fd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:2b-text-q5_K_M", + "name": "gemma2:2b-text-q5_K_M", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "1.9GB", + "digest": "d298863d20ab", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:2b-text-q5_K_S", + "name": "gemma2:2b-text-q5_K_S", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "1.9GB", + "digest": "a3cd2a717100", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:2b-text-q6_K", + "name": "gemma2:2b-text-q6_K", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "2.2GB", + "digest": "3b637a49f20f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:2b-text-q8_0", + "name": "gemma2:2b-text-q8_0", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "2.8GB", + "digest": "302f408c0774", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:9b-instruct-fp16", + "name": "gemma2:9b-instruct-fp16", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "18GB", + "digest": "28e6684b0850", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:9b-instruct-q2_K", + "name": "gemma2:9b-instruct-q2_K", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "3.8GB", + "digest": "592e44efb2df", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:9b-instruct-q3_K_L", + "name": "gemma2:9b-instruct-q3_K_L", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "5.1GB", + "digest": "d714823ae8ef", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:9b-instruct-q3_K_M", + "name": "gemma2:9b-instruct-q3_K_M", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "4.8GB", + "digest": "7461deaf5540", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:9b-instruct-q3_K_S", + "name": "gemma2:9b-instruct-q3_K_S", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "4.3GB", + "digest": "1c8775e10b1c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:9b-instruct-q4_0", + "name": "gemma2:9b-instruct-q4_0", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "5.4GB", + "digest": "ff02c3702f32", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:9b-instruct-q4_1", + "name": "gemma2:9b-instruct-q4_1", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "6.0GB", + "digest": "5bfc4cf059e2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:9b-instruct-q4_K_M", + "name": "gemma2:9b-instruct-q4_K_M", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "5.8GB", + "digest": "c20bec88025f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:9b-instruct-q4_K_S", + "name": "gemma2:9b-instruct-q4_K_S", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "5.5GB", + "digest": "3d812e007d80", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:9b-instruct-q5_0", + "name": "gemma2:9b-instruct-q5_0", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "6.5GB", + "digest": "ad7303695a24", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:9b-instruct-q5_1", + "name": "gemma2:9b-instruct-q5_1", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "7.0GB", + "digest": "11404375df45", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:9b-instruct-q5_K_M", + "name": "gemma2:9b-instruct-q5_K_M", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "6.6GB", + "digest": "272e1f3a41a6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:9b-instruct-q5_K_S", + "name": "gemma2:9b-instruct-q5_K_S", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "6.5GB", + "digest": "6995ad07422a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:9b-instruct-q6_K", + "name": "gemma2:9b-instruct-q6_K", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "7.6GB", + "digest": "3827bab50424", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:9b-instruct-q8_0", + "name": "gemma2:9b-instruct-q8_0", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "9.8GB", + "digest": "54faa8324fdf", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:9b-text-fp16", + "name": "gemma2:9b-text-fp16", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "18GB", + "digest": "71ccbb94da28", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:9b-text-q2_K", + "name": "gemma2:9b-text-q2_K", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "3.8GB", + "digest": "81108b242383", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:9b-text-q3_K_L", + "name": "gemma2:9b-text-q3_K_L", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "5.1GB", + "digest": "5cb6a0b99634", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:9b-text-q3_K_M", + "name": "gemma2:9b-text-q3_K_M", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "4.8GB", + "digest": "e224c0ba8c7c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:9b-text-q3_K_S", + "name": "gemma2:9b-text-q3_K_S", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "4.3GB", + "digest": "021fbe1dc58b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:9b-text-q4_0", + "name": "gemma2:9b-text-q4_0", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "5.4GB", + "digest": "dedd536d2868", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:9b-text-q4_1", + "name": "gemma2:9b-text-q4_1", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "6.0GB", + "digest": "39d615163f3c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:9b-text-q4_K_M", + "name": "gemma2:9b-text-q4_K_M", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "5.8GB", + "digest": "f4da9dd04c19", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:9b-text-q4_K_S", + "name": "gemma2:9b-text-q4_K_S", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "5.5GB", + "digest": "89a237d62c43", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:9b-text-q5_0", + "name": "gemma2:9b-text-q5_0", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "6.5GB", + "digest": "3d1c595d93ad", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:9b-text-q5_1", + "name": "gemma2:9b-text-q5_1", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "7.0GB", + "digest": "2c8271d50a2c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:9b-text-q5_K_M", + "name": "gemma2:9b-text-q5_K_M", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "6.6GB", + "digest": "cb5cdf64cd6a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:9b-text-q5_K_S", + "name": "gemma2:9b-text-q5_K_S", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "6.5GB", + "digest": "d569833b0000", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:9b-text-q6_K", + "name": "gemma2:9b-text-q6_K", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "7.6GB", + "digest": "eecb7df81861", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "gemma2:9b-text-q8_0", + "name": "gemma2:9b-text-q8_0", + "description": "Google Gemma 2 is a high-performing and efficient model available in three sizes: 2B, 9B, and 27B.", + "size": "9.8GB", + "digest": "e09381422c99", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder", + "name": "qwen2.5-coder", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "4.7GB", + "digest": "2b0496514337", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "qwen2.5-coder:0.5b", + "name": "qwen2.5-coder:0.5b", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "531MB", + "digest": "d392ed348d5b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:1.5b", + "name": "qwen2.5-coder:1.5b", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "986MB", + "digest": "6d3abb8d2d53", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:3b", + "name": "qwen2.5-coder:3b", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "1.9GB", + "digest": "e7149271c296", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:7b", + "name": "qwen2.5-coder:7b", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "4.7GB", + "digest": "2b0496514337", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:14b", + "name": "qwen2.5-coder:14b", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "9.0GB", + "digest": "3028237cc8c5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:32b", + "name": "qwen2.5-coder:32b", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "20GB", + "digest": "4bd6cbf2d094", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:0.5b-base", + "name": "qwen2.5-coder:0.5b-base", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "531MB", + "digest": "a0a84cca0f91", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:0.5b-base-fp16", + "name": "qwen2.5-coder:0.5b-base-fp16", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "994MB", + "digest": "7df7a5e33f40", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:0.5b-base-q2_K", + "name": "qwen2.5-coder:0.5b-base-q2_K", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "339MB", + "digest": "d31a8a24175b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:0.5b-base-q3_K_L", + "name": "qwen2.5-coder:0.5b-base-q3_K_L", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "369MB", + "digest": "4a05a175ece5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:0.5b-base-q3_K_M", + "name": "qwen2.5-coder:0.5b-base-q3_K_M", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "355MB", + "digest": "2f339fd12a48", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:0.5b-base-q3_K_S", + "name": "qwen2.5-coder:0.5b-base-q3_K_S", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "338MB", + "digest": "e422e12f737e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:0.5b-base-q4_0", + "name": "qwen2.5-coder:0.5b-base-q4_0", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "352MB", + "digest": "5b162945dc3f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:0.5b-base-q4_1", + "name": "qwen2.5-coder:0.5b-base-q4_1", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "375MB", + "digest": "27c4e36f2bf1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:0.5b-base-q4_K_M", + "name": "qwen2.5-coder:0.5b-base-q4_K_M", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "398MB", + "digest": "a5e657de26cb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:0.5b-base-q4_K_S", + "name": "qwen2.5-coder:0.5b-base-q4_K_S", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "385MB", + "digest": "fb9f36e97c1a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:0.5b-base-q5_0", + "name": "qwen2.5-coder:0.5b-base-q5_0", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "397MB", + "digest": "d913cffe15a5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:0.5b-base-q5_1", + "name": "qwen2.5-coder:0.5b-base-q5_1", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "419MB", + "digest": "90fb0d5bbe28", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:0.5b-base-q5_K_M", + "name": "qwen2.5-coder:0.5b-base-q5_K_M", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "420MB", + "digest": "057639c6959e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:0.5b-base-q5_K_S", + "name": "qwen2.5-coder:0.5b-base-q5_K_S", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "413MB", + "digest": "8a75bd23fad4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:0.5b-base-q6_K", + "name": "qwen2.5-coder:0.5b-base-q6_K", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "506MB", + "digest": "d71ccdf96af9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:0.5b-base-q8_0", + "name": "qwen2.5-coder:0.5b-base-q8_0", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "531MB", + "digest": "a0a84cca0f91", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:0.5b-instruct", + "name": "qwen2.5-coder:0.5b-instruct", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "531MB", + "digest": "d392ed348d5b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:0.5b-instruct-fp16", + "name": "qwen2.5-coder:0.5b-instruct-fp16", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "994MB", + "digest": "9f7232fb2644", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:0.5b-instruct-q2_K", + "name": "qwen2.5-coder:0.5b-instruct-q2_K", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "339MB", + "digest": "a85ff0bb3232", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:0.5b-instruct-q3_K_L", + "name": "qwen2.5-coder:0.5b-instruct-q3_K_L", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "369MB", + "digest": "339c977485c0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:0.5b-instruct-q3_K_M", + "name": "qwen2.5-coder:0.5b-instruct-q3_K_M", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "355MB", + "digest": "df284a2cddad", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:0.5b-instruct-q3_K_S", + "name": "qwen2.5-coder:0.5b-instruct-q3_K_S", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "338MB", + "digest": "14e8487303fa", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:0.5b-instruct-q4_0", + "name": "qwen2.5-coder:0.5b-instruct-q4_0", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "352MB", + "digest": "457cbfef860a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:0.5b-instruct-q4_1", + "name": "qwen2.5-coder:0.5b-instruct-q4_1", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "375MB", + "digest": "2f05130af7ba", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:0.5b-instruct-q4_K_M", + "name": "qwen2.5-coder:0.5b-instruct-q4_K_M", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "398MB", + "digest": "b0b7a69e6902", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:0.5b-instruct-q4_K_S", + "name": "qwen2.5-coder:0.5b-instruct-q4_K_S", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "385MB", + "digest": "3365f1d46618", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:0.5b-instruct-q5_0", + "name": "qwen2.5-coder:0.5b-instruct-q5_0", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "397MB", + "digest": "f0bf774eb4c8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:0.5b-instruct-q5_1", + "name": "qwen2.5-coder:0.5b-instruct-q5_1", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "419MB", + "digest": "1f319f9f1dce", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:0.5b-instruct-q5_K_M", + "name": "qwen2.5-coder:0.5b-instruct-q5_K_M", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "420MB", + "digest": "f9dc915276f3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:0.5b-instruct-q5_K_S", + "name": "qwen2.5-coder:0.5b-instruct-q5_K_S", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "413MB", + "digest": "d2811ac495a5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:0.5b-instruct-q6_K", + "name": "qwen2.5-coder:0.5b-instruct-q6_K", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "506MB", + "digest": "950423b138b2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:0.5b-instruct-q8_0", + "name": "qwen2.5-coder:0.5b-instruct-q8_0", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "531MB", + "digest": "d392ed348d5b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:1.5b-base", + "name": "qwen2.5-coder:1.5b-base", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "986MB", + "digest": "02e0f2817a89", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:1.5b-base-fp16", + "name": "qwen2.5-coder:1.5b-base-fp16", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "3.1GB", + "digest": "c60c78f3f951", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:1.5b-base-q2_K", + "name": "qwen2.5-coder:1.5b-base-q2_K", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "676MB", + "digest": "21495720163c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:1.5b-base-q3_K_L", + "name": "qwen2.5-coder:1.5b-base-q3_K_L", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "880MB", + "digest": "4426c1041b69", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:1.5b-base-q3_K_M", + "name": "qwen2.5-coder:1.5b-base-q3_K_M", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "824MB", + "digest": "c60d4f18ee47", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:1.5b-base-q3_K_S", + "name": "qwen2.5-coder:1.5b-base-q3_K_S", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "761MB", + "digest": "a8bf69c72535", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:1.5b-base-q4_0", + "name": "qwen2.5-coder:1.5b-base-q4_0", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "935MB", + "digest": "d7b55910863e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:1.5b-base-q4_1", + "name": "qwen2.5-coder:1.5b-base-q4_1", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "1.0GB", + "digest": "fe2fd45b0b62", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:1.5b-base-q4_K_M", + "name": "qwen2.5-coder:1.5b-base-q4_K_M", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "986MB", + "digest": "02e0f2817a89", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:1.5b-base-q4_K_S", + "name": "qwen2.5-coder:1.5b-base-q4_K_S", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "940MB", + "digest": "08ec5a15b673", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:1.5b-base-q5_0", + "name": "qwen2.5-coder:1.5b-base-q5_0", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "1.1GB", + "digest": "b4c976b09f43", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:1.5b-base-q5_1", + "name": "qwen2.5-coder:1.5b-base-q5_1", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "1.2GB", + "digest": "88c33ad03a34", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:1.5b-base-q5_K_M", + "name": "qwen2.5-coder:1.5b-base-q5_K_M", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "1.1GB", + "digest": "654fda51b75d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:1.5b-base-q5_K_S", + "name": "qwen2.5-coder:1.5b-base-q5_K_S", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "1.1GB", + "digest": "3fee77d92bdb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:1.5b-base-q6_K", + "name": "qwen2.5-coder:1.5b-base-q6_K", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "1.3GB", + "digest": "ee6aadc25edf", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:1.5b-base-q8_0", + "name": "qwen2.5-coder:1.5b-base-q8_0", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "1.6GB", + "digest": "e24beaf2eeb1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:1.5b-instruct", + "name": "qwen2.5-coder:1.5b-instruct", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "986MB", + "digest": "6d3abb8d2d53", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:1.5b-instruct-fp16", + "name": "qwen2.5-coder:1.5b-instruct-fp16", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "3.1GB", + "digest": "1668a6604aa8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:1.5b-instruct-q2_K", + "name": "qwen2.5-coder:1.5b-instruct-q2_K", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "676MB", + "digest": "3f99e5a46105", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:1.5b-instruct-q3_K_L", + "name": "qwen2.5-coder:1.5b-instruct-q3_K_L", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "880MB", + "digest": "cd2b9884b7c1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:1.5b-instruct-q3_K_M", + "name": "qwen2.5-coder:1.5b-instruct-q3_K_M", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "824MB", + "digest": "ef30c1e4bcd3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:1.5b-instruct-q3_K_S", + "name": "qwen2.5-coder:1.5b-instruct-q3_K_S", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "761MB", + "digest": "ccb3ff1d76f0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:1.5b-instruct-q4_0", + "name": "qwen2.5-coder:1.5b-instruct-q4_0", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "935MB", + "digest": "7a72bb6afa7e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:1.5b-instruct-q4_1", + "name": "qwen2.5-coder:1.5b-instruct-q4_1", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "1.0GB", + "digest": "93a51bc0ef90", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:1.5b-instruct-q4_K_M", + "name": "qwen2.5-coder:1.5b-instruct-q4_K_M", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "986MB", + "digest": "6d3abb8d2d53", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:1.5b-instruct-q4_K_S", + "name": "qwen2.5-coder:1.5b-instruct-q4_K_S", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "940MB", + "digest": "d3d00fd4cd21", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:1.5b-instruct-q5_0", + "name": "qwen2.5-coder:1.5b-instruct-q5_0", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "1.1GB", + "digest": "f92839c955d7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:1.5b-instruct-q5_1", + "name": "qwen2.5-coder:1.5b-instruct-q5_1", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "1.2GB", + "digest": "9fcb18ceca68", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:1.5b-instruct-q5_K_M", + "name": "qwen2.5-coder:1.5b-instruct-q5_K_M", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "1.1GB", + "digest": "86534b8cd2ae", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:1.5b-instruct-q5_K_S", + "name": "qwen2.5-coder:1.5b-instruct-q5_K_S", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "1.1GB", + "digest": "0d096b5adc77", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:1.5b-instruct-q6_K", + "name": "qwen2.5-coder:1.5b-instruct-q6_K", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "1.3GB", + "digest": "5aace8e51327", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:1.5b-instruct-q8_0", + "name": "qwen2.5-coder:1.5b-instruct-q8_0", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "1.6GB", + "digest": "be795efce4e6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:14b-base", + "name": "qwen2.5-coder:14b-base", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "9.0GB", + "digest": "8221e52a9c29", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:14b-base-fp16", + "name": "qwen2.5-coder:14b-base-fp16", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "30GB", + "digest": "6f5c33bce184", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:14b-base-q2_K", + "name": "qwen2.5-coder:14b-base-q2_K", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "5.8GB", + "digest": "336a7203708b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:14b-base-q3_K_L", + "name": "qwen2.5-coder:14b-base-q3_K_L", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "7.9GB", + "digest": "b0053e4e7dd8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:14b-base-q3_K_M", + "name": "qwen2.5-coder:14b-base-q3_K_M", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "7.3GB", + "digest": "758b2a555be0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:14b-base-q3_K_S", + "name": "qwen2.5-coder:14b-base-q3_K_S", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "6.7GB", + "digest": "1e806311530b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:14b-base-q4_0", + "name": "qwen2.5-coder:14b-base-q4_0", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "8.5GB", + "digest": "6850c57047b9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:14b-base-q4_1", + "name": "qwen2.5-coder:14b-base-q4_1", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "9.4GB", + "digest": "f9927b6d5824", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:14b-base-q4_K_M", + "name": "qwen2.5-coder:14b-base-q4_K_M", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "9.0GB", + "digest": "8221e52a9c29", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:14b-base-q4_K_S", + "name": "qwen2.5-coder:14b-base-q4_K_S", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "8.6GB", + "digest": "5e43c1525d54", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:14b-base-q5_0", + "name": "qwen2.5-coder:14b-base-q5_0", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "10GB", + "digest": "6223133e20d6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:14b-base-q5_1", + "name": "qwen2.5-coder:14b-base-q5_1", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "11GB", + "digest": "f40e9e553b82", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:14b-base-q5_K_M", + "name": "qwen2.5-coder:14b-base-q5_K_M", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "11GB", + "digest": "cef4074e0c1a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:14b-base-q5_K_S", + "name": "qwen2.5-coder:14b-base-q5_K_S", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "10GB", + "digest": "d43da79decc7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:14b-base-q6_K", + "name": "qwen2.5-coder:14b-base-q6_K", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "12GB", + "digest": "7170ab999364", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:14b-base-q8_0", + "name": "qwen2.5-coder:14b-base-q8_0", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "16GB", + "digest": "95f760beca2d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:14b-instruct-fp16", + "name": "qwen2.5-coder:14b-instruct-fp16", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "30GB", + "digest": "1042ef3bddca", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:14b-instruct-q2_K", + "name": "qwen2.5-coder:14b-instruct-q2_K", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "5.8GB", + "digest": "bd36762aecbd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:14b-instruct-q3_K_L", + "name": "qwen2.5-coder:14b-instruct-q3_K_L", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "7.9GB", + "digest": "e4f990c2cae6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:14b-instruct-q3_K_M", + "name": "qwen2.5-coder:14b-instruct-q3_K_M", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "7.3GB", + "digest": "ada19f9965d6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:14b-instruct-q3_K_S", + "name": "qwen2.5-coder:14b-instruct-q3_K_S", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "6.7GB", + "digest": "07b2e8c66f3a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:14b-instruct-q4_0", + "name": "qwen2.5-coder:14b-instruct-q4_0", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "8.5GB", + "digest": "6593061dfc75", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:14b-instruct-q4_1", + "name": "qwen2.5-coder:14b-instruct-q4_1", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "9.4GB", + "digest": "575705980145", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:14b-instruct-q4_K_M", + "name": "qwen2.5-coder:14b-instruct-q4_K_M", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "9.0GB", + "digest": "3028237cc8c5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:14b-instruct-q4_K_S", + "name": "qwen2.5-coder:14b-instruct-q4_K_S", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "8.6GB", + "digest": "8c5eff4b3e7b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:14b-instruct-q5_0", + "name": "qwen2.5-coder:14b-instruct-q5_0", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "10GB", + "digest": "da32d52fdc63", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:14b-instruct-q5_1", + "name": "qwen2.5-coder:14b-instruct-q5_1", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "11GB", + "digest": "ab39e6e79e73", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:14b-instruct-q5_K_M", + "name": "qwen2.5-coder:14b-instruct-q5_K_M", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "11GB", + "digest": "c592bdca3c35", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:14b-instruct-q5_K_S", + "name": "qwen2.5-coder:14b-instruct-q5_K_S", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "10GB", + "digest": "84d9f680a6ad", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:14b-instruct-q6_K", + "name": "qwen2.5-coder:14b-instruct-q6_K", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "12GB", + "digest": "54bffce63811", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:14b-instruct-q8_0", + "name": "qwen2.5-coder:14b-instruct-q8_0", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "16GB", + "digest": "3c0e1037a12f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:32b-base", + "name": "qwen2.5-coder:32b-base", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "20GB", + "digest": "9218192e3d91", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:32b-base-fp16", + "name": "qwen2.5-coder:32b-base-fp16", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "66GB", + "digest": "200c76285efc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:32b-base-q2_K", + "name": "qwen2.5-coder:32b-base-q2_K", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "12GB", + "digest": "683f75295796", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:32b-base-q3_K_L", + "name": "qwen2.5-coder:32b-base-q3_K_L", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "17GB", + "digest": "c141ac6ccade", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:32b-base-q3_K_M", + "name": "qwen2.5-coder:32b-base-q3_K_M", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "16GB", + "digest": "b70130470871", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:32b-base-q3_K_S", + "name": "qwen2.5-coder:32b-base-q3_K_S", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "14GB", + "digest": "6c379ab949e2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:32b-base-q4_0", + "name": "qwen2.5-coder:32b-base-q4_0", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "19GB", + "digest": "94dd845c2f84", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:32b-base-q4_1", + "name": "qwen2.5-coder:32b-base-q4_1", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "21GB", + "digest": "55acce9dfb07", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:32b-base-q4_K_M", + "name": "qwen2.5-coder:32b-base-q4_K_M", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "20GB", + "digest": "9218192e3d91", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:32b-base-q4_K_S", + "name": "qwen2.5-coder:32b-base-q4_K_S", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "19GB", + "digest": "0de3f2ef4e30", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:32b-base-q5_0", + "name": "qwen2.5-coder:32b-base-q5_0", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "23GB", + "digest": "ef595b15da0e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:32b-base-q5_1", + "name": "qwen2.5-coder:32b-base-q5_1", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "25GB", + "digest": "2e04e7beaf1e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:32b-base-q5_K_M", + "name": "qwen2.5-coder:32b-base-q5_K_M", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "23GB", + "digest": "8a30437e1e25", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:32b-base-q5_K_S", + "name": "qwen2.5-coder:32b-base-q5_K_S", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "23GB", + "digest": "a438a70c2b5e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:32b-base-q6_K", + "name": "qwen2.5-coder:32b-base-q6_K", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "27GB", + "digest": "45489e1efe1b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:32b-base-q8_0", + "name": "qwen2.5-coder:32b-base-q8_0", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "35GB", + "digest": "2888b8e6d633", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:32b-instruct-fp16", + "name": "qwen2.5-coder:32b-instruct-fp16", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "66GB", + "digest": "5955f7d140cd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:32b-instruct-q2_K", + "name": "qwen2.5-coder:32b-instruct-q2_K", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "12GB", + "digest": "6c1e39aa74f3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:32b-instruct-q3_K_L", + "name": "qwen2.5-coder:32b-instruct-q3_K_L", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "17GB", + "digest": "2d7a10da58a6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:32b-instruct-q3_K_M", + "name": "qwen2.5-coder:32b-instruct-q3_K_M", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "16GB", + "digest": "6d3f80df5ad7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:32b-instruct-q3_K_S", + "name": "qwen2.5-coder:32b-instruct-q3_K_S", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "14GB", + "digest": "0408ee31a267", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:32b-instruct-q4_0", + "name": "qwen2.5-coder:32b-instruct-q4_0", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "19GB", + "digest": "76da80401a9c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:32b-instruct-q4_1", + "name": "qwen2.5-coder:32b-instruct-q4_1", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "21GB", + "digest": "d4f634afc953", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:32b-instruct-q4_K_M", + "name": "qwen2.5-coder:32b-instruct-q4_K_M", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "20GB", + "digest": "4bd6cbf2d094", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:32b-instruct-q4_K_S", + "name": "qwen2.5-coder:32b-instruct-q4_K_S", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "19GB", + "digest": "b6b1e40709bd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:32b-instruct-q5_0", + "name": "qwen2.5-coder:32b-instruct-q5_0", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "23GB", + "digest": "ba09bb1ee34e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:32b-instruct-q5_1", + "name": "qwen2.5-coder:32b-instruct-q5_1", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "25GB", + "digest": "9618e5a646f7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:32b-instruct-q5_K_M", + "name": "qwen2.5-coder:32b-instruct-q5_K_M", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "23GB", + "digest": "e8e8a1136ef1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:32b-instruct-q5_K_S", + "name": "qwen2.5-coder:32b-instruct-q5_K_S", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "23GB", + "digest": "7a5c32cff406", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:32b-instruct-q6_K", + "name": "qwen2.5-coder:32b-instruct-q6_K", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "27GB", + "digest": "ec71da531676", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:32b-instruct-q8_0", + "name": "qwen2.5-coder:32b-instruct-q8_0", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "35GB", + "digest": "f37bbf27ec01", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:3b-base", + "name": "qwen2.5-coder:3b-base", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "1.9GB", + "digest": "b71a053ff1b3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:3b-base-fp16", + "name": "qwen2.5-coder:3b-base-fp16", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "6.2GB", + "digest": "47f26db97419", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:3b-base-q2_K", + "name": "qwen2.5-coder:3b-base-q2_K", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "1.3GB", + "digest": "7bd2c4ab30c1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:3b-base-q3_K_L", + "name": "qwen2.5-coder:3b-base-q3_K_L", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "1.7GB", + "digest": "e5e9e860e01c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:3b-base-q3_K_M", + "name": "qwen2.5-coder:3b-base-q3_K_M", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "1.6GB", + "digest": "c039b31a931f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:3b-base-q3_K_S", + "name": "qwen2.5-coder:3b-base-q3_K_S", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "1.5GB", + "digest": "490a8c46fec2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:3b-base-q4_0", + "name": "qwen2.5-coder:3b-base-q4_0", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "1.8GB", + "digest": "f1f7ad8989c3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:3b-base-q4_1", + "name": "qwen2.5-coder:3b-base-q4_1", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "2.0GB", + "digest": "6ba296c4ee70", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:3b-base-q4_K_M", + "name": "qwen2.5-coder:3b-base-q4_K_M", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "1.9GB", + "digest": "b71a053ff1b3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:3b-base-q4_K_S", + "name": "qwen2.5-coder:3b-base-q4_K_S", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "1.8GB", + "digest": "09aa6f058dde", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:3b-base-q5_0", + "name": "qwen2.5-coder:3b-base-q5_0", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "2.2GB", + "digest": "5d9e4253f276", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:3b-base-q5_1", + "name": "qwen2.5-coder:3b-base-q5_1", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "2.3GB", + "digest": "1a003934c203", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:3b-base-q5_K_M", + "name": "qwen2.5-coder:3b-base-q5_K_M", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "2.2GB", + "digest": "5ebe29b5b83a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:3b-base-q5_K_S", + "name": "qwen2.5-coder:3b-base-q5_K_S", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "2.2GB", + "digest": "a5c8f5c89aec", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:3b-base-q6_K", + "name": "qwen2.5-coder:3b-base-q6_K", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "2.5GB", + "digest": "30b38aca8440", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:3b-base-q8_0", + "name": "qwen2.5-coder:3b-base-q8_0", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "3.3GB", + "digest": "153d272fe602", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:3b-instruct-fp16", + "name": "qwen2.5-coder:3b-instruct-fp16", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "6.2GB", + "digest": "f192c0f455a8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:3b-instruct-q2_K", + "name": "qwen2.5-coder:3b-instruct-q2_K", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "1.3GB", + "digest": "bc92ec587b1f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:3b-instruct-q3_K_L", + "name": "qwen2.5-coder:3b-instruct-q3_K_L", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "1.7GB", + "digest": "ee09c0b74e87", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:3b-instruct-q3_K_M", + "name": "qwen2.5-coder:3b-instruct-q3_K_M", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "1.6GB", + "digest": "17a2dcd11c4f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:3b-instruct-q3_K_S", + "name": "qwen2.5-coder:3b-instruct-q3_K_S", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "1.5GB", + "digest": "c2c37ea7d1b3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:3b-instruct-q4_0", + "name": "qwen2.5-coder:3b-instruct-q4_0", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "1.8GB", + "digest": "68bfc2e1c93f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:3b-instruct-q4_1", + "name": "qwen2.5-coder:3b-instruct-q4_1", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "2.0GB", + "digest": "9d85f24ba408", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:3b-instruct-q4_K_M", + "name": "qwen2.5-coder:3b-instruct-q4_K_M", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "1.9GB", + "digest": "e7149271c296", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:3b-instruct-q4_K_S", + "name": "qwen2.5-coder:3b-instruct-q4_K_S", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "1.8GB", + "digest": "1d3af8ce473e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:3b-instruct-q5_0", + "name": "qwen2.5-coder:3b-instruct-q5_0", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "2.2GB", + "digest": "229d447c8ca3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:3b-instruct-q5_1", + "name": "qwen2.5-coder:3b-instruct-q5_1", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "2.3GB", + "digest": "4e05d4521c2d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:3b-instruct-q5_K_M", + "name": "qwen2.5-coder:3b-instruct-q5_K_M", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "2.2GB", + "digest": "4ac6d66cc6d0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:3b-instruct-q5_K_S", + "name": "qwen2.5-coder:3b-instruct-q5_K_S", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "2.2GB", + "digest": "be05f6e00424", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:3b-instruct-q6_K", + "name": "qwen2.5-coder:3b-instruct-q6_K", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "2.5GB", + "digest": "758dcf5aeb7e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:3b-instruct-q8_0", + "name": "qwen2.5-coder:3b-instruct-q8_0", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "3.3GB", + "digest": "922864ba8c25", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:7b-base", + "name": "qwen2.5-coder:7b-base", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "4.7GB", + "digest": "bd8755145f1c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:7b-base-fp16", + "name": "qwen2.5-coder:7b-base-fp16", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "15GB", + "digest": "f48b27b8de29", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:7b-base-q2_K", + "name": "qwen2.5-coder:7b-base-q2_K", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "3.0GB", + "digest": "50bf64f37239", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:7b-base-q3_K_L", + "name": "qwen2.5-coder:7b-base-q3_K_L", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "4.1GB", + "digest": "59db8a8c458f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:7b-base-q3_K_M", + "name": "qwen2.5-coder:7b-base-q3_K_M", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "3.8GB", + "digest": "7220be37a0f0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:7b-base-q3_K_S", + "name": "qwen2.5-coder:7b-base-q3_K_S", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "3.5GB", + "digest": "7dad768fb3cc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:7b-base-q4_0", + "name": "qwen2.5-coder:7b-base-q4_0", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "4.4GB", + "digest": "a1ef3d25fea3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:7b-base-q4_1", + "name": "qwen2.5-coder:7b-base-q4_1", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "4.9GB", + "digest": "bcfe87323815", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:7b-base-q4_K_M", + "name": "qwen2.5-coder:7b-base-q4_K_M", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "4.7GB", + "digest": "bd8755145f1c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:7b-base-q4_K_S", + "name": "qwen2.5-coder:7b-base-q4_K_S", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "4.5GB", + "digest": "d31c13ff6e03", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:7b-base-q5_0", + "name": "qwen2.5-coder:7b-base-q5_0", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "5.3GB", + "digest": "149f852482c9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:7b-base-q5_1", + "name": "qwen2.5-coder:7b-base-q5_1", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "5.8GB", + "digest": "91c4eefa305c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:7b-base-q5_K_M", + "name": "qwen2.5-coder:7b-base-q5_K_M", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "5.4GB", + "digest": "0785cbeb9bcb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:7b-base-q5_K_S", + "name": "qwen2.5-coder:7b-base-q5_K_S", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "5.3GB", + "digest": "4b75c6a0075d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:7b-base-q6_K", + "name": "qwen2.5-coder:7b-base-q6_K", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "6.3GB", + "digest": "7a4f1acbac2d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:7b-base-q8_0", + "name": "qwen2.5-coder:7b-base-q8_0", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "8.1GB", + "digest": "a7b028fab948", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:7b-instruct", + "name": "qwen2.5-coder:7b-instruct", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "4.7GB", + "digest": "2b0496514337", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:7b-instruct-fp16", + "name": "qwen2.5-coder:7b-instruct-fp16", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "15GB", + "digest": "a0ef5a269bb6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:7b-instruct-q2_K", + "name": "qwen2.5-coder:7b-instruct-q2_K", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "3.0GB", + "digest": "3b1ff4e196c1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:7b-instruct-q3_K_L", + "name": "qwen2.5-coder:7b-instruct-q3_K_L", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "4.1GB", + "digest": "4df5f4e718bf", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:7b-instruct-q3_K_M", + "name": "qwen2.5-coder:7b-instruct-q3_K_M", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "3.8GB", + "digest": "15a5d0c6a7d0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:7b-instruct-q3_K_S", + "name": "qwen2.5-coder:7b-instruct-q3_K_S", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "3.5GB", + "digest": "abdf272526be", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:7b-instruct-q4_0", + "name": "qwen2.5-coder:7b-instruct-q4_0", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "4.4GB", + "digest": "39ecf6aed6ac", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:7b-instruct-q4_1", + "name": "qwen2.5-coder:7b-instruct-q4_1", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "4.9GB", + "digest": "082eb7042477", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:7b-instruct-q4_K_M", + "name": "qwen2.5-coder:7b-instruct-q4_K_M", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "4.7GB", + "digest": "2b0496514337", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:7b-instruct-q4_K_S", + "name": "qwen2.5-coder:7b-instruct-q4_K_S", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "4.5GB", + "digest": "1fe3b0db4ef4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:7b-instruct-q5_0", + "name": "qwen2.5-coder:7b-instruct-q5_0", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "5.3GB", + "digest": "9f796142fe81", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:7b-instruct-q5_1", + "name": "qwen2.5-coder:7b-instruct-q5_1", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "5.8GB", + "digest": "5f83b880026f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:7b-instruct-q5_K_M", + "name": "qwen2.5-coder:7b-instruct-q5_K_M", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "5.4GB", + "digest": "697fcd53ee69", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:7b-instruct-q5_K_S", + "name": "qwen2.5-coder:7b-instruct-q5_K_S", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "5.3GB", + "digest": "6258238b2c7a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:7b-instruct-q6_K", + "name": "qwen2.5-coder:7b-instruct-q6_K", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "6.3GB", + "digest": "b44c5b962c62", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2.5-coder:7b-instruct-q8_0", + "name": "qwen2.5-coder:7b-instruct-q8_0", + "description": "The latest series of Code-Specific Qwen models, with significant improvements in code generation, code reasoning, and code fixing.", + "size": "8.1GB", + "digest": "7cef144aaa22", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama", + "name": "codellama", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "3.8GB", + "digest": "8fdf8f752f6e", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "codellama:7b", + "name": "codellama:7b", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "3.8GB", + "digest": "8fdf8f752f6e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:13b", + "name": "codellama:13b", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "7.4GB", + "digest": "9f438cb9cd58", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:34b", + "name": "codellama:34b", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "19GB", + "digest": "685be00e1532", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:70b", + "name": "codellama:70b", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "39GB", + "digest": "e59b580dfce7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:13b-code", + "name": "codellama:13b-code", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "7.4GB", + "digest": "61b6aa1b3d0f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:13b-code-fp16", + "name": "codellama:13b-code-fp16", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "26GB", + "digest": "d2d1857cd78a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:13b-code-q2_K", + "name": "codellama:13b-code-q2_K", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "5.4GB", + "digest": "15030cfe1222", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:13b-code-q3_K_L", + "name": "codellama:13b-code-q3_K_L", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "6.9GB", + "digest": "ba5706a5838b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:13b-code-q3_K_M", + "name": "codellama:13b-code-q3_K_M", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "6.3GB", + "digest": "89cf92af026f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:13b-code-q3_K_S", + "name": "codellama:13b-code-q3_K_S", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "5.7GB", + "digest": "19a8f7d27f99", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:13b-code-q4_0", + "name": "codellama:13b-code-q4_0", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "7.4GB", + "digest": "61b6aa1b3d0f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:13b-code-q4_1", + "name": "codellama:13b-code-q4_1", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "8.2GB", + "digest": "57327f6dcb54", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:13b-code-q4_K_M", + "name": "codellama:13b-code-q4_K_M", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "7.9GB", + "digest": "0aa12f0144e3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:13b-code-q4_K_S", + "name": "codellama:13b-code-q4_K_S", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "7.4GB", + "digest": "87379a37e4aa", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:13b-code-q5_0", + "name": "codellama:13b-code-q5_0", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "9.0GB", + "digest": "1a8f4c7a3c5f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:13b-code-q5_1", + "name": "codellama:13b-code-q5_1", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "9.8GB", + "digest": "1044f602e601", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:13b-code-q5_K_M", + "name": "codellama:13b-code-q5_K_M", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "9.2GB", + "digest": "2ed5f2d821a0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:13b-code-q5_K_S", + "name": "codellama:13b-code-q5_K_S", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "9.0GB", + "digest": "638856bc2a70", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:13b-code-q6_K", + "name": "codellama:13b-code-q6_K", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "11GB", + "digest": "bbf97c457aa3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:13b-code-q8_0", + "name": "codellama:13b-code-q8_0", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "14GB", + "digest": "03674985089a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:13b-instruct", + "name": "codellama:13b-instruct", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "7.4GB", + "digest": "9f438cb9cd58", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:13b-instruct-fp16", + "name": "codellama:13b-instruct-fp16", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "26GB", + "digest": "220d80e5d12b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:13b-instruct-q2_K", + "name": "codellama:13b-instruct-q2_K", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "5.4GB", + "digest": "8fb59331633d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:13b-instruct-q3_K_L", + "name": "codellama:13b-instruct-q3_K_L", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "6.9GB", + "digest": "bce5c62dfd7d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:13b-instruct-q3_K_M", + "name": "codellama:13b-instruct-q3_K_M", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "6.3GB", + "digest": "b6cfa4228952", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:13b-instruct-q3_K_S", + "name": "codellama:13b-instruct-q3_K_S", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "5.7GB", + "digest": "c67eb99f3c22", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:13b-instruct-q4_0", + "name": "codellama:13b-instruct-q4_0", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "7.4GB", + "digest": "9f438cb9cd58", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:13b-instruct-q4_1", + "name": "codellama:13b-instruct-q4_1", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "8.2GB", + "digest": "e41f7cfb904d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:13b-instruct-q4_K_M", + "name": "codellama:13b-instruct-q4_K_M", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "7.9GB", + "digest": "96b64dad9259", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:13b-instruct-q4_K_S", + "name": "codellama:13b-instruct-q4_K_S", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "7.4GB", + "digest": "ea05ed122e9e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:13b-instruct-q5_0", + "name": "codellama:13b-instruct-q5_0", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "9.0GB", + "digest": "272076d850ca", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:13b-instruct-q5_1", + "name": "codellama:13b-instruct-q5_1", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "9.8GB", + "digest": "c314aa11a40d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:13b-instruct-q5_K_M", + "name": "codellama:13b-instruct-q5_K_M", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "9.2GB", + "digest": "d4a5d7a6ca94", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:13b-instruct-q5_K_S", + "name": "codellama:13b-instruct-q5_K_S", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "9.0GB", + "digest": "88522b510fcb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:13b-instruct-q6_K", + "name": "codellama:13b-instruct-q6_K", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "11GB", + "digest": "d0a67452c242", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:13b-instruct-q8_0", + "name": "codellama:13b-instruct-q8_0", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "14GB", + "digest": "196822804b09", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:13b-python", + "name": "codellama:13b-python", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "7.4GB", + "digest": "ac95ebf45ada", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:13b-python-fp16", + "name": "codellama:13b-python-fp16", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "26GB", + "digest": "46a84a4b71b0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:13b-python-q2_K", + "name": "codellama:13b-python-q2_K", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "5.4GB", + "digest": "c9b35dd8cb12", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:13b-python-q3_K_L", + "name": "codellama:13b-python-q3_K_L", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "6.9GB", + "digest": "f499608bd8fc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:13b-python-q3_K_M", + "name": "codellama:13b-python-q3_K_M", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "6.3GB", + "digest": "97d666909551", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:13b-python-q3_K_S", + "name": "codellama:13b-python-q3_K_S", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "5.7GB", + "digest": "0b5b459ae6ac", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:13b-python-q4_0", + "name": "codellama:13b-python-q4_0", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "7.4GB", + "digest": "ac95ebf45ada", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:13b-python-q4_1", + "name": "codellama:13b-python-q4_1", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "8.2GB", + "digest": "a7e755ca330e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:13b-python-q4_K_M", + "name": "codellama:13b-python-q4_K_M", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "7.9GB", + "digest": "897d6f158bff", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:13b-python-q4_K_S", + "name": "codellama:13b-python-q4_K_S", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "7.4GB", + "digest": "efca725ae5a6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:13b-python-q5_0", + "name": "codellama:13b-python-q5_0", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "9.0GB", + "digest": "4310a4450fac", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:13b-python-q5_1", + "name": "codellama:13b-python-q5_1", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "9.8GB", + "digest": "d896d2264b62", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:13b-python-q5_K_M", + "name": "codellama:13b-python-q5_K_M", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "9.2GB", + "digest": "bee3e1199c6e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:13b-python-q5_K_S", + "name": "codellama:13b-python-q5_K_S", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "9.0GB", + "digest": "23198bde3624", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:13b-python-q6_K", + "name": "codellama:13b-python-q6_K", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "11GB", + "digest": "a156022a735c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:13b-python-q8_0", + "name": "codellama:13b-python-q8_0", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "14GB", + "digest": "651a360f8207", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:34b-code", + "name": "codellama:34b-code", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "19GB", + "digest": "d42f383a80dd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:34b-code-q2_K", + "name": "codellama:34b-code-q2_K", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "14GB", + "digest": "a9cbbaa0bc9f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:34b-code-q3_K_L", + "name": "codellama:34b-code-q3_K_L", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "18GB", + "digest": "aedf79bb4b36", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:34b-code-q3_K_M", + "name": "codellama:34b-code-q3_K_M", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "16GB", + "digest": "b2341adf3f23", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:34b-code-q3_K_S", + "name": "codellama:34b-code-q3_K_S", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "15GB", + "digest": "3c90e44e0e1a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:34b-code-q4_0", + "name": "codellama:34b-code-q4_0", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "19GB", + "digest": "d42f383a80dd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:34b-code-q4_1", + "name": "codellama:34b-code-q4_1", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "21GB", + "digest": "9fa15ea27404", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:34b-code-q4_K_M", + "name": "codellama:34b-code-q4_K_M", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "20GB", + "digest": "ab557c194836", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:34b-code-q4_K_S", + "name": "codellama:34b-code-q4_K_S", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "19GB", + "digest": "74265e6ee37b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:34b-code-q5_0", + "name": "codellama:34b-code-q5_0", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "23GB", + "digest": "1024c60168c2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:34b-code-q5_1", + "name": "codellama:34b-code-q5_1", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "25GB", + "digest": "53011c2b63fa", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:34b-code-q5_K_M", + "name": "codellama:34b-code-q5_K_M", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "24GB", + "digest": "64ead69c55e3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:34b-code-q5_K_S", + "name": "codellama:34b-code-q5_K_S", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "23GB", + "digest": "31fd37f72149", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:34b-code-q6_K", + "name": "codellama:34b-code-q6_K", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "28GB", + "digest": "16cab6eea3fc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:34b-code-q8_0", + "name": "codellama:34b-code-q8_0", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "36GB", + "digest": "9002fe264a7a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:34b-instruct", + "name": "codellama:34b-instruct", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "19GB", + "digest": "685be00e1532", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:34b-instruct-fp16", + "name": "codellama:34b-instruct-fp16", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "67GB", + "digest": "63f5f2314d06", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:34b-instruct-q2_K", + "name": "codellama:34b-instruct-q2_K", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "14GB", + "digest": "1dd65b85730e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:34b-instruct-q3_K_L", + "name": "codellama:34b-instruct-q3_K_L", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "18GB", + "digest": "ddb843faeaf7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:34b-instruct-q3_K_M", + "name": "codellama:34b-instruct-q3_K_M", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "16GB", + "digest": "f534f618ea64", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:34b-instruct-q3_K_S", + "name": "codellama:34b-instruct-q3_K_S", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "15GB", + "digest": "97ab8a9c3b5b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:34b-instruct-q4_0", + "name": "codellama:34b-instruct-q4_0", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "19GB", + "digest": "685be00e1532", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:34b-instruct-q4_1", + "name": "codellama:34b-instruct-q4_1", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "21GB", + "digest": "5493004f889d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:34b-instruct-q4_K_M", + "name": "codellama:34b-instruct-q4_K_M", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "20GB", + "digest": "e12e86e65362", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:34b-instruct-q4_K_S", + "name": "codellama:34b-instruct-q4_K_S", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "19GB", + "digest": "9ed594b9bf24", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:34b-instruct-q5_0", + "name": "codellama:34b-instruct-q5_0", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "23GB", + "digest": "44c793b41643", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:34b-instruct-q5_1", + "name": "codellama:34b-instruct-q5_1", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "25GB", + "digest": "b0615499241e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:34b-instruct-q5_K_M", + "name": "codellama:34b-instruct-q5_K_M", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "24GB", + "digest": "93723cb9e26c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:34b-instruct-q5_K_S", + "name": "codellama:34b-instruct-q5_K_S", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "23GB", + "digest": "cd41440962fd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:34b-instruct-q6_K", + "name": "codellama:34b-instruct-q6_K", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "28GB", + "digest": "e93676fdc8e4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:34b-instruct-q8_0", + "name": "codellama:34b-instruct-q8_0", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "36GB", + "digest": "df46def864c6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:34b-python", + "name": "codellama:34b-python", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "19GB", + "digest": "a9991b91af79", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:34b-python-fp16", + "name": "codellama:34b-python-fp16", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "67GB", + "digest": "a12bdba154f9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:34b-python-q2_K", + "name": "codellama:34b-python-q2_K", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "14GB", + "digest": "804f8d3619ca", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:34b-python-q3_K_L", + "name": "codellama:34b-python-q3_K_L", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "18GB", + "digest": "9a0962344498", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:34b-python-q3_K_M", + "name": "codellama:34b-python-q3_K_M", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "16GB", + "digest": "4d1f7919eac7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:34b-python-q3_K_S", + "name": "codellama:34b-python-q3_K_S", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "15GB", + "digest": "7d04d3730258", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:34b-python-q4_0", + "name": "codellama:34b-python-q4_0", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "19GB", + "digest": "a9991b91af79", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:34b-python-q4_1", + "name": "codellama:34b-python-q4_1", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "21GB", + "digest": "a1d4355844ab", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:34b-python-q4_K_M", + "name": "codellama:34b-python-q4_K_M", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "20GB", + "digest": "4c63b99ce6e0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:34b-python-q4_K_S", + "name": "codellama:34b-python-q4_K_S", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "19GB", + "digest": "dbf6c5ef8774", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:34b-python-q5_0", + "name": "codellama:34b-python-q5_0", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "23GB", + "digest": "a8afc91dd7c1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:34b-python-q5_1", + "name": "codellama:34b-python-q5_1", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "25GB", + "digest": "2d27ad19cb5e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:34b-python-q5_K_M", + "name": "codellama:34b-python-q5_K_M", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "24GB", + "digest": "c6a7e8f2a374", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:34b-python-q5_K_S", + "name": "codellama:34b-python-q5_K_S", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "23GB", + "digest": "893daae3384e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:34b-python-q6_K", + "name": "codellama:34b-python-q6_K", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "28GB", + "digest": "4c08957e57e2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:34b-python-q8_0", + "name": "codellama:34b-python-q8_0", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "36GB", + "digest": "53a286016fd9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:70b-code", + "name": "codellama:70b-code", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "39GB", + "digest": "f51f75d243f2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:70b-code-fp16", + "name": "codellama:70b-code-fp16", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "138GB", + "digest": "068561d5fd67", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:70b-code-q2_K", + "name": "codellama:70b-code-q2_K", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "25GB", + "digest": "a971fcfd33e2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:70b-code-q3_K_L", + "name": "codellama:70b-code-q3_K_L", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "36GB", + "digest": "4bfb484bdd00", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:70b-code-q3_K_M", + "name": "codellama:70b-code-q3_K_M", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "33GB", + "digest": "d29df36f0809", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:70b-code-q3_K_S", + "name": "codellama:70b-code-q3_K_S", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "30GB", + "digest": "6f9fcc129873", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:70b-code-q4_0", + "name": "codellama:70b-code-q4_0", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "39GB", + "digest": "f51f75d243f2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:70b-code-q4_1", + "name": "codellama:70b-code-q4_1", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "43GB", + "digest": "f4f87b75ed5f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:70b-code-q4_K_M", + "name": "codellama:70b-code-q4_K_M", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "41GB", + "digest": "af49f7163a95", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:70b-code-q4_K_S", + "name": "codellama:70b-code-q4_K_S", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "39GB", + "digest": "6eb3eed1c7d7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:70b-code-q5_0", + "name": "codellama:70b-code-q5_0", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "47GB", + "digest": "6c13a8df97a6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:70b-code-q5_1", + "name": "codellama:70b-code-q5_1", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "52GB", + "digest": "d81dfb4ec245", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:70b-code-q5_K_M", + "name": "codellama:70b-code-q5_K_M", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "49GB", + "digest": "a6de2758bbb4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:70b-code-q5_K_S", + "name": "codellama:70b-code-q5_K_S", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "47GB", + "digest": "f7a6b036969c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:70b-code-q6_K", + "name": "codellama:70b-code-q6_K", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "57GB", + "digest": "8fe5090ef2aa", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:70b-code-q8_0", + "name": "codellama:70b-code-q8_0", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "73GB", + "digest": "11ccdd14d3a7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:70b-instruct", + "name": "codellama:70b-instruct", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "39GB", + "digest": "e59b580dfce7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:70b-instruct-fp16", + "name": "codellama:70b-instruct-fp16", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "138GB", + "digest": "bbea3b24dc4b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:70b-instruct-q2_K", + "name": "codellama:70b-instruct-q2_K", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "25GB", + "digest": "cfb9810598f2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:70b-instruct-q3_K_L", + "name": "codellama:70b-instruct-q3_K_L", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "36GB", + "digest": "9b7b348bd092", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:70b-instruct-q3_K_M", + "name": "codellama:70b-instruct-q3_K_M", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "33GB", + "digest": "97d27e87a494", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:70b-instruct-q3_K_S", + "name": "codellama:70b-instruct-q3_K_S", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "30GB", + "digest": "9eaafc67a1e9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:70b-instruct-q4_0", + "name": "codellama:70b-instruct-q4_0", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "39GB", + "digest": "e59b580dfce7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:70b-instruct-q4_1", + "name": "codellama:70b-instruct-q4_1", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "43GB", + "digest": "3a050fe20496", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:70b-instruct-q4_K_M", + "name": "codellama:70b-instruct-q4_K_M", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "41GB", + "digest": "fd3eb0359236", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:70b-instruct-q4_K_S", + "name": "codellama:70b-instruct-q4_K_S", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "39GB", + "digest": "5e6f76df85f1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:70b-instruct-q5_0", + "name": "codellama:70b-instruct-q5_0", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "47GB", + "digest": "b22318ff25f3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:70b-instruct-q5_1", + "name": "codellama:70b-instruct-q5_1", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "52GB", + "digest": "5606d0558a97", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:70b-instruct-q5_K_M", + "name": "codellama:70b-instruct-q5_K_M", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "49GB", + "digest": "796aa29c1e74", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:70b-instruct-q5_K_S", + "name": "codellama:70b-instruct-q5_K_S", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "47GB", + "digest": "486ce7f5c313", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:70b-instruct-q6_K", + "name": "codellama:70b-instruct-q6_K", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "57GB", + "digest": "2b057a1a5fcb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:70b-instruct-q8_0", + "name": "codellama:70b-instruct-q8_0", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "73GB", + "digest": "df2a96247c0c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:70b-python", + "name": "codellama:70b-python", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "39GB", + "digest": "33bc097b32fe", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:70b-python-fp16", + "name": "codellama:70b-python-fp16", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "138GB", + "digest": "32aef34ce6d1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:70b-python-q2_K", + "name": "codellama:70b-python-q2_K", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "25GB", + "digest": "8925059dfc69", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:70b-python-q3_K_L", + "name": "codellama:70b-python-q3_K_L", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "36GB", + "digest": "91ac3677083b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:70b-python-q3_K_M", + "name": "codellama:70b-python-q3_K_M", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "33GB", + "digest": "130b1c22d82c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:70b-python-q3_K_S", + "name": "codellama:70b-python-q3_K_S", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "30GB", + "digest": "5e2c02668fd0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:70b-python-q4_0", + "name": "codellama:70b-python-q4_0", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "39GB", + "digest": "33bc097b32fe", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:70b-python-q4_1", + "name": "codellama:70b-python-q4_1", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "43GB", + "digest": "8a1b64a13e07", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:70b-python-q4_K_M", + "name": "codellama:70b-python-q4_K_M", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "41GB", + "digest": "157bddfb9b58", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:70b-python-q4_K_S", + "name": "codellama:70b-python-q4_K_S", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "39GB", + "digest": "58f06c520da4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:70b-python-q5_0", + "name": "codellama:70b-python-q5_0", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "47GB", + "digest": "e91924e35649", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:70b-python-q5_1", + "name": "codellama:70b-python-q5_1", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "52GB", + "digest": "726a52d85424", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:70b-python-q5_K_M", + "name": "codellama:70b-python-q5_K_M", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "49GB", + "digest": "46e0203b5440", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:70b-python-q5_K_S", + "name": "codellama:70b-python-q5_K_S", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "47GB", + "digest": "b1f1fd5a9237", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:70b-python-q6_K", + "name": "codellama:70b-python-q6_K", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "57GB", + "digest": "0d2f71fce49d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:70b-python-q8_0", + "name": "codellama:70b-python-q8_0", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "73GB", + "digest": "80366d5e2306", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:7b-code", + "name": "codellama:7b-code", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "3.8GB", + "digest": "8df0a30bb1e6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:7b-code-fp16", + "name": "codellama:7b-code-fp16", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "13GB", + "digest": "49e540e808cb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:7b-code-q2_K", + "name": "codellama:7b-code-q2_K", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "2.8GB", + "digest": "91ff9867e158", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:7b-code-q3_K_L", + "name": "codellama:7b-code-q3_K_L", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "3.6GB", + "digest": "28f2ce50aa95", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:7b-code-q3_K_M", + "name": "codellama:7b-code-q3_K_M", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "3.3GB", + "digest": "feb1d9b1793b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:7b-code-q3_K_S", + "name": "codellama:7b-code-q3_K_S", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "2.9GB", + "digest": "a53cf3fbfba9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:7b-code-q4_0", + "name": "codellama:7b-code-q4_0", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "3.8GB", + "digest": "8df0a30bb1e6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:7b-code-q4_1", + "name": "codellama:7b-code-q4_1", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "4.2GB", + "digest": "537584c9d430", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:7b-code-q4_K_M", + "name": "codellama:7b-code-q4_K_M", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "4.1GB", + "digest": "e0f44d809bb4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:7b-code-q4_K_S", + "name": "codellama:7b-code-q4_K_S", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "3.9GB", + "digest": "87013da043fc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:7b-code-q5_0", + "name": "codellama:7b-code-q5_0", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "4.7GB", + "digest": "d7bab15b429c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:7b-code-q5_1", + "name": "codellama:7b-code-q5_1", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "5.1GB", + "digest": "a38c1ce2f694", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:7b-code-q5_K_M", + "name": "codellama:7b-code-q5_K_M", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "4.8GB", + "digest": "19a534f2e7ca", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:7b-code-q5_K_S", + "name": "codellama:7b-code-q5_K_S", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "4.7GB", + "digest": "1854c84f9cd6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:7b-code-q6_K", + "name": "codellama:7b-code-q6_K", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "5.5GB", + "digest": "e3d8d04437e4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:7b-code-q8_0", + "name": "codellama:7b-code-q8_0", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "7.2GB", + "digest": "b5c402bcc7d9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:7b-instruct", + "name": "codellama:7b-instruct", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "3.8GB", + "digest": "8fdf8f752f6e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:7b-instruct-fp16", + "name": "codellama:7b-instruct-fp16", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "13GB", + "digest": "6d0772f2d7d0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:7b-instruct-q2_K", + "name": "codellama:7b-instruct-q2_K", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "2.8GB", + "digest": "28ee56afb6a5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:7b-instruct-q3_K_L", + "name": "codellama:7b-instruct-q3_K_L", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "3.6GB", + "digest": "74aea2ff4240", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:7b-instruct-q3_K_M", + "name": "codellama:7b-instruct-q3_K_M", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "3.3GB", + "digest": "ddae88ac7060", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:7b-instruct-q3_K_S", + "name": "codellama:7b-instruct-q3_K_S", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "2.9GB", + "digest": "69d540497dc3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:7b-instruct-q4_0", + "name": "codellama:7b-instruct-q4_0", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "3.8GB", + "digest": "8fdf8f752f6e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:7b-instruct-q4_1", + "name": "codellama:7b-instruct-q4_1", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "4.2GB", + "digest": "82177b511b42", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:7b-instruct-q4_K_M", + "name": "codellama:7b-instruct-q4_K_M", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "4.1GB", + "digest": "dfd9bbf35961", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:7b-instruct-q4_K_S", + "name": "codellama:7b-instruct-q4_K_S", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "3.9GB", + "digest": "7e7d9567e2be", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:7b-instruct-q5_0", + "name": "codellama:7b-instruct-q5_0", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "4.7GB", + "digest": "1fe20720c90b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:7b-instruct-q5_1", + "name": "codellama:7b-instruct-q5_1", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "5.1GB", + "digest": "96ebcc6283ac", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:7b-instruct-q5_K_M", + "name": "codellama:7b-instruct-q5_K_M", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "4.8GB", + "digest": "4f6dbd70addc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:7b-instruct-q5_K_S", + "name": "codellama:7b-instruct-q5_K_S", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "4.7GB", + "digest": "0a9dfb4ddb84", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:7b-instruct-q6_K", + "name": "codellama:7b-instruct-q6_K", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "5.5GB", + "digest": "3a5b549ceb36", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:7b-instruct-q8_0", + "name": "codellama:7b-instruct-q8_0", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "7.2GB", + "digest": "e371f415ddec", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:7b-python", + "name": "codellama:7b-python", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "3.8GB", + "digest": "120ca3419eae", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:7b-python-fp16", + "name": "codellama:7b-python-fp16", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "13GB", + "digest": "c586d7593fc9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:7b-python-q2_K", + "name": "codellama:7b-python-q2_K", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "2.8GB", + "digest": "90537ffccfc3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:7b-python-q3_K_L", + "name": "codellama:7b-python-q3_K_L", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "3.6GB", + "digest": "89bd2bcbe688", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:7b-python-q3_K_M", + "name": "codellama:7b-python-q3_K_M", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "3.3GB", + "digest": "f78512a1494b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:7b-python-q3_K_S", + "name": "codellama:7b-python-q3_K_S", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "2.9GB", + "digest": "32abf4fb831c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:7b-python-q4_0", + "name": "codellama:7b-python-q4_0", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "3.8GB", + "digest": "120ca3419eae", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:7b-python-q4_1", + "name": "codellama:7b-python-q4_1", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "4.2GB", + "digest": "229914b4c95a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:7b-python-q4_K_M", + "name": "codellama:7b-python-q4_K_M", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "4.1GB", + "digest": "82469243d8df", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:7b-python-q4_K_S", + "name": "codellama:7b-python-q4_K_S", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "3.9GB", + "digest": "3e2981f24208", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:7b-python-q5_0", + "name": "codellama:7b-python-q5_0", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "4.7GB", + "digest": "ca3bea54d322", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:7b-python-q5_1", + "name": "codellama:7b-python-q5_1", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "5.1GB", + "digest": "973c0b9ff6f2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:7b-python-q5_K_M", + "name": "codellama:7b-python-q5_K_M", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "4.8GB", + "digest": "cf2d34d45cf5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:7b-python-q5_K_S", + "name": "codellama:7b-python-q5_K_S", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "4.7GB", + "digest": "33d5fb72706b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:7b-python-q6_K", + "name": "codellama:7b-python-q6_K", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "5.5GB", + "digest": "d03cee358f2e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:7b-python-q8_0", + "name": "codellama:7b-python-q8_0", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "7.2GB", + "digest": "9989aa9990d5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:code", + "name": "codellama:code", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "3.8GB", + "digest": "8df0a30bb1e6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:instruct", + "name": "codellama:instruct", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "3.8GB", + "digest": "8fdf8f752f6e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codellama:python", + "name": "codellama:python", + "description": "A large language model that can use text prompts to generate and discuss code.", + "size": "3.8GB", + "digest": "120ca3419eae", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mxbai-embed-large", + "name": "mxbai-embed-large", + "description": "State-of-the-art large embedding model from mixedbread.ai", + "size": "670MB", + "digest": "468836162de7", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "mxbai-embed-large:335m", + "name": "mxbai-embed-large:335m", + "description": "State-of-the-art large embedding model from mixedbread.ai", + "size": "670MB", + "digest": "468836162de7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mxbai-embed-large:335m-v1-fp16", + "name": "mxbai-embed-large:335m-v1-fp16", + "description": "State-of-the-art large embedding model from mixedbread.ai", + "size": "670MB", + "digest": "468836162de7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mxbai-embed-large:v1", + "name": "mxbai-embed-large:v1", + "description": "State-of-the-art large embedding model from mixedbread.ai", + "size": "670MB", + "digest": "468836162de7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tinyllama", + "name": "tinyllama", + "description": "The TinyLlama project is an open endeavor to train a compact 1.1B Llama model on 3 trillion tokens.", + "size": "638MB", + "digest": "2644915ede35", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "tinyllama:1.1b", + "name": "tinyllama:1.1b", + "description": "The TinyLlama project is an open endeavor to train a compact 1.1B Llama model on 3 trillion tokens.", + "size": "638MB", + "digest": "2644915ede35", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tinyllama:1.1b-chat", + "name": "tinyllama:1.1b-chat", + "description": "The TinyLlama project is an open endeavor to train a compact 1.1B Llama model on 3 trillion tokens.", + "size": "638MB", + "digest": "2644915ede35", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tinyllama:1.1b-chat-v0.6-fp16", + "name": "tinyllama:1.1b-chat-v0.6-fp16", + "description": "The TinyLlama project is an open endeavor to train a compact 1.1B Llama model on 3 trillion tokens.", + "size": "2.2GB", + "digest": "a40b38e0c72d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tinyllama:1.1b-chat-v0.6-q2_K", + "name": "tinyllama:1.1b-chat-v0.6-q2_K", + "description": "The TinyLlama project is an open endeavor to train a compact 1.1B Llama model on 3 trillion tokens.", + "size": "483MB", + "digest": "a2aa7f9e13b4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tinyllama:1.1b-chat-v0.6-q3_K_L", + "name": "tinyllama:1.1b-chat-v0.6-q3_K_L", + "description": "The TinyLlama project is an open endeavor to train a compact 1.1B Llama model on 3 trillion tokens.", + "size": "593MB", + "digest": "3dca23077eec", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tinyllama:1.1b-chat-v0.6-q3_K_M", + "name": "tinyllama:1.1b-chat-v0.6-q3_K_M", + "description": "The TinyLlama project is an open endeavor to train a compact 1.1B Llama model on 3 trillion tokens.", + "size": "551MB", + "digest": "d36765ee7b2a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tinyllama:1.1b-chat-v0.6-q3_K_S", + "name": "tinyllama:1.1b-chat-v0.6-q3_K_S", + "description": "The TinyLlama project is an open endeavor to train a compact 1.1B Llama model on 3 trillion tokens.", + "size": "500MB", + "digest": "f09e5b1786e1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tinyllama:1.1b-chat-v0.6-q4_0", + "name": "tinyllama:1.1b-chat-v0.6-q4_0", + "description": "The TinyLlama project is an open endeavor to train a compact 1.1B Llama model on 3 trillion tokens.", + "size": "638MB", + "digest": "cb4df2e70049", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tinyllama:1.1b-chat-v0.6-q4_1", + "name": "tinyllama:1.1b-chat-v0.6-q4_1", + "description": "The TinyLlama project is an open endeavor to train a compact 1.1B Llama model on 3 trillion tokens.", + "size": "702MB", + "digest": "ad5344d40d22", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tinyllama:1.1b-chat-v0.6-q4_K_M", + "name": "tinyllama:1.1b-chat-v0.6-q4_K_M", + "description": "The TinyLlama project is an open endeavor to train a compact 1.1B Llama model on 3 trillion tokens.", + "size": "669MB", + "digest": "078cb72856ab", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tinyllama:1.1b-chat-v0.6-q4_K_S", + "name": "tinyllama:1.1b-chat-v0.6-q4_K_S", + "description": "The TinyLlama project is an open endeavor to train a compact 1.1B Llama model on 3 trillion tokens.", + "size": "644MB", + "digest": "e68e39e22c5c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tinyllama:1.1b-chat-v0.6-q5_0", + "name": "tinyllama:1.1b-chat-v0.6-q5_0", + "description": "The TinyLlama project is an open endeavor to train a compact 1.1B Llama model on 3 trillion tokens.", + "size": "767MB", + "digest": "8df5040f8c77", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tinyllama:1.1b-chat-v0.6-q5_1", + "name": "tinyllama:1.1b-chat-v0.6-q5_1", + "description": "The TinyLlama project is an open endeavor to train a compact 1.1B Llama model on 3 trillion tokens.", + "size": "832MB", + "digest": "6b68a0890709", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tinyllama:1.1b-chat-v0.6-q5_K_M", + "name": "tinyllama:1.1b-chat-v0.6-q5_K_M", + "description": "The TinyLlama project is an open endeavor to train a compact 1.1B Llama model on 3 trillion tokens.", + "size": "783MB", + "digest": "630e23132e37", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tinyllama:1.1b-chat-v0.6-q5_K_S", + "name": "tinyllama:1.1b-chat-v0.6-q5_K_S", + "description": "The TinyLlama project is an open endeavor to train a compact 1.1B Llama model on 3 trillion tokens.", + "size": "767MB", + "digest": "86ebaf63decb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tinyllama:1.1b-chat-v0.6-q6_K", + "name": "tinyllama:1.1b-chat-v0.6-q6_K", + "description": "The TinyLlama project is an open endeavor to train a compact 1.1B Llama model on 3 trillion tokens.", + "size": "904MB", + "digest": "4ea10b64d2c3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tinyllama:1.1b-chat-v0.6-q8_0", + "name": "tinyllama:1.1b-chat-v0.6-q8_0", + "description": "The TinyLlama project is an open endeavor to train a compact 1.1B Llama model on 3 trillion tokens.", + "size": "1.2GB", + "digest": "b939c0e77079", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tinyllama:1.1b-chat-v1-fp16", + "name": "tinyllama:1.1b-chat-v1-fp16", + "description": "The TinyLlama project is an open endeavor to train a compact 1.1B Llama model on 3 trillion tokens.", + "size": "2.2GB", + "digest": "71c2f9b69b52", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tinyllama:1.1b-chat-v1-q2_K", + "name": "tinyllama:1.1b-chat-v1-q2_K", + "description": "The TinyLlama project is an open endeavor to train a compact 1.1B Llama model on 3 trillion tokens.", + "size": "483MB", + "digest": "721a0fc5ae2d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tinyllama:1.1b-chat-v1-q3_K_L", + "name": "tinyllama:1.1b-chat-v1-q3_K_L", + "description": "The TinyLlama project is an open endeavor to train a compact 1.1B Llama model on 3 trillion tokens.", + "size": "593MB", + "digest": "317426342de6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tinyllama:1.1b-chat-v1-q3_K_M", + "name": "tinyllama:1.1b-chat-v1-q3_K_M", + "description": "The TinyLlama project is an open endeavor to train a compact 1.1B Llama model on 3 trillion tokens.", + "size": "551MB", + "digest": "1bbb25f9a630", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tinyllama:1.1b-chat-v1-q3_K_S", + "name": "tinyllama:1.1b-chat-v1-q3_K_S", + "description": "The TinyLlama project is an open endeavor to train a compact 1.1B Llama model on 3 trillion tokens.", + "size": "500MB", + "digest": "5042a43d653b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tinyllama:1.1b-chat-v1-q4_0", + "name": "tinyllama:1.1b-chat-v1-q4_0", + "description": "The TinyLlama project is an open endeavor to train a compact 1.1B Llama model on 3 trillion tokens.", + "size": "638MB", + "digest": "2644915ede35", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tinyllama:1.1b-chat-v1-q4_1", + "name": "tinyllama:1.1b-chat-v1-q4_1", + "description": "The TinyLlama project is an open endeavor to train a compact 1.1B Llama model on 3 trillion tokens.", + "size": "702MB", + "digest": "2ce57eb5c622", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tinyllama:1.1b-chat-v1-q4_K_M", + "name": "tinyllama:1.1b-chat-v1-q4_K_M", + "description": "The TinyLlama project is an open endeavor to train a compact 1.1B Llama model on 3 trillion tokens.", + "size": "669MB", + "digest": "86b3ca80c6c5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tinyllama:1.1b-chat-v1-q4_K_S", + "name": "tinyllama:1.1b-chat-v1-q4_K_S", + "description": "The TinyLlama project is an open endeavor to train a compact 1.1B Llama model on 3 trillion tokens.", + "size": "644MB", + "digest": "ac37fe61e9f7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tinyllama:1.1b-chat-v1-q5_0", + "name": "tinyllama:1.1b-chat-v1-q5_0", + "description": "The TinyLlama project is an open endeavor to train a compact 1.1B Llama model on 3 trillion tokens.", + "size": "767MB", + "digest": "70c60394cb6e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tinyllama:1.1b-chat-v1-q5_1", + "name": "tinyllama:1.1b-chat-v1-q5_1", + "description": "The TinyLlama project is an open endeavor to train a compact 1.1B Llama model on 3 trillion tokens.", + "size": "832MB", + "digest": "5efe2a172290", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tinyllama:1.1b-chat-v1-q5_K_M", + "name": "tinyllama:1.1b-chat-v1-q5_K_M", + "description": "The TinyLlama project is an open endeavor to train a compact 1.1B Llama model on 3 trillion tokens.", + "size": "783MB", + "digest": "920ba90fb00e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tinyllama:1.1b-chat-v1-q5_K_S", + "name": "tinyllama:1.1b-chat-v1-q5_K_S", + "description": "The TinyLlama project is an open endeavor to train a compact 1.1B Llama model on 3 trillion tokens.", + "size": "767MB", + "digest": "913a3797a111", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tinyllama:1.1b-chat-v1-q6_K", + "name": "tinyllama:1.1b-chat-v1-q6_K", + "description": "The TinyLlama project is an open endeavor to train a compact 1.1B Llama model on 3 trillion tokens.", + "size": "904MB", + "digest": "d53bb0758e48", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tinyllama:1.1b-chat-v1-q8_0", + "name": "tinyllama:1.1b-chat-v1-q8_0", + "description": "The TinyLlama project is an open endeavor to train a compact 1.1B Llama model on 3 trillion tokens.", + "size": "1.2GB", + "digest": "3746473cdb1e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tinyllama:chat", + "name": "tinyllama:chat", + "description": "The TinyLlama project is an open endeavor to train a compact 1.1B Llama model on 3 trillion tokens.", + "size": "638MB", + "digest": "2644915ede35", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tinyllama:v0.6", + "name": "tinyllama:v0.6", + "description": "The TinyLlama project is an open endeavor to train a compact 1.1B Llama model on 3 trillion tokens.", + "size": "638MB", + "digest": "cb4df2e70049", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tinyllama:v1", + "name": "tinyllama:v1", + "description": "The TinyLlama project is an open endeavor to train a compact 1.1B Llama model on 3 trillion tokens.", + "size": "638MB", + "digest": "2644915ede35", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-nemo", + "name": "mistral-nemo", + "description": "A state-of-the-art 12B model with 128k context length, built by Mistral AI in collaboration with NVIDIA.", + "size": "7.1GB", + "digest": "994f3b8b7801", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "mistral-nemo:12b", + "name": "mistral-nemo:12b", + "description": "A state-of-the-art 12B model with 128k context length, built by Mistral AI in collaboration with NVIDIA.", + "size": "7.1GB", + "digest": "994f3b8b7801", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-nemo:12b-instruct-2407-fp16", + "name": "mistral-nemo:12b-instruct-2407-fp16", + "description": "A state-of-the-art 12B model with 128k context length, built by Mistral AI in collaboration with NVIDIA.", + "size": "25GB", + "digest": "7bb1e26a5ed5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-nemo:12b-instruct-2407-q2_K", + "name": "mistral-nemo:12b-instruct-2407-q2_K", + "description": "A state-of-the-art 12B model with 128k context length, built by Mistral AI in collaboration with NVIDIA.", + "size": "4.8GB", + "digest": "afa0d9b8759f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-nemo:12b-instruct-2407-q3_K_L", + "name": "mistral-nemo:12b-instruct-2407-q3_K_L", + "description": "A state-of-the-art 12B model with 128k context length, built by Mistral AI in collaboration with NVIDIA.", + "size": "6.6GB", + "digest": "affbdc0a347a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-nemo:12b-instruct-2407-q3_K_M", + "name": "mistral-nemo:12b-instruct-2407-q3_K_M", + "description": "A state-of-the-art 12B model with 128k context length, built by Mistral AI in collaboration with NVIDIA.", + "size": "6.1GB", + "digest": "09c8706f02f4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-nemo:12b-instruct-2407-q3_K_S", + "name": "mistral-nemo:12b-instruct-2407-q3_K_S", + "description": "A state-of-the-art 12B model with 128k context length, built by Mistral AI in collaboration with NVIDIA.", + "size": "5.5GB", + "digest": "864043847fc7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-nemo:12b-instruct-2407-q4_0", + "name": "mistral-nemo:12b-instruct-2407-q4_0", + "description": "A state-of-the-art 12B model with 128k context length, built by Mistral AI in collaboration with NVIDIA.", + "size": "7.1GB", + "digest": "994f3b8b7801", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-nemo:12b-instruct-2407-q4_1", + "name": "mistral-nemo:12b-instruct-2407-q4_1", + "description": "A state-of-the-art 12B model with 128k context length, built by Mistral AI in collaboration with NVIDIA.", + "size": "7.8GB", + "digest": "2b87a40ca999", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-nemo:12b-instruct-2407-q4_K_M", + "name": "mistral-nemo:12b-instruct-2407-q4_K_M", + "description": "A state-of-the-art 12B model with 128k context length, built by Mistral AI in collaboration with NVIDIA.", + "size": "7.5GB", + "digest": "1da0ebbdb7ca", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-nemo:12b-instruct-2407-q4_K_S", + "name": "mistral-nemo:12b-instruct-2407-q4_K_S", + "description": "A state-of-the-art 12B model with 128k context length, built by Mistral AI in collaboration with NVIDIA.", + "size": "7.1GB", + "digest": "2c2b8e074f09", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-nemo:12b-instruct-2407-q5_0", + "name": "mistral-nemo:12b-instruct-2407-q5_0", + "description": "A state-of-the-art 12B model with 128k context length, built by Mistral AI in collaboration with NVIDIA.", + "size": "8.5GB", + "digest": "0fc0a9ed80c9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-nemo:12b-instruct-2407-q5_1", + "name": "mistral-nemo:12b-instruct-2407-q5_1", + "description": "A state-of-the-art 12B model with 128k context length, built by Mistral AI in collaboration with NVIDIA.", + "size": "9.2GB", + "digest": "f811366ff2b3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-nemo:12b-instruct-2407-q5_K_M", + "name": "mistral-nemo:12b-instruct-2407-q5_K_M", + "description": "A state-of-the-art 12B model with 128k context length, built by Mistral AI in collaboration with NVIDIA.", + "size": "8.7GB", + "digest": "d0e3d91c3c3e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-nemo:12b-instruct-2407-q5_K_S", + "name": "mistral-nemo:12b-instruct-2407-q5_K_S", + "description": "A state-of-the-art 12B model with 128k context length, built by Mistral AI in collaboration with NVIDIA.", + "size": "8.5GB", + "digest": "5fc038ec8027", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-nemo:12b-instruct-2407-q6_K", + "name": "mistral-nemo:12b-instruct-2407-q6_K", + "description": "A state-of-the-art 12B model with 128k context length, built by Mistral AI in collaboration with NVIDIA.", + "size": "10GB", + "digest": "7a5dbe4123f4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-nemo:12b-instruct-2407-q8_0", + "name": "mistral-nemo:12b-instruct-2407-q8_0", + "description": "A state-of-the-art 12B model with 128k context length, built by Mistral AI in collaboration with NVIDIA.", + "size": "13GB", + "digest": "b91eec34730f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2-vision", + "name": "llama3.2-vision", + "description": "Llama 3.2 Vision is a collection of instruction-tuned image reasoning generative models in 11B and 90B sizes.", + "size": "7.9GB", + "digest": "085a1fdae525", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "llama3.2-vision:11b", + "name": "llama3.2-vision:11b", + "description": "Llama 3.2 Vision is a collection of instruction-tuned image reasoning generative models in 11B and 90B sizes.", + "size": "7.9GB", + "digest": "085a1fdae525", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2-vision:90b", + "name": "llama3.2-vision:90b", + "description": "Llama 3.2 Vision is a collection of instruction-tuned image reasoning generative models in 11B and 90B sizes.", + "size": "55GB", + "digest": "d2a5e64c56a9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2-vision:11b-instruct-fp16", + "name": "llama3.2-vision:11b-instruct-fp16", + "description": "Llama 3.2 Vision is a collection of instruction-tuned image reasoning generative models in 11B and 90B sizes.", + "size": "21GB", + "digest": "61be32b20340", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2-vision:11b-instruct-q4_K_M", + "name": "llama3.2-vision:11b-instruct-q4_K_M", + "description": "Llama 3.2 Vision is a collection of instruction-tuned image reasoning generative models in 11B and 90B sizes.", + "size": "7.9GB", + "digest": "085a1fdae525", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2-vision:11b-instruct-q8_0", + "name": "llama3.2-vision:11b-instruct-q8_0", + "description": "Llama 3.2 Vision is a collection of instruction-tuned image reasoning generative models in 11B and 90B sizes.", + "size": "12GB", + "digest": "7a7cc5461ef1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2-vision:90b-instruct-fp16", + "name": "llama3.2-vision:90b-instruct-fp16", + "description": "Llama 3.2 Vision is a collection of instruction-tuned image reasoning generative models in 11B and 90B sizes.", + "size": "177GB", + "digest": "5ceef0c1d3d2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2-vision:90b-instruct-q4_K_M", + "name": "llama3.2-vision:90b-instruct-q4_K_M", + "description": "Llama 3.2 Vision is a collection of instruction-tuned image reasoning generative models in 11B and 90B sizes.", + "size": "55GB", + "digest": "d2a5e64c56a9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3.2-vision:90b-instruct-q8_0", + "name": "llama3.2-vision:90b-instruct-q8_0", + "description": "Llama 3.2 Vision is a collection of instruction-tuned image reasoning generative models in 11B and 90B sizes.", + "size": "95GB", + "digest": "e65e1af5e383", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2", + "name": "starcoder2", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "1.7GB", + "digest": "9f4ae0aff61e", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "starcoder2:3b", + "name": "starcoder2:3b", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "1.7GB", + "digest": "9f4ae0aff61e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:7b", + "name": "starcoder2:7b", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "4.0GB", + "digest": "1550ab21b10d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:15b", + "name": "starcoder2:15b", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "9.1GB", + "digest": "21ae152d49e0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:15b-fp16", + "name": "starcoder2:15b-fp16", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "32GB", + "digest": "d0355c6e6d3a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:15b-instruct", + "name": "starcoder2:15b-instruct", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "9.1GB", + "digest": "432973cfbc4c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:15b-instruct-q4_0", + "name": "starcoder2:15b-instruct-q4_0", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "9.1GB", + "digest": "a2349551dfd4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:15b-instruct-v0.1-fp16", + "name": "starcoder2:15b-instruct-v0.1-fp16", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "32GB", + "digest": "8a5b32b4696c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:15b-instruct-v0.1-q2_K", + "name": "starcoder2:15b-instruct-v0.1-q2_K", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "6.2GB", + "digest": "1f0967a81021", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:15b-instruct-v0.1-q3_K_L", + "name": "starcoder2:15b-instruct-v0.1-q3_K_L", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "9.0GB", + "digest": "0023fd977833", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:15b-instruct-v0.1-q3_K_M", + "name": "starcoder2:15b-instruct-v0.1-q3_K_M", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "8.0GB", + "digest": "7be2b1ded63d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:15b-instruct-v0.1-q3_K_S", + "name": "starcoder2:15b-instruct-v0.1-q3_K_S", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "7.0GB", + "digest": "494c11407ef5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:15b-instruct-v0.1-q4_0", + "name": "starcoder2:15b-instruct-v0.1-q4_0", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "9.1GB", + "digest": "432973cfbc4c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:15b-instruct-v0.1-q4_1", + "name": "starcoder2:15b-instruct-v0.1-q4_1", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "10GB", + "digest": "d7b4b40c5e4c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:15b-instruct-v0.1-q4_K_M", + "name": "starcoder2:15b-instruct-v0.1-q4_K_M", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "9.9GB", + "digest": "19fb579d5344", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:15b-instruct-v0.1-q4_K_S", + "name": "starcoder2:15b-instruct-v0.1-q4_K_S", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "9.2GB", + "digest": "8b55bc62323d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:15b-instruct-v0.1-q5_0", + "name": "starcoder2:15b-instruct-v0.1-q5_0", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "11GB", + "digest": "97687b40425f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:15b-instruct-v0.1-q5_1", + "name": "starcoder2:15b-instruct-v0.1-q5_1", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "12GB", + "digest": "b3e4a53d2072", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:15b-instruct-v0.1-q5_K_M", + "name": "starcoder2:15b-instruct-v0.1-q5_K_M", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "11GB", + "digest": "24ff1c704455", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:15b-instruct-v0.1-q5_K_S", + "name": "starcoder2:15b-instruct-v0.1-q5_K_S", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "11GB", + "digest": "50bffebc60cd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:15b-instruct-v0.1-q6_K", + "name": "starcoder2:15b-instruct-v0.1-q6_K", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "13GB", + "digest": "a5f13db6c5e5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:15b-instruct-v0.1-q8_0", + "name": "starcoder2:15b-instruct-v0.1-q8_0", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "17GB", + "digest": "a11b58c111d9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:15b-q2_K", + "name": "starcoder2:15b-q2_K", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "6.2GB", + "digest": "09c69ac6d381", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:15b-q3_K_L", + "name": "starcoder2:15b-q3_K_L", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "9.0GB", + "digest": "7095ac645958", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:15b-q3_K_M", + "name": "starcoder2:15b-q3_K_M", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "8.1GB", + "digest": "6bb24c6a0909", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:15b-q3_K_S", + "name": "starcoder2:15b-q3_K_S", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "7.0GB", + "digest": "2b8e40ca4e3c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:15b-q4_0", + "name": "starcoder2:15b-q4_0", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "9.1GB", + "digest": "21ae152d49e0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:15b-q4_1", + "name": "starcoder2:15b-q4_1", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "10GB", + "digest": "e962dc6dab16", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:15b-q4_K_M", + "name": "starcoder2:15b-q4_K_M", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "9.9GB", + "digest": "c2a2fb5a804b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:15b-q4_K_S", + "name": "starcoder2:15b-q4_K_S", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "9.3GB", + "digest": "16306a9d809f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:15b-q5_0", + "name": "starcoder2:15b-q5_0", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "11GB", + "digest": "0b62c0bbb602", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:15b-q5_1", + "name": "starcoder2:15b-q5_1", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "12GB", + "digest": "3ea2ac47dcf6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:15b-q5_K_M", + "name": "starcoder2:15b-q5_K_M", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "11GB", + "digest": "aedac0a1adc9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:15b-q5_K_S", + "name": "starcoder2:15b-q5_K_S", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "11GB", + "digest": "656825622bc3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:15b-q6_K", + "name": "starcoder2:15b-q6_K", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "13GB", + "digest": "cad9bff49536", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:15b-q8_0", + "name": "starcoder2:15b-q8_0", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "17GB", + "digest": "95f55571067f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:3b-fp16", + "name": "starcoder2:3b-fp16", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "6.1GB", + "digest": "cb88461498e2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:3b-q2_K", + "name": "starcoder2:3b-q2_K", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "1.1GB", + "digest": "1900fee8d3bb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:3b-q3_K_L", + "name": "starcoder2:3b-q3_K_L", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "1.7GB", + "digest": "babdc98cb857", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:3b-q3_K_M", + "name": "starcoder2:3b-q3_K_M", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "1.5GB", + "digest": "379661ce2af0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:3b-q3_K_S", + "name": "starcoder2:3b-q3_K_S", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "1.3GB", + "digest": "8a53797dc302", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:3b-q4_0", + "name": "starcoder2:3b-q4_0", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "1.7GB", + "digest": "9f4ae0aff61e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:3b-q4_1", + "name": "starcoder2:3b-q4_1", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "1.9GB", + "digest": "85914e75a280", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:3b-q4_K_M", + "name": "starcoder2:3b-q4_K_M", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "1.8GB", + "digest": "80f4c07afd24", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:3b-q4_K_S", + "name": "starcoder2:3b-q4_K_S", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "1.7GB", + "digest": "428a0952a464", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:3b-q5_0", + "name": "starcoder2:3b-q5_0", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "2.1GB", + "digest": "c0ef01710c53", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:3b-q5_1", + "name": "starcoder2:3b-q5_1", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "2.3GB", + "digest": "ca2b86530fda", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:3b-q5_K_M", + "name": "starcoder2:3b-q5_K_M", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "2.2GB", + "digest": "716699033e66", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:3b-q5_K_S", + "name": "starcoder2:3b-q5_K_S", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "2.1GB", + "digest": "285e6c835a6b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:3b-q6_K", + "name": "starcoder2:3b-q6_K", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "2.5GB", + "digest": "4d0d8586d8a6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:3b-q8_0", + "name": "starcoder2:3b-q8_0", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "3.2GB", + "digest": "003abcecad23", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:7b-fp16", + "name": "starcoder2:7b-fp16", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "14GB", + "digest": "f0643097e171", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:7b-q2_K", + "name": "starcoder2:7b-q2_K", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "2.7GB", + "digest": "bfb544f5b9db", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:7b-q3_K_L", + "name": "starcoder2:7b-q3_K_L", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "4.0GB", + "digest": "e3e28011754e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:7b-q3_K_M", + "name": "starcoder2:7b-q3_K_M", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "3.6GB", + "digest": "663450d06f0d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:7b-q3_K_S", + "name": "starcoder2:7b-q3_K_S", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "3.1GB", + "digest": "8aaa68a8ab5e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:7b-q4_0", + "name": "starcoder2:7b-q4_0", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "4.0GB", + "digest": "1550ab21b10d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:7b-q4_1", + "name": "starcoder2:7b-q4_1", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "4.5GB", + "digest": "1747ad646a6a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:7b-q4_K_M", + "name": "starcoder2:7b-q4_K_M", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "4.4GB", + "digest": "3c8e476efe98", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:7b-q4_K_S", + "name": "starcoder2:7b-q4_K_S", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "4.1GB", + "digest": "0c4f8acf0ae2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:7b-q5_0", + "name": "starcoder2:7b-q5_0", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "4.9GB", + "digest": "3990ce180fdd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:7b-q5_1", + "name": "starcoder2:7b-q5_1", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "5.4GB", + "digest": "f2936f039525", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:7b-q5_K_M", + "name": "starcoder2:7b-q5_K_M", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "5.1GB", + "digest": "de006f564c13", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:7b-q5_K_S", + "name": "starcoder2:7b-q5_K_S", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "4.9GB", + "digest": "c81c75ed4e4e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:7b-q6_K", + "name": "starcoder2:7b-q6_K", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "5.9GB", + "digest": "5d99bdda7ea4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:7b-q8_0", + "name": "starcoder2:7b-q8_0", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "7.6GB", + "digest": "d76878e96d8a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder2:instruct", + "name": "starcoder2:instruct", + "description": "StarCoder2 is the next generation of transparently trained open code LLMs that comes in three sizes: 3B, 7B and 15B parameters.", + "size": "9.1GB", + "digest": "432973cfbc4c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "snowflake-arctic-embed", + "name": "snowflake-arctic-embed", + "description": "A suite of text embedding models by Snowflake, optimized for performance.", + "size": "669MB", + "digest": "21ab8b9b0545", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "snowflake-arctic-embed:22m", + "name": "snowflake-arctic-embed:22m", + "description": "A suite of text embedding models by Snowflake, optimized for performance.", + "size": "46MB", + "digest": "bf75350e1752", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "snowflake-arctic-embed:33m", + "name": "snowflake-arctic-embed:33m", + "description": "A suite of text embedding models by Snowflake, optimized for performance.", + "size": "67MB", + "digest": "e8db018629b4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "snowflake-arctic-embed:110m", + "name": "snowflake-arctic-embed:110m", + "description": "A suite of text embedding models by Snowflake, optimized for performance.", + "size": "219MB", + "digest": "8a0d86a3ca1d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "snowflake-arctic-embed:137m", + "name": "snowflake-arctic-embed:137m", + "description": "A suite of text embedding models by Snowflake, optimized for performance.", + "size": "274MB", + "digest": "12616299a158", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "snowflake-arctic-embed:335m", + "name": "snowflake-arctic-embed:335m", + "description": "A suite of text embedding models by Snowflake, optimized for performance.", + "size": "669MB", + "digest": "21ab8b9b0545", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "snowflake-arctic-embed:110m-m-fp16", + "name": "snowflake-arctic-embed:110m-m-fp16", + "description": "A suite of text embedding models by Snowflake, optimized for performance.", + "size": "219MB", + "digest": "8a0d86a3ca1d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "snowflake-arctic-embed:137m-m-long-fp16", + "name": "snowflake-arctic-embed:137m-m-long-fp16", + "description": "A suite of text embedding models by Snowflake, optimized for performance.", + "size": "274MB", + "digest": "12616299a158", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "snowflake-arctic-embed:22m-xs-fp16", + "name": "snowflake-arctic-embed:22m-xs-fp16", + "description": "A suite of text embedding models by Snowflake, optimized for performance.", + "size": "46MB", + "digest": "bf75350e1752", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "snowflake-arctic-embed:335m-l-fp16", + "name": "snowflake-arctic-embed:335m-l-fp16", + "description": "A suite of text embedding models by Snowflake, optimized for performance.", + "size": "669MB", + "digest": "21ab8b9b0545", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "snowflake-arctic-embed:33m-s-fp16", + "name": "snowflake-arctic-embed:33m-s-fp16", + "description": "A suite of text embedding models by Snowflake, optimized for performance.", + "size": "67MB", + "digest": "e8db018629b4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "snowflake-arctic-embed:l", + "name": "snowflake-arctic-embed:l", + "description": "A suite of text embedding models by Snowflake, optimized for performance.", + "size": "669MB", + "digest": "21ab8b9b0545", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "snowflake-arctic-embed:m", + "name": "snowflake-arctic-embed:m", + "description": "A suite of text embedding models by Snowflake, optimized for performance.", + "size": "219MB", + "digest": "8a0d86a3ca1d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "snowflake-arctic-embed:m-long", + "name": "snowflake-arctic-embed:m-long", + "description": "A suite of text embedding models by Snowflake, optimized for performance.", + "size": "274MB", + "digest": "12616299a158", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "snowflake-arctic-embed:s", + "name": "snowflake-arctic-embed:s", + "description": "A suite of text embedding models by Snowflake, optimized for performance.", + "size": "67MB", + "digest": "e8db018629b4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "snowflake-arctic-embed:xs", + "name": "snowflake-arctic-embed:xs", + "description": "A suite of text embedding models by Snowflake, optimized for performance.", + "size": "46MB", + "digest": "bf75350e1752", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2", + "name": "deepseek-coder-v2", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "8.9GB", + "digest": "63fb193b3a9b", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "deepseek-coder-v2:16b", + "name": "deepseek-coder-v2:16b", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "8.9GB", + "digest": "63fb193b3a9b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:236b", + "name": "deepseek-coder-v2:236b", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "133GB", + "digest": "c78d80129305", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:16b-lite-base-fp16", + "name": "deepseek-coder-v2:16b-lite-base-fp16", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "31GB", + "digest": "eab76b4e3742", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:16b-lite-base-q2_K", + "name": "deepseek-coder-v2:16b-lite-base-q2_K", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "6.4GB", + "digest": "8b62e3f7c4be", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:16b-lite-base-q3_K_L", + "name": "deepseek-coder-v2:16b-lite-base-q3_K_L", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "8.5GB", + "digest": "3dab6fe7735c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:16b-lite-base-q3_K_M", + "name": "deepseek-coder-v2:16b-lite-base-q3_K_M", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "8.1GB", + "digest": "d16d8f044de1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:16b-lite-base-q3_K_S", + "name": "deepseek-coder-v2:16b-lite-base-q3_K_S", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "7.5GB", + "digest": "8620271ad4df", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:16b-lite-base-q4_0", + "name": "deepseek-coder-v2:16b-lite-base-q4_0", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "8.9GB", + "digest": "dc3c85f78976", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:16b-lite-base-q4_1", + "name": "deepseek-coder-v2:16b-lite-base-q4_1", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "9.9GB", + "digest": "09d4128b178d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:16b-lite-base-q4_K_M", + "name": "deepseek-coder-v2:16b-lite-base-q4_K_M", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "10GB", + "digest": "2f4fb0bfc6a7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:16b-lite-base-q4_K_S", + "name": "deepseek-coder-v2:16b-lite-base-q4_K_S", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "9.5GB", + "digest": "eea8c1bb07d9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:16b-lite-base-q5_0", + "name": "deepseek-coder-v2:16b-lite-base-q5_0", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "11GB", + "digest": "cd16e96f0530", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:16b-lite-base-q5_1", + "name": "deepseek-coder-v2:16b-lite-base-q5_1", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "12GB", + "digest": "cf643e1eb150", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:16b-lite-base-q5_K_M", + "name": "deepseek-coder-v2:16b-lite-base-q5_K_M", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "12GB", + "digest": "0802b3662146", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:16b-lite-base-q5_K_S", + "name": "deepseek-coder-v2:16b-lite-base-q5_K_S", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "11GB", + "digest": "94111aa16b14", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:16b-lite-base-q6_K", + "name": "deepseek-coder-v2:16b-lite-base-q6_K", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "14GB", + "digest": "7e7a754912f8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:16b-lite-base-q8_0", + "name": "deepseek-coder-v2:16b-lite-base-q8_0", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "17GB", + "digest": "8e01d51811ab", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:16b-lite-instruct-fp16", + "name": "deepseek-coder-v2:16b-lite-instruct-fp16", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "31GB", + "digest": "e2edc649e2ab", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:16b-lite-instruct-q2_K", + "name": "deepseek-coder-v2:16b-lite-instruct-q2_K", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "6.4GB", + "digest": "82e79aef7a69", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:16b-lite-instruct-q3_K_L", + "name": "deepseek-coder-v2:16b-lite-instruct-q3_K_L", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "8.5GB", + "digest": "c5fffde68649", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:16b-lite-instruct-q3_K_M", + "name": "deepseek-coder-v2:16b-lite-instruct-q3_K_M", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "8.1GB", + "digest": "a1dbf0a1e4fa", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:16b-lite-instruct-q3_K_S", + "name": "deepseek-coder-v2:16b-lite-instruct-q3_K_S", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "7.5GB", + "digest": "36faf1cc8ce9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:16b-lite-instruct-q4_0", + "name": "deepseek-coder-v2:16b-lite-instruct-q4_0", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "8.9GB", + "digest": "63fb193b3a9b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:16b-lite-instruct-q4_1", + "name": "deepseek-coder-v2:16b-lite-instruct-q4_1", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "9.9GB", + "digest": "2ccedaf506ab", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:16b-lite-instruct-q4_K_M", + "name": "deepseek-coder-v2:16b-lite-instruct-q4_K_M", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "10GB", + "digest": "dac6ff6589c9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:16b-lite-instruct-q4_K_S", + "name": "deepseek-coder-v2:16b-lite-instruct-q4_K_S", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "9.5GB", + "digest": "5e86e3ea790e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:16b-lite-instruct-q5_0", + "name": "deepseek-coder-v2:16b-lite-instruct-q5_0", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "11GB", + "digest": "6084bfd4db26", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:16b-lite-instruct-q5_1", + "name": "deepseek-coder-v2:16b-lite-instruct-q5_1", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "12GB", + "digest": "840b2157e9f0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:16b-lite-instruct-q5_K_M", + "name": "deepseek-coder-v2:16b-lite-instruct-q5_K_M", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "12GB", + "digest": "6065d4880bf9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:16b-lite-instruct-q5_K_S", + "name": "deepseek-coder-v2:16b-lite-instruct-q5_K_S", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "11GB", + "digest": "efe9f0187a2d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:16b-lite-instruct-q6_K", + "name": "deepseek-coder-v2:16b-lite-instruct-q6_K", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "14GB", + "digest": "cf566e23d87f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:16b-lite-instruct-q8_0", + "name": "deepseek-coder-v2:16b-lite-instruct-q8_0", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "17GB", + "digest": "ef033cab4dae", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:236b-base-fp16", + "name": "deepseek-coder-v2:236b-base-fp16", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "472GB", + "digest": "bd60a2f7c8bc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:236b-base-q2_K", + "name": "deepseek-coder-v2:236b-base-q2_K", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "86GB", + "digest": "783021b97803", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:236b-base-q3_K_L", + "name": "deepseek-coder-v2:236b-base-q3_K_L", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "122GB", + "digest": "317accd37d79", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:236b-base-q3_K_M", + "name": "deepseek-coder-v2:236b-base-q3_K_M", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "113GB", + "digest": "e8d5da110401", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:236b-base-q3_K_S", + "name": "deepseek-coder-v2:236b-base-q3_K_S", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "102GB", + "digest": "e307d50c3f31", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:236b-base-q4_0", + "name": "deepseek-coder-v2:236b-base-q4_0", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "133GB", + "digest": "2dc89d24571b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:236b-base-q4_1", + "name": "deepseek-coder-v2:236b-base-q4_1", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "148GB", + "digest": "6c9b97422ea4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:236b-base-q4_K_M", + "name": "deepseek-coder-v2:236b-base-q4_K_M", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "142GB", + "digest": "c02e9228aa14", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:236b-base-q4_K_S", + "name": "deepseek-coder-v2:236b-base-q4_K_S", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "134GB", + "digest": "4e51408d2392", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:236b-base-q5_0", + "name": "deepseek-coder-v2:236b-base-q5_0", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "162GB", + "digest": "786659c065fa", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:236b-base-q5_1", + "name": "deepseek-coder-v2:236b-base-q5_1", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "177GB", + "digest": "073514be5a03", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:236b-base-q5_K_M", + "name": "deepseek-coder-v2:236b-base-q5_K_M", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "167GB", + "digest": "6710a3c300fc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:236b-base-q5_K_S", + "name": "deepseek-coder-v2:236b-base-q5_K_S", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "162GB", + "digest": "93374287311f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:236b-base-q6_K", + "name": "deepseek-coder-v2:236b-base-q6_K", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "194GB", + "digest": "9f090258b940", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:236b-base-q8_0", + "name": "deepseek-coder-v2:236b-base-q8_0", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "251GB", + "digest": "d1bcdd7d5871", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:236b-instruct-fp16", + "name": "deepseek-coder-v2:236b-instruct-fp16", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "472GB", + "digest": "22504f15ba17", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:236b-instruct-q2_K", + "name": "deepseek-coder-v2:236b-instruct-q2_K", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "86GB", + "digest": "4f831761cd02", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:236b-instruct-q3_K_L", + "name": "deepseek-coder-v2:236b-instruct-q3_K_L", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "122GB", + "digest": "f230e675a4e3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:236b-instruct-q3_K_M", + "name": "deepseek-coder-v2:236b-instruct-q3_K_M", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "113GB", + "digest": "2432b4ab9079", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:236b-instruct-q3_K_S", + "name": "deepseek-coder-v2:236b-instruct-q3_K_S", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "102GB", + "digest": "d7317e5ddd3f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:236b-instruct-q4_0", + "name": "deepseek-coder-v2:236b-instruct-q4_0", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "133GB", + "digest": "c78d80129305", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:236b-instruct-q4_1", + "name": "deepseek-coder-v2:236b-instruct-q4_1", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "148GB", + "digest": "3deb93929590", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:236b-instruct-q4_K_M", + "name": "deepseek-coder-v2:236b-instruct-q4_K_M", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "142GB", + "digest": "f37bcc863826", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:236b-instruct-q4_K_S", + "name": "deepseek-coder-v2:236b-instruct-q4_K_S", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "134GB", + "digest": "fa7317115737", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:236b-instruct-q5_0", + "name": "deepseek-coder-v2:236b-instruct-q5_0", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "162GB", + "digest": "46ceaf3a8ffd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:236b-instruct-q5_1", + "name": "deepseek-coder-v2:236b-instruct-q5_1", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "177GB", + "digest": "d29414056789", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:236b-instruct-q5_K_M", + "name": "deepseek-coder-v2:236b-instruct-q5_K_M", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "167GB", + "digest": "4e723bdb7e50", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:236b-instruct-q5_K_S", + "name": "deepseek-coder-v2:236b-instruct-q5_K_S", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "162GB", + "digest": "0ccf53e6e50b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:236b-instruct-q6_K", + "name": "deepseek-coder-v2:236b-instruct-q6_K", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "194GB", + "digest": "6ce352e55f26", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:236b-instruct-q8_0", + "name": "deepseek-coder-v2:236b-instruct-q8_0", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "251GB", + "digest": "7f763ec0e20e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder-v2:lite", + "name": "deepseek-coder-v2:lite", + "description": "An open-source Mixture-of-Experts code language model that achieves performance comparable to GPT4-Turbo in code-specific tasks.", + "size": "8.9GB", + "digest": "63fb193b3a9b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral", + "name": "mixtral", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "26GB", + "digest": "a3b6bef0f836", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "mixtral:8x7b", + "name": "mixtral:8x7b", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "26GB", + "digest": "a3b6bef0f836", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x22b", + "name": "mixtral:8x22b", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "80GB", + "digest": "e8479ee1cb51", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x22b-instruct", + "name": "mixtral:8x22b-instruct", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "80GB", + "digest": "e8479ee1cb51", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x22b-instruct-v0.1-fp16", + "name": "mixtral:8x22b-instruct-v0.1-fp16", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "281GB", + "digest": "be69186cc79b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x22b-instruct-v0.1-q2_K", + "name": "mixtral:8x22b-instruct-v0.1-q2_K", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "52GB", + "digest": "cf96f64cdf60", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x22b-instruct-v0.1-q3_K_L", + "name": "mixtral:8x22b-instruct-v0.1-q3_K_L", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "73GB", + "digest": "85c9d74f72e2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x22b-instruct-v0.1-q3_K_M", + "name": "mixtral:8x22b-instruct-v0.1-q3_K_M", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "68GB", + "digest": "d552821493b8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x22b-instruct-v0.1-q3_K_S", + "name": "mixtral:8x22b-instruct-v0.1-q3_K_S", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "62GB", + "digest": "50ec4fbf79f2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x22b-instruct-v0.1-q4_0", + "name": "mixtral:8x22b-instruct-v0.1-q4_0", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "80GB", + "digest": "e8479ee1cb51", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x22b-instruct-v0.1-q4_1", + "name": "mixtral:8x22b-instruct-v0.1-q4_1", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "88GB", + "digest": "0ea2df035a44", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x22b-instruct-v0.1-q4_K_M", + "name": "mixtral:8x22b-instruct-v0.1-q4_K_M", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "86GB", + "digest": "de58127cf267", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x22b-instruct-v0.1-q4_K_S", + "name": "mixtral:8x22b-instruct-v0.1-q4_K_S", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "80GB", + "digest": "a9be4647cd05", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x22b-instruct-v0.1-q5_0", + "name": "mixtral:8x22b-instruct-v0.1-q5_0", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "97GB", + "digest": "c4d73325754c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x22b-instruct-v0.1-q5_1", + "name": "mixtral:8x22b-instruct-v0.1-q5_1", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "106GB", + "digest": "a8e4c57d9fdb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x22b-instruct-v0.1-q5_K_M", + "name": "mixtral:8x22b-instruct-v0.1-q5_K_M", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "100GB", + "digest": "040d78ec94bc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x22b-instruct-v0.1-q5_K_S", + "name": "mixtral:8x22b-instruct-v0.1-q5_K_S", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "97GB", + "digest": "7dc2b27d2ce5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x22b-instruct-v0.1-q6_K", + "name": "mixtral:8x22b-instruct-v0.1-q6_K", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "116GB", + "digest": "2a597519778d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x22b-instruct-v0.1-q8_0", + "name": "mixtral:8x22b-instruct-v0.1-q8_0", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "149GB", + "digest": "74d06fe380a1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x22b-text", + "name": "mixtral:8x22b-text", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "80GB", + "digest": "eb6b1cd64bb1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x22b-text-v0.1-fp16", + "name": "mixtral:8x22b-text-v0.1-fp16", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "281GB", + "digest": "bada034b7898", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x22b-text-v0.1-q2_K", + "name": "mixtral:8x22b-text-v0.1-q2_K", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "52GB", + "digest": "9a187644e490", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x22b-text-v0.1-q3_K_L", + "name": "mixtral:8x22b-text-v0.1-q3_K_L", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "73GB", + "digest": "5637d20e8d2b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x22b-text-v0.1-q3_K_M", + "name": "mixtral:8x22b-text-v0.1-q3_K_M", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "68GB", + "digest": "a45b937d5d88", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x22b-text-v0.1-q3_K_S", + "name": "mixtral:8x22b-text-v0.1-q3_K_S", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "61GB", + "digest": "4f5b5d113e8d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x22b-text-v0.1-q4_0", + "name": "mixtral:8x22b-text-v0.1-q4_0", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "80GB", + "digest": "eb6b1cd64bb1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x22b-text-v0.1-q4_1", + "name": "mixtral:8x22b-text-v0.1-q4_1", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "88GB", + "digest": "068cdfff8170", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x22b-text-v0.1-q4_K_M", + "name": "mixtral:8x22b-text-v0.1-q4_K_M", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "86GB", + "digest": "48fd198637f7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x22b-text-v0.1-q4_K_S", + "name": "mixtral:8x22b-text-v0.1-q4_K_S", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "80GB", + "digest": "f43943467ac8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x22b-text-v0.1-q5_0", + "name": "mixtral:8x22b-text-v0.1-q5_0", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "97GB", + "digest": "4f7e4cb4532b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x22b-text-v0.1-q5_1", + "name": "mixtral:8x22b-text-v0.1-q5_1", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "106GB", + "digest": "77414be8fbac", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x22b-text-v0.1-q5_K_M", + "name": "mixtral:8x22b-text-v0.1-q5_K_M", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "100GB", + "digest": "92a2e32d7f87", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x22b-text-v0.1-q5_K_S", + "name": "mixtral:8x22b-text-v0.1-q5_K_S", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "97GB", + "digest": "9e736b483924", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x22b-text-v0.1-q6_K", + "name": "mixtral:8x22b-text-v0.1-q6_K", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "116GB", + "digest": "2fb8e840c060", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x22b-text-v0.1-q8_0", + "name": "mixtral:8x22b-text-v0.1-q8_0", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "149GB", + "digest": "619b5b9ddad2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x7b-instruct-v0.1-fp16", + "name": "mixtral:8x7b-instruct-v0.1-fp16", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "93GB", + "digest": "96c204672c06", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x7b-instruct-v0.1-q2_K", + "name": "mixtral:8x7b-instruct-v0.1-q2_K", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "17GB", + "digest": "b5f8be13d719", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x7b-instruct-v0.1-q3_K_L", + "name": "mixtral:8x7b-instruct-v0.1-q3_K_L", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "24GB", + "digest": "44a28a0d7d9a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x7b-instruct-v0.1-q3_K_M", + "name": "mixtral:8x7b-instruct-v0.1-q3_K_M", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "23GB", + "digest": "0f4e85e45e0c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x7b-instruct-v0.1-q3_K_S", + "name": "mixtral:8x7b-instruct-v0.1-q3_K_S", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "20GB", + "digest": "8214ed645fc2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x7b-instruct-v0.1-q4_0", + "name": "mixtral:8x7b-instruct-v0.1-q4_0", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "26GB", + "digest": "a3b6bef0f836", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x7b-instruct-v0.1-q4_1", + "name": "mixtral:8x7b-instruct-v0.1-q4_1", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "29GB", + "digest": "4ca263ed25e3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x7b-instruct-v0.1-q4_K_M", + "name": "mixtral:8x7b-instruct-v0.1-q4_K_M", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "28GB", + "digest": "a69121c90013", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x7b-instruct-v0.1-q4_K_S", + "name": "mixtral:8x7b-instruct-v0.1-q4_K_S", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "27GB", + "digest": "39c18795563b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x7b-instruct-v0.1-q5_0", + "name": "mixtral:8x7b-instruct-v0.1-q5_0", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "32GB", + "digest": "94bb1b270af9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x7b-instruct-v0.1-q5_1", + "name": "mixtral:8x7b-instruct-v0.1-q5_1", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "35GB", + "digest": "1084fd5133d1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x7b-instruct-v0.1-q5_K_M", + "name": "mixtral:8x7b-instruct-v0.1-q5_K_M", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "33GB", + "digest": "d011e1981bd1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x7b-instruct-v0.1-q5_K_S", + "name": "mixtral:8x7b-instruct-v0.1-q5_K_S", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "32GB", + "digest": "68f12ddfe676", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x7b-instruct-v0.1-q6_K", + "name": "mixtral:8x7b-instruct-v0.1-q6_K", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "38GB", + "digest": "ceaac0dbeffa", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x7b-instruct-v0.1-q8_0", + "name": "mixtral:8x7b-instruct-v0.1-q8_0", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "50GB", + "digest": "4b4321b5a853", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x7b-text", + "name": "mixtral:8x7b-text", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "26GB", + "digest": "29c986d45fba", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x7b-text-v0.1-fp16", + "name": "mixtral:8x7b-text-v0.1-fp16", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "93GB", + "digest": "6c08977f2b56", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x7b-text-v0.1-q2_K", + "name": "mixtral:8x7b-text-v0.1-q2_K", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "17GB", + "digest": "279c2f61bb77", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x7b-text-v0.1-q3_K_L", + "name": "mixtral:8x7b-text-v0.1-q3_K_L", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "24GB", + "digest": "09d5395d1226", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x7b-text-v0.1-q3_K_M", + "name": "mixtral:8x7b-text-v0.1-q3_K_M", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "23GB", + "digest": "2ec7294409e7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x7b-text-v0.1-q3_K_S", + "name": "mixtral:8x7b-text-v0.1-q3_K_S", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "20GB", + "digest": "b8bdfbd641af", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x7b-text-v0.1-q4_0", + "name": "mixtral:8x7b-text-v0.1-q4_0", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "26GB", + "digest": "29c986d45fba", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x7b-text-v0.1-q4_1", + "name": "mixtral:8x7b-text-v0.1-q4_1", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "29GB", + "digest": "20f1c9c7d6ee", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x7b-text-v0.1-q4_K_M", + "name": "mixtral:8x7b-text-v0.1-q4_K_M", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "28GB", + "digest": "2b19c246b20c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x7b-text-v0.1-q4_K_S", + "name": "mixtral:8x7b-text-v0.1-q4_K_S", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "27GB", + "digest": "45ad2aba6509", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x7b-text-v0.1-q5_0", + "name": "mixtral:8x7b-text-v0.1-q5_0", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "32GB", + "digest": "1692f253599b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x7b-text-v0.1-q5_1", + "name": "mixtral:8x7b-text-v0.1-q5_1", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "35GB", + "digest": "24ef911cb6dc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x7b-text-v0.1-q5_K_M", + "name": "mixtral:8x7b-text-v0.1-q5_K_M", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "33GB", + "digest": "957a4d1fad36", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x7b-text-v0.1-q5_K_S", + "name": "mixtral:8x7b-text-v0.1-q5_K_S", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "32GB", + "digest": "0f550cd04214", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x7b-text-v0.1-q6_K", + "name": "mixtral:8x7b-text-v0.1-q6_K", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "38GB", + "digest": "0331d26f4ac1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:8x7b-text-v0.1-q8_0", + "name": "mixtral:8x7b-text-v0.1-q8_0", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "50GB", + "digest": "50d4ad519912", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:instruct", + "name": "mixtral:instruct", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "26GB", + "digest": "a3b6bef0f836", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:text", + "name": "mixtral:text", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "26GB", + "digest": "29c986d45fba", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:v0.1", + "name": "mixtral:v0.1", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "80GB", + "digest": "e8479ee1cb51", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mixtral:v0.1-instruct", + "name": "mixtral:v0.1-instruct", + "description": "A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b and 8x22b parameter sizes.", + "size": "80GB", + "digest": "e8479ee1cb51", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder", + "name": "deepseek-coder", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "776MB", + "digest": "3ddd2d3fc8d2", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "deepseek-coder:1.3b", + "name": "deepseek-coder:1.3b", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "776MB", + "digest": "3ddd2d3fc8d2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:6.7b", + "name": "deepseek-coder:6.7b", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "3.8GB", + "digest": "ce298d984115", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:33b", + "name": "deepseek-coder:33b", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "19GB", + "digest": "acec7c0b0fd9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:1.3b-base", + "name": "deepseek-coder:1.3b-base", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "776MB", + "digest": "3b417b786925", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:1.3b-base-fp16", + "name": "deepseek-coder:1.3b-base-fp16", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "2.7GB", + "digest": "02b95acb6d92", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:1.3b-base-q2_K", + "name": "deepseek-coder:1.3b-base-q2_K", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "632MB", + "digest": "b4f8c7285df8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:1.3b-base-q3_K_L", + "name": "deepseek-coder:1.3b-base-q3_K_L", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "745MB", + "digest": "9884474f8e97", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:1.3b-base-q3_K_M", + "name": "deepseek-coder:1.3b-base-q3_K_M", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "705MB", + "digest": "08722dd8ec98", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:1.3b-base-q3_K_S", + "name": "deepseek-coder:1.3b-base-q3_K_S", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "659MB", + "digest": "3a3c3bc11d11", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:1.3b-base-q4_0", + "name": "deepseek-coder:1.3b-base-q4_0", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "776MB", + "digest": "3b417b786925", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:1.3b-base-q4_1", + "name": "deepseek-coder:1.3b-base-q4_1", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "856MB", + "digest": "75c6c24f8b9a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:1.3b-base-q4_K_M", + "name": "deepseek-coder:1.3b-base-q4_K_M", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "874MB", + "digest": "4e17652b15c5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:1.3b-base-q4_K_S", + "name": "deepseek-coder:1.3b-base-q4_K_S", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "815MB", + "digest": "2c83b95953cd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:1.3b-base-q5_0", + "name": "deepseek-coder:1.3b-base-q5_0", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "936MB", + "digest": "2d4798d07377", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:1.3b-base-q5_1", + "name": "deepseek-coder:1.3b-base-q5_1", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "1.0GB", + "digest": "2eb01ebad3f6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:1.3b-base-q5_K_M", + "name": "deepseek-coder:1.3b-base-q5_K_M", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "1.0GB", + "digest": "2940f35e76bc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:1.3b-base-q5_K_S", + "name": "deepseek-coder:1.3b-base-q5_K_S", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "953MB", + "digest": "f2689d6fec98", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:1.3b-base-q6_K", + "name": "deepseek-coder:1.3b-base-q6_K", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "1.2GB", + "digest": "87397ba29cd4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:1.3b-base-q8_0", + "name": "deepseek-coder:1.3b-base-q8_0", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "1.4GB", + "digest": "71f702eff852", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:1.3b-instruct", + "name": "deepseek-coder:1.3b-instruct", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "776MB", + "digest": "3ddd2d3fc8d2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:1.3b-instruct-fp16", + "name": "deepseek-coder:1.3b-instruct-fp16", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "2.7GB", + "digest": "89aaa860fc95", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:1.3b-instruct-q2_K", + "name": "deepseek-coder:1.3b-instruct-q2_K", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "632MB", + "digest": "1ad28239dd09", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:1.3b-instruct-q3_K_L", + "name": "deepseek-coder:1.3b-instruct-q3_K_L", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "745MB", + "digest": "0d2f32faf31e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:1.3b-instruct-q3_K_M", + "name": "deepseek-coder:1.3b-instruct-q3_K_M", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "705MB", + "digest": "1cd27a52ef39", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:1.3b-instruct-q3_K_S", + "name": "deepseek-coder:1.3b-instruct-q3_K_S", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "659MB", + "digest": "4c1eaf4c63f8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:1.3b-instruct-q4_0", + "name": "deepseek-coder:1.3b-instruct-q4_0", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "776MB", + "digest": "3ddd2d3fc8d2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:1.3b-instruct-q4_1", + "name": "deepseek-coder:1.3b-instruct-q4_1", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "856MB", + "digest": "403b7eec078d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:1.3b-instruct-q4_K_M", + "name": "deepseek-coder:1.3b-instruct-q4_K_M", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "874MB", + "digest": "d84d8a173290", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:1.3b-instruct-q4_K_S", + "name": "deepseek-coder:1.3b-instruct-q4_K_S", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "815MB", + "digest": "47ca84afbf6d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:1.3b-instruct-q5_0", + "name": "deepseek-coder:1.3b-instruct-q5_0", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "936MB", + "digest": "5f4cd944cf61", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:1.3b-instruct-q5_1", + "name": "deepseek-coder:1.3b-instruct-q5_1", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "1.0GB", + "digest": "334319021268", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:1.3b-instruct-q5_K_M", + "name": "deepseek-coder:1.3b-instruct-q5_K_M", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "1.0GB", + "digest": "2ff0e9282aba", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:1.3b-instruct-q5_K_S", + "name": "deepseek-coder:1.3b-instruct-q5_K_S", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "953MB", + "digest": "ca290ca9a10a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:1.3b-instruct-q6_K", + "name": "deepseek-coder:1.3b-instruct-q6_K", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "1.2GB", + "digest": "ce574ed6d34f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:1.3b-instruct-q8_0", + "name": "deepseek-coder:1.3b-instruct-q8_0", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "1.4GB", + "digest": "44e92342b6c8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:33b-base", + "name": "deepseek-coder:33b-base", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "19GB", + "digest": "ca50732c8ee1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:33b-base-fp16", + "name": "deepseek-coder:33b-base-fp16", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "67GB", + "digest": "eed8d5b0dfcc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:33b-base-q2_K", + "name": "deepseek-coder:33b-base-q2_K", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "14GB", + "digest": "c1a84861e5df", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:33b-base-q3_K_L", + "name": "deepseek-coder:33b-base-q3_K_L", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "18GB", + "digest": "e47bf0616d0d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:33b-base-q3_K_M", + "name": "deepseek-coder:33b-base-q3_K_M", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "16GB", + "digest": "fdb6068cec14", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:33b-base-q3_K_S", + "name": "deepseek-coder:33b-base-q3_K_S", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "14GB", + "digest": "29b391c03801", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:33b-base-q4_0", + "name": "deepseek-coder:33b-base-q4_0", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "19GB", + "digest": "ca50732c8ee1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:33b-base-q4_1", + "name": "deepseek-coder:33b-base-q4_1", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "21GB", + "digest": "d09dd3fe1448", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:33b-base-q4_K_M", + "name": "deepseek-coder:33b-base-q4_K_M", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "20GB", + "digest": "a205c1c80cf6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:33b-base-q4_K_S", + "name": "deepseek-coder:33b-base-q4_K_S", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "19GB", + "digest": "012e92746442", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:33b-base-q5_0", + "name": "deepseek-coder:33b-base-q5_0", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "23GB", + "digest": "a6c33a2e9332", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:33b-base-q5_1", + "name": "deepseek-coder:33b-base-q5_1", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "25GB", + "digest": "ba34d0e6ade6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:33b-base-q5_K_M", + "name": "deepseek-coder:33b-base-q5_K_M", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "24GB", + "digest": "2260429a178c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:33b-base-q5_K_S", + "name": "deepseek-coder:33b-base-q5_K_S", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "23GB", + "digest": "b9fef6f330c5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:33b-base-q6_K", + "name": "deepseek-coder:33b-base-q6_K", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "27GB", + "digest": "4cb5c88ab035", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:33b-base-q8_0", + "name": "deepseek-coder:33b-base-q8_0", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "35GB", + "digest": "1779efbb95d3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:33b-instruct", + "name": "deepseek-coder:33b-instruct", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "19GB", + "digest": "acec7c0b0fd9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:33b-instruct-fp16", + "name": "deepseek-coder:33b-instruct-fp16", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "67GB", + "digest": "b54904179335", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:33b-instruct-q2_K", + "name": "deepseek-coder:33b-instruct-q2_K", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "14GB", + "digest": "cb08fe026ad3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:33b-instruct-q3_K_L", + "name": "deepseek-coder:33b-instruct-q3_K_L", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "18GB", + "digest": "070ae915fa23", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:33b-instruct-q3_K_M", + "name": "deepseek-coder:33b-instruct-q3_K_M", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "16GB", + "digest": "e31fcc644c53", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:33b-instruct-q3_K_S", + "name": "deepseek-coder:33b-instruct-q3_K_S", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "14GB", + "digest": "a97a97b70cb4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:33b-instruct-q4_0", + "name": "deepseek-coder:33b-instruct-q4_0", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "19GB", + "digest": "acec7c0b0fd9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:33b-instruct-q4_1", + "name": "deepseek-coder:33b-instruct-q4_1", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "21GB", + "digest": "d59c6d5d79ac", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:33b-instruct-q4_K_M", + "name": "deepseek-coder:33b-instruct-q4_K_M", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "20GB", + "digest": "92b0c569c0df", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:33b-instruct-q4_K_S", + "name": "deepseek-coder:33b-instruct-q4_K_S", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "19GB", + "digest": "8f5d0f5ef4e5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:33b-instruct-q5_0", + "name": "deepseek-coder:33b-instruct-q5_0", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "23GB", + "digest": "c41da1e19678", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:33b-instruct-q5_1", + "name": "deepseek-coder:33b-instruct-q5_1", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "25GB", + "digest": "11fccea78dbe", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:33b-instruct-q5_K_M", + "name": "deepseek-coder:33b-instruct-q5_K_M", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "24GB", + "digest": "bd4a96fb44c0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:33b-instruct-q5_K_S", + "name": "deepseek-coder:33b-instruct-q5_K_S", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "23GB", + "digest": "f1d23826a886", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:33b-instruct-q6_K", + "name": "deepseek-coder:33b-instruct-q6_K", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "27GB", + "digest": "d44c67a95e2a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:33b-instruct-q8_0", + "name": "deepseek-coder:33b-instruct-q8_0", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "35GB", + "digest": "1b30ba8b1b95", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:6.7b-base", + "name": "deepseek-coder:6.7b-base", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "3.8GB", + "digest": "585a5cb3b219", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:6.7b-base-fp16", + "name": "deepseek-coder:6.7b-base-fp16", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "13GB", + "digest": "bc2d4c7ea23e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:6.7b-base-q2_K", + "name": "deepseek-coder:6.7b-base-q2_K", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "2.8GB", + "digest": "e13d22daf157", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:6.7b-base-q3_K_L", + "name": "deepseek-coder:6.7b-base-q3_K_L", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "3.6GB", + "digest": "29f806615022", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:6.7b-base-q3_K_M", + "name": "deepseek-coder:6.7b-base-q3_K_M", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "3.3GB", + "digest": "22ce0a5b45b2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:6.7b-base-q3_K_S", + "name": "deepseek-coder:6.7b-base-q3_K_S", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "3.0GB", + "digest": "ef853316467f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:6.7b-base-q4_0", + "name": "deepseek-coder:6.7b-base-q4_0", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "3.8GB", + "digest": "585a5cb3b219", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:6.7b-base-q4_1", + "name": "deepseek-coder:6.7b-base-q4_1", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "4.2GB", + "digest": "a269275b3473", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:6.7b-base-q4_K_M", + "name": "deepseek-coder:6.7b-base-q4_K_M", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "4.1GB", + "digest": "c12c864e1264", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:6.7b-base-q4_K_S", + "name": "deepseek-coder:6.7b-base-q4_K_S", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "3.9GB", + "digest": "b199f259ba9d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:6.7b-base-q5_0", + "name": "deepseek-coder:6.7b-base-q5_0", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "4.7GB", + "digest": "bcea528a2f2f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:6.7b-base-q5_1", + "name": "deepseek-coder:6.7b-base-q5_1", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "5.1GB", + "digest": "c5ee75dc71c8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:6.7b-base-q5_K_M", + "name": "deepseek-coder:6.7b-base-q5_K_M", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "4.8GB", + "digest": "5d67f76f7c57", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:6.7b-base-q5_K_S", + "name": "deepseek-coder:6.7b-base-q5_K_S", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "4.7GB", + "digest": "dcff193117f4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:6.7b-base-q6_K", + "name": "deepseek-coder:6.7b-base-q6_K", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "5.5GB", + "digest": "b91bf20f5a3c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:6.7b-base-q8_0", + "name": "deepseek-coder:6.7b-base-q8_0", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "7.2GB", + "digest": "570c490f997d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:6.7b-instruct", + "name": "deepseek-coder:6.7b-instruct", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "3.8GB", + "digest": "ce298d984115", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:6.7b-instruct-fp16", + "name": "deepseek-coder:6.7b-instruct-fp16", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "13GB", + "digest": "5421a6319130", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:6.7b-instruct-q2_K", + "name": "deepseek-coder:6.7b-instruct-q2_K", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "2.8GB", + "digest": "6fd7b2652ba7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:6.7b-instruct-q3_K_L", + "name": "deepseek-coder:6.7b-instruct-q3_K_L", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "3.6GB", + "digest": "ea00a885753e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:6.7b-instruct-q3_K_M", + "name": "deepseek-coder:6.7b-instruct-q3_K_M", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "3.3GB", + "digest": "27c2e4ed6a59", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:6.7b-instruct-q3_K_S", + "name": "deepseek-coder:6.7b-instruct-q3_K_S", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "3.0GB", + "digest": "38bce866b00f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:6.7b-instruct-q4_0", + "name": "deepseek-coder:6.7b-instruct-q4_0", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "3.8GB", + "digest": "ce298d984115", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:6.7b-instruct-q4_1", + "name": "deepseek-coder:6.7b-instruct-q4_1", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "4.2GB", + "digest": "4c147a2a4536", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:6.7b-instruct-q4_K_M", + "name": "deepseek-coder:6.7b-instruct-q4_K_M", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "4.1GB", + "digest": "af6da0444f84", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:6.7b-instruct-q4_K_S", + "name": "deepseek-coder:6.7b-instruct-q4_K_S", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "3.9GB", + "digest": "aa47b230dd4a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:6.7b-instruct-q5_0", + "name": "deepseek-coder:6.7b-instruct-q5_0", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "4.7GB", + "digest": "24c6f279a2a3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:6.7b-instruct-q5_1", + "name": "deepseek-coder:6.7b-instruct-q5_1", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "5.1GB", + "digest": "e13a2f5b13e6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:6.7b-instruct-q5_K_M", + "name": "deepseek-coder:6.7b-instruct-q5_K_M", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "4.8GB", + "digest": "d6a1221fb5ff", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:6.7b-instruct-q5_K_S", + "name": "deepseek-coder:6.7b-instruct-q5_K_S", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "4.7GB", + "digest": "fa9d8a78ef0d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:6.7b-instruct-q6_K", + "name": "deepseek-coder:6.7b-instruct-q6_K", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "5.5GB", + "digest": "5b1241961817", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:6.7b-instruct-q8_0", + "name": "deepseek-coder:6.7b-instruct-q8_0", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "7.2GB", + "digest": "54b58e32d587", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:base", + "name": "deepseek-coder:base", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "776MB", + "digest": "3b417b786925", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-coder:instruct", + "name": "deepseek-coder:instruct", + "description": "DeepSeek Coder is a capable coding model trained on two trillion code and natural language tokens.", + "size": "776MB", + "digest": "3ddd2d3fc8d2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-uncensored", + "name": "llama2-uncensored", + "description": "Uncensored Llama 2 model by George Sung and Jarrad Hope.", + "size": "3.8GB", + "digest": "44040b922233", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "llama2-uncensored:7b", + "name": "llama2-uncensored:7b", + "description": "Uncensored Llama 2 model by George Sung and Jarrad Hope.", + "size": "3.8GB", + "digest": "44040b922233", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-uncensored:70b", + "name": "llama2-uncensored:70b", + "description": "Uncensored Llama 2 model by George Sung and Jarrad Hope.", + "size": "39GB", + "digest": "bdd0ec2f5ec5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-uncensored:70b-chat", + "name": "llama2-uncensored:70b-chat", + "description": "Uncensored Llama 2 model by George Sung and Jarrad Hope.", + "size": "39GB", + "digest": "bdd0ec2f5ec5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-uncensored:70b-chat-q2_K", + "name": "llama2-uncensored:70b-chat-q2_K", + "description": "Uncensored Llama 2 model by George Sung and Jarrad Hope.", + "size": "29GB", + "digest": "07eb9c33537f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-uncensored:70b-chat-q3_K_L", + "name": "llama2-uncensored:70b-chat-q3_K_L", + "description": "Uncensored Llama 2 model by George Sung and Jarrad Hope.", + "size": "36GB", + "digest": "36c29a76fcc6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-uncensored:70b-chat-q3_K_M", + "name": "llama2-uncensored:70b-chat-q3_K_M", + "description": "Uncensored Llama 2 model by George Sung and Jarrad Hope.", + "size": "33GB", + "digest": "dc1b2e6eadcb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-uncensored:70b-chat-q3_K_S", + "name": "llama2-uncensored:70b-chat-q3_K_S", + "description": "Uncensored Llama 2 model by George Sung and Jarrad Hope.", + "size": "30GB", + "digest": "493a8291671f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-uncensored:70b-chat-q4_0", + "name": "llama2-uncensored:70b-chat-q4_0", + "description": "Uncensored Llama 2 model by George Sung and Jarrad Hope.", + "size": "39GB", + "digest": "bdd0ec2f5ec5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-uncensored:70b-chat-q4_1", + "name": "llama2-uncensored:70b-chat-q4_1", + "description": "Uncensored Llama 2 model by George Sung and Jarrad Hope.", + "size": "43GB", + "digest": "26fa2e1dcc70", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-uncensored:70b-chat-q4_K_M", + "name": "llama2-uncensored:70b-chat-q4_K_M", + "description": "Uncensored Llama 2 model by George Sung and Jarrad Hope.", + "size": "41GB", + "digest": "97d4d2728756", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-uncensored:70b-chat-q4_K_S", + "name": "llama2-uncensored:70b-chat-q4_K_S", + "description": "Uncensored Llama 2 model by George Sung and Jarrad Hope.", + "size": "39GB", + "digest": "ccd1d1a41ec7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-uncensored:70b-chat-q5_0", + "name": "llama2-uncensored:70b-chat-q5_0", + "description": "Uncensored Llama 2 model by George Sung and Jarrad Hope.", + "size": "47GB", + "digest": "16ddcf15080c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-uncensored:70b-chat-q5_1", + "name": "llama2-uncensored:70b-chat-q5_1", + "description": "Uncensored Llama 2 model by George Sung and Jarrad Hope.", + "size": "52GB", + "digest": "1eda65206a66", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-uncensored:70b-chat-q5_K_M", + "name": "llama2-uncensored:70b-chat-q5_K_M", + "description": "Uncensored Llama 2 model by George Sung and Jarrad Hope.", + "size": "49GB", + "digest": "cb930df97107", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-uncensored:70b-chat-q5_K_S", + "name": "llama2-uncensored:70b-chat-q5_K_S", + "description": "Uncensored Llama 2 model by George Sung and Jarrad Hope.", + "size": "47GB", + "digest": "90ac8e79f29b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-uncensored:70b-chat-q6_K", + "name": "llama2-uncensored:70b-chat-q6_K", + "description": "Uncensored Llama 2 model by George Sung and Jarrad Hope.", + "size": "57GB", + "digest": "38f49b2673e7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-uncensored:70b-chat-q8_0", + "name": "llama2-uncensored:70b-chat-q8_0", + "description": "Uncensored Llama 2 model by George Sung and Jarrad Hope.", + "size": "73GB", + "digest": "256b13d53838", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-uncensored:7b-chat", + "name": "llama2-uncensored:7b-chat", + "description": "Uncensored Llama 2 model by George Sung and Jarrad Hope.", + "size": "3.8GB", + "digest": "44040b922233", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-uncensored:7b-chat-fp16", + "name": "llama2-uncensored:7b-chat-fp16", + "description": "Uncensored Llama 2 model by George Sung and Jarrad Hope.", + "size": "13GB", + "digest": "b29ffe78e250", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-uncensored:7b-chat-q2_K", + "name": "llama2-uncensored:7b-chat-q2_K", + "description": "Uncensored Llama 2 model by George Sung and Jarrad Hope.", + "size": "2.8GB", + "digest": "74ae83e72254", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-uncensored:7b-chat-q3_K_L", + "name": "llama2-uncensored:7b-chat-q3_K_L", + "description": "Uncensored Llama 2 model by George Sung and Jarrad Hope.", + "size": "3.6GB", + "digest": "4c971d36df3a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-uncensored:7b-chat-q3_K_M", + "name": "llama2-uncensored:7b-chat-q3_K_M", + "description": "Uncensored Llama 2 model by George Sung and Jarrad Hope.", + "size": "3.3GB", + "digest": "e74d204469c8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-uncensored:7b-chat-q3_K_S", + "name": "llama2-uncensored:7b-chat-q3_K_S", + "description": "Uncensored Llama 2 model by George Sung and Jarrad Hope.", + "size": "2.9GB", + "digest": "3f56c4266b91", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-uncensored:7b-chat-q4_0", + "name": "llama2-uncensored:7b-chat-q4_0", + "description": "Uncensored Llama 2 model by George Sung and Jarrad Hope.", + "size": "3.8GB", + "digest": "44040b922233", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-uncensored:7b-chat-q4_1", + "name": "llama2-uncensored:7b-chat-q4_1", + "description": "Uncensored Llama 2 model by George Sung and Jarrad Hope.", + "size": "4.2GB", + "digest": "0126058e3693", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-uncensored:7b-chat-q4_K_M", + "name": "llama2-uncensored:7b-chat-q4_K_M", + "description": "Uncensored Llama 2 model by George Sung and Jarrad Hope.", + "size": "4.1GB", + "digest": "a91c5baf8d31", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-uncensored:7b-chat-q4_K_S", + "name": "llama2-uncensored:7b-chat-q4_K_S", + "description": "Uncensored Llama 2 model by George Sung and Jarrad Hope.", + "size": "3.9GB", + "digest": "7c0b8e49e54b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-uncensored:7b-chat-q5_0", + "name": "llama2-uncensored:7b-chat-q5_0", + "description": "Uncensored Llama 2 model by George Sung and Jarrad Hope.", + "size": "4.7GB", + "digest": "48c918f41b91", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-uncensored:7b-chat-q5_1", + "name": "llama2-uncensored:7b-chat-q5_1", + "description": "Uncensored Llama 2 model by George Sung and Jarrad Hope.", + "size": "5.1GB", + "digest": "4ba18e066719", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-uncensored:7b-chat-q5_K_M", + "name": "llama2-uncensored:7b-chat-q5_K_M", + "description": "Uncensored Llama 2 model by George Sung and Jarrad Hope.", + "size": "4.8GB", + "digest": "db0d5a17b770", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-uncensored:7b-chat-q5_K_S", + "name": "llama2-uncensored:7b-chat-q5_K_S", + "description": "Uncensored Llama 2 model by George Sung and Jarrad Hope.", + "size": "4.7GB", + "digest": "f2f04ee3b17e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-uncensored:7b-chat-q6_K", + "name": "llama2-uncensored:7b-chat-q6_K", + "description": "Uncensored Llama 2 model by George Sung and Jarrad Hope.", + "size": "5.5GB", + "digest": "f3040de79519", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-uncensored:7b-chat-q8_0", + "name": "llama2-uncensored:7b-chat-q8_0", + "description": "Uncensored Llama 2 model by George Sung and Jarrad Hope.", + "size": "7.2GB", + "digest": "a3a460233379", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral", + "name": "dolphin-mixtral", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "26GB", + "digest": "4f76c28c0414", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "dolphin-mixtral:8x7b", + "name": "dolphin-mixtral:8x7b", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "26GB", + "digest": "4f76c28c0414", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x22b", + "name": "dolphin-mixtral:8x22b", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "80GB", + "digest": "0772a1b884bf", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x22b-v2.9", + "name": "dolphin-mixtral:8x22b-v2.9", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "80GB", + "digest": "0772a1b884bf", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x22b-v2.9-fp16", + "name": "dolphin-mixtral:8x22b-v2.9-fp16", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "281GB", + "digest": "39195710503e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x22b-v2.9-q2_K", + "name": "dolphin-mixtral:8x22b-v2.9-q2_K", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "52GB", + "digest": "5dd54f8ff492", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x22b-v2.9-q3_K_L", + "name": "dolphin-mixtral:8x22b-v2.9-q3_K_L", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "73GB", + "digest": "3c5371c23577", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x22b-v2.9-q3_K_M", + "name": "dolphin-mixtral:8x22b-v2.9-q3_K_M", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "68GB", + "digest": "ef2b7524d28d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x22b-v2.9-q3_K_S", + "name": "dolphin-mixtral:8x22b-v2.9-q3_K_S", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "61GB", + "digest": "cad2f9d2e01d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x22b-v2.9-q4_0", + "name": "dolphin-mixtral:8x22b-v2.9-q4_0", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "80GB", + "digest": "0772a1b884bf", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x22b-v2.9-q4_1", + "name": "dolphin-mixtral:8x22b-v2.9-q4_1", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "88GB", + "digest": "3e58e962deb8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x22b-v2.9-q4_K_M", + "name": "dolphin-mixtral:8x22b-v2.9-q4_K_M", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "86GB", + "digest": "1ba3655b0de7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x22b-v2.9-q4_K_S", + "name": "dolphin-mixtral:8x22b-v2.9-q4_K_S", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "80GB", + "digest": "f7c583f24605", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x22b-v2.9-q5_0", + "name": "dolphin-mixtral:8x22b-v2.9-q5_0", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "97GB", + "digest": "abfd3a87f905", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x22b-v2.9-q5_1", + "name": "dolphin-mixtral:8x22b-v2.9-q5_1", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "106GB", + "digest": "a3561f68b65d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x22b-v2.9-q5_K_M", + "name": "dolphin-mixtral:8x22b-v2.9-q5_K_M", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "100GB", + "digest": "d4e513dcc2e6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x22b-v2.9-q5_K_S", + "name": "dolphin-mixtral:8x22b-v2.9-q5_K_S", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "97GB", + "digest": "a1cd7a6d8a79", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x22b-v2.9-q6_K", + "name": "dolphin-mixtral:8x22b-v2.9-q6_K", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "116GB", + "digest": "f5aac890745a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x22b-v2.9-q8_0", + "name": "dolphin-mixtral:8x22b-v2.9-q8_0", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "149GB", + "digest": "b82986a3ed4f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x7b-v2.5", + "name": "dolphin-mixtral:8x7b-v2.5", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "26GB", + "digest": "f924f2f0e484", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x7b-v2.5-fp16", + "name": "dolphin-mixtral:8x7b-v2.5-fp16", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "93GB", + "digest": "d1f36c28485e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x7b-v2.5-q2_K", + "name": "dolphin-mixtral:8x7b-v2.5-q2_K", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "17GB", + "digest": "448b185c2a3e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x7b-v2.5-q3_K_L", + "name": "dolphin-mixtral:8x7b-v2.5-q3_K_L", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "24GB", + "digest": "e6278d65e9dc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x7b-v2.5-q3_K_M", + "name": "dolphin-mixtral:8x7b-v2.5-q3_K_M", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "23GB", + "digest": "a04451f03648", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x7b-v2.5-q3_K_S", + "name": "dolphin-mixtral:8x7b-v2.5-q3_K_S", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "20GB", + "digest": "ea9ed37491b3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x7b-v2.5-q4_0", + "name": "dolphin-mixtral:8x7b-v2.5-q4_0", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "26GB", + "digest": "f924f2f0e484", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x7b-v2.5-q4_1", + "name": "dolphin-mixtral:8x7b-v2.5-q4_1", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "29GB", + "digest": "11dee8e97379", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x7b-v2.5-q4_K_M", + "name": "dolphin-mixtral:8x7b-v2.5-q4_K_M", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "28GB", + "digest": "66adba445821", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x7b-v2.5-q4_K_S", + "name": "dolphin-mixtral:8x7b-v2.5-q4_K_S", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "27GB", + "digest": "6534902e1e54", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x7b-v2.5-q5_0", + "name": "dolphin-mixtral:8x7b-v2.5-q5_0", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "32GB", + "digest": "8a9fd615b610", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x7b-v2.5-q5_1", + "name": "dolphin-mixtral:8x7b-v2.5-q5_1", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "35GB", + "digest": "36450117b011", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x7b-v2.5-q5_K_M", + "name": "dolphin-mixtral:8x7b-v2.5-q5_K_M", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "33GB", + "digest": "5389198274fa", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x7b-v2.5-q5_K_S", + "name": "dolphin-mixtral:8x7b-v2.5-q5_K_S", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "32GB", + "digest": "8e662aef3892", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x7b-v2.5-q6_K", + "name": "dolphin-mixtral:8x7b-v2.5-q6_K", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "38GB", + "digest": "7ef1f6ce2be5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x7b-v2.5-q8_0", + "name": "dolphin-mixtral:8x7b-v2.5-q8_0", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "50GB", + "digest": "2dbedb652781", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x7b-v2.6", + "name": "dolphin-mixtral:8x7b-v2.6", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "26GB", + "digest": "ccc9d1f5d17c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x7b-v2.6-fp16", + "name": "dolphin-mixtral:8x7b-v2.6-fp16", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "93GB", + "digest": "0e865bb9631d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x7b-v2.6-q2_K", + "name": "dolphin-mixtral:8x7b-v2.6-q2_K", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "17GB", + "digest": "2f562aa89564", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x7b-v2.6-q3_K_L", + "name": "dolphin-mixtral:8x7b-v2.6-q3_K_L", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "24GB", + "digest": "87f7ec7f238f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x7b-v2.6-q3_K_M", + "name": "dolphin-mixtral:8x7b-v2.6-q3_K_M", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "23GB", + "digest": "3a283d1a237d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x7b-v2.6-q3_K_S", + "name": "dolphin-mixtral:8x7b-v2.6-q3_K_S", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "20GB", + "digest": "ab8763452984", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x7b-v2.6-q4_0", + "name": "dolphin-mixtral:8x7b-v2.6-q4_0", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "26GB", + "digest": "ccc9d1f5d17c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x7b-v2.6-q4_1", + "name": "dolphin-mixtral:8x7b-v2.6-q4_1", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "29GB", + "digest": "9f3b6fc34751", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x7b-v2.6-q4_K_M", + "name": "dolphin-mixtral:8x7b-v2.6-q4_K_M", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "28GB", + "digest": "725fbbf8d5e0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x7b-v2.6-q4_K_S", + "name": "dolphin-mixtral:8x7b-v2.6-q4_K_S", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "27GB", + "digest": "f3dd3e93270a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x7b-v2.6-q5_0", + "name": "dolphin-mixtral:8x7b-v2.6-q5_0", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "32GB", + "digest": "ab28fea4d551", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x7b-v2.6-q5_1", + "name": "dolphin-mixtral:8x7b-v2.6-q5_1", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "35GB", + "digest": "0d332b78ce70", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x7b-v2.6-q5_K_M", + "name": "dolphin-mixtral:8x7b-v2.6-q5_K_M", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "33GB", + "digest": "616dad4c275d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x7b-v2.6-q5_K_S", + "name": "dolphin-mixtral:8x7b-v2.6-q5_K_S", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "32GB", + "digest": "15ecf506c50c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x7b-v2.6-q6_K", + "name": "dolphin-mixtral:8x7b-v2.6-q6_K", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "38GB", + "digest": "a14b88f77235", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x7b-v2.6-q8_0", + "name": "dolphin-mixtral:8x7b-v2.6-q8_0", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "50GB", + "digest": "2812998a47df", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x7b-v2.7", + "name": "dolphin-mixtral:8x7b-v2.7", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "26GB", + "digest": "4f76c28c0414", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x7b-v2.7-fp16", + "name": "dolphin-mixtral:8x7b-v2.7-fp16", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "93GB", + "digest": "4ac207dbc68b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x7b-v2.7-q2_K", + "name": "dolphin-mixtral:8x7b-v2.7-q2_K", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "17GB", + "digest": "67959cb58058", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x7b-v2.7-q3_K_L", + "name": "dolphin-mixtral:8x7b-v2.7-q3_K_L", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "24GB", + "digest": "8b94203d838d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x7b-v2.7-q3_K_M", + "name": "dolphin-mixtral:8x7b-v2.7-q3_K_M", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "23GB", + "digest": "c7bb43548a49", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x7b-v2.7-q3_K_S", + "name": "dolphin-mixtral:8x7b-v2.7-q3_K_S", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "20GB", + "digest": "102b0d4f9403", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x7b-v2.7-q4_0", + "name": "dolphin-mixtral:8x7b-v2.7-q4_0", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "26GB", + "digest": "4f76c28c0414", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x7b-v2.7-q4_1", + "name": "dolphin-mixtral:8x7b-v2.7-q4_1", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "29GB", + "digest": "d0c44def2b5e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x7b-v2.7-q4_K_M", + "name": "dolphin-mixtral:8x7b-v2.7-q4_K_M", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "28GB", + "digest": "9edda92db764", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x7b-v2.7-q4_K_S", + "name": "dolphin-mixtral:8x7b-v2.7-q4_K_S", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "27GB", + "digest": "61d2d0129a1b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x7b-v2.7-q5_0", + "name": "dolphin-mixtral:8x7b-v2.7-q5_0", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "32GB", + "digest": "c9b1ccc63176", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x7b-v2.7-q5_1", + "name": "dolphin-mixtral:8x7b-v2.7-q5_1", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "35GB", + "digest": "0e06aa33814f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x7b-v2.7-q5_K_M", + "name": "dolphin-mixtral:8x7b-v2.7-q5_K_M", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "33GB", + "digest": "48c8a1692c8d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x7b-v2.7-q5_K_S", + "name": "dolphin-mixtral:8x7b-v2.7-q5_K_S", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "32GB", + "digest": "6b10b15cfd86", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x7b-v2.7-q6_K", + "name": "dolphin-mixtral:8x7b-v2.7-q6_K", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "38GB", + "digest": "1673eadc5474", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:8x7b-v2.7-q8_0", + "name": "dolphin-mixtral:8x7b-v2.7-q8_0", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "50GB", + "digest": "1e3dbaccc823", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:v2.5", + "name": "dolphin-mixtral:v2.5", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "26GB", + "digest": "f924f2f0e484", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:v2.6", + "name": "dolphin-mixtral:v2.6", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "26GB", + "digest": "ccc9d1f5d17c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mixtral:v2.7", + "name": "dolphin-mixtral:v2.7", + "description": "Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of experts models that excels at coding tasks. Created by Eric Hartford.", + "size": "26GB", + "digest": "4f76c28c0414", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi", + "name": "phi", + "description": "Phi-2: a 2.7B language model by Microsoft Research that demonstrates outstanding reasoning and language understanding capabilities.", + "size": "1.6GB", + "digest": "e2fd6321a5fe", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "phi:2.7b", + "name": "phi:2.7b", + "description": "Phi-2: a 2.7B language model by Microsoft Research that demonstrates outstanding reasoning and language understanding capabilities.", + "size": "1.6GB", + "digest": "e2fd6321a5fe", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi:2.7b-chat-v2-fp16", + "name": "phi:2.7b-chat-v2-fp16", + "description": "Phi-2: a 2.7B language model by Microsoft Research that demonstrates outstanding reasoning and language understanding capabilities.", + "size": "5.6GB", + "digest": "6b283248a801", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi:2.7b-chat-v2-q2_K", + "name": "phi:2.7b-chat-v2-q2_K", + "description": "Phi-2: a 2.7B language model by Microsoft Research that demonstrates outstanding reasoning and language understanding capabilities.", + "size": "1.2GB", + "digest": "c5f597fa19b3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi:2.7b-chat-v2-q3_K_L", + "name": "phi:2.7b-chat-v2-q3_K_L", + "description": "Phi-2: a 2.7B language model by Microsoft Research that demonstrates outstanding reasoning and language understanding capabilities.", + "size": "1.6GB", + "digest": "f260bda13b81", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi:2.7b-chat-v2-q3_K_M", + "name": "phi:2.7b-chat-v2-q3_K_M", + "description": "Phi-2: a 2.7B language model by Microsoft Research that demonstrates outstanding reasoning and language understanding capabilities.", + "size": "1.5GB", + "digest": "76bbe442aabe", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi:2.7b-chat-v2-q3_K_S", + "name": "phi:2.7b-chat-v2-q3_K_S", + "description": "Phi-2: a 2.7B language model by Microsoft Research that demonstrates outstanding reasoning and language understanding capabilities.", + "size": "1.3GB", + "digest": "4ceb511ce989", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi:2.7b-chat-v2-q4_0", + "name": "phi:2.7b-chat-v2-q4_0", + "description": "Phi-2: a 2.7B language model by Microsoft Research that demonstrates outstanding reasoning and language understanding capabilities.", + "size": "1.6GB", + "digest": "e2fd6321a5fe", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi:2.7b-chat-v2-q4_1", + "name": "phi:2.7b-chat-v2-q4_1", + "description": "Phi-2: a 2.7B language model by Microsoft Research that demonstrates outstanding reasoning and language understanding capabilities.", + "size": "1.8GB", + "digest": "012265cbf343", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi:2.7b-chat-v2-q4_K_M", + "name": "phi:2.7b-chat-v2-q4_K_M", + "description": "Phi-2: a 2.7B language model by Microsoft Research that demonstrates outstanding reasoning and language understanding capabilities.", + "size": "1.8GB", + "digest": "79d7065d8c0f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi:2.7b-chat-v2-q4_K_S", + "name": "phi:2.7b-chat-v2-q4_K_S", + "description": "Phi-2: a 2.7B language model by Microsoft Research that demonstrates outstanding reasoning and language understanding capabilities.", + "size": "1.6GB", + "digest": "f018d657187c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi:2.7b-chat-v2-q5_0", + "name": "phi:2.7b-chat-v2-q5_0", + "description": "Phi-2: a 2.7B language model by Microsoft Research that demonstrates outstanding reasoning and language understanding capabilities.", + "size": "1.9GB", + "digest": "ccb07c724975", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi:2.7b-chat-v2-q5_1", + "name": "phi:2.7b-chat-v2-q5_1", + "description": "Phi-2: a 2.7B language model by Microsoft Research that demonstrates outstanding reasoning and language understanding capabilities.", + "size": "2.1GB", + "digest": "f322ed62bd81", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi:2.7b-chat-v2-q5_K_M", + "name": "phi:2.7b-chat-v2-q5_K_M", + "description": "Phi-2: a 2.7B language model by Microsoft Research that demonstrates outstanding reasoning and language understanding capabilities.", + "size": "2.1GB", + "digest": "4dbc1775ae76", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi:2.7b-chat-v2-q5_K_S", + "name": "phi:2.7b-chat-v2-q5_K_S", + "description": "Phi-2: a 2.7B language model by Microsoft Research that demonstrates outstanding reasoning and language understanding capabilities.", + "size": "1.9GB", + "digest": "4f3f9f884a09", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi:2.7b-chat-v2-q6_K", + "name": "phi:2.7b-chat-v2-q6_K", + "description": "Phi-2: a 2.7B language model by Microsoft Research that demonstrates outstanding reasoning and language understanding capabilities.", + "size": "2.3GB", + "digest": "170d96fc8084", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi:2.7b-chat-v2-q8_0", + "name": "phi:2.7b-chat-v2-q8_0", + "description": "Phi-2: a 2.7B language model by Microsoft Research that demonstrates outstanding reasoning and language understanding capabilities.", + "size": "3.0GB", + "digest": "55ec39f0bcf9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi:chat", + "name": "phi:chat", + "description": "Phi-2: a 2.7B language model by Microsoft Research that demonstrates outstanding reasoning and language understanding capabilities.", + "size": "1.6GB", + "digest": "e2fd6321a5fe", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma", + "name": "codegemma", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "5.0GB", + "digest": "0c96700aaada", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "codegemma:2b", + "name": "codegemma:2b", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "1.6GB", + "digest": "926331004170", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:7b", + "name": "codegemma:7b", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "5.0GB", + "digest": "0c96700aaada", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:2b-code", + "name": "codegemma:2b-code", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "1.6GB", + "digest": "926331004170", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:2b-code-fp16", + "name": "codegemma:2b-code-fp16", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "5.0GB", + "digest": "cb6daa72179a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:2b-code-q2_K", + "name": "codegemma:2b-code-q2_K", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "1.2GB", + "digest": "ac67535c1552", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:2b-code-q3_K_L", + "name": "codegemma:2b-code-q3_K_L", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "1.5GB", + "digest": "c6a3ccbac1d9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:2b-code-q3_K_M", + "name": "codegemma:2b-code-q3_K_M", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "1.4GB", + "digest": "f0346e149522", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:2b-code-q3_K_S", + "name": "codegemma:2b-code-q3_K_S", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "1.3GB", + "digest": "6b80287fa068", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:2b-code-q4_0", + "name": "codegemma:2b-code-q4_0", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "1.6GB", + "digest": "d90011175ac4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:2b-code-q4_1", + "name": "codegemma:2b-code-q4_1", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "1.7GB", + "digest": "801d0eb569e7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:2b-code-q4_K_M", + "name": "codegemma:2b-code-q4_K_M", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "1.6GB", + "digest": "b593bb191655", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:2b-code-q4_K_S", + "name": "codegemma:2b-code-q4_K_S", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "1.6GB", + "digest": "259e48057973", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:2b-code-q5_0", + "name": "codegemma:2b-code-q5_0", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "1.8GB", + "digest": "becd697505ba", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:2b-code-q5_1", + "name": "codegemma:2b-code-q5_1", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "1.9GB", + "digest": "820b54de78f0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:2b-code-q5_K_M", + "name": "codegemma:2b-code-q5_K_M", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "1.8GB", + "digest": "9617b59cd865", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:2b-code-q5_K_S", + "name": "codegemma:2b-code-q5_K_S", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "1.8GB", + "digest": "e9b5e9befa9e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:2b-code-q6_K", + "name": "codegemma:2b-code-q6_K", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "2.1GB", + "digest": "fead9028c732", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:2b-code-q8_0", + "name": "codegemma:2b-code-q8_0", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "2.7GB", + "digest": "2be70d05c9ca", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:2b-code-v1.1-fp16", + "name": "codegemma:2b-code-v1.1-fp16", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "5.0GB", + "digest": "962c58660bab", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:2b-code-v1.1-q2_K", + "name": "codegemma:2b-code-v1.1-q2_K", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "1.2GB", + "digest": "75ba44f889ab", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:2b-code-v1.1-q3_K_L", + "name": "codegemma:2b-code-v1.1-q3_K_L", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "1.5GB", + "digest": "6c9dbaeb7d96", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:2b-code-v1.1-q3_K_M", + "name": "codegemma:2b-code-v1.1-q3_K_M", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "1.4GB", + "digest": "7d484bdf35ae", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:2b-code-v1.1-q3_K_S", + "name": "codegemma:2b-code-v1.1-q3_K_S", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "1.3GB", + "digest": "d3a7d018d4c9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:2b-code-v1.1-q4_0", + "name": "codegemma:2b-code-v1.1-q4_0", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "1.6GB", + "digest": "926331004170", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:2b-code-v1.1-q4_1", + "name": "codegemma:2b-code-v1.1-q4_1", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "1.7GB", + "digest": "2128822ebc78", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:2b-code-v1.1-q4_K_M", + "name": "codegemma:2b-code-v1.1-q4_K_M", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "1.6GB", + "digest": "718e1de01c13", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:2b-code-v1.1-q4_K_S", + "name": "codegemma:2b-code-v1.1-q4_K_S", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "1.6GB", + "digest": "a8166a21676a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:2b-code-v1.1-q5_0", + "name": "codegemma:2b-code-v1.1-q5_0", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "1.8GB", + "digest": "2eb16b352c75", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:2b-code-v1.1-q5_1", + "name": "codegemma:2b-code-v1.1-q5_1", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "1.9GB", + "digest": "2b872b7f7fcf", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:2b-code-v1.1-q5_K_M", + "name": "codegemma:2b-code-v1.1-q5_K_M", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "1.8GB", + "digest": "421f855bcae9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:2b-code-v1.1-q5_K_S", + "name": "codegemma:2b-code-v1.1-q5_K_S", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "1.8GB", + "digest": "ba1202a14d4e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:2b-code-v1.1-q6_K", + "name": "codegemma:2b-code-v1.1-q6_K", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "2.1GB", + "digest": "d06cfbc95341", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:2b-code-v1.1-q8_0", + "name": "codegemma:2b-code-v1.1-q8_0", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "2.7GB", + "digest": "e7a5cfdf2f8b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:2b-v1.1", + "name": "codegemma:2b-v1.1", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "1.6GB", + "digest": "926331004170", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:7b-code", + "name": "codegemma:7b-code", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "5.0GB", + "digest": "aee9a63c13b9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:7b-code-fp16", + "name": "codegemma:7b-code-fp16", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "17GB", + "digest": "0e5867ab03b0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:7b-code-q2_K", + "name": "codegemma:7b-code-q2_K", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "3.5GB", + "digest": "9a5f3c6225e2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:7b-code-q3_K_L", + "name": "codegemma:7b-code-q3_K_L", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "4.7GB", + "digest": "421c03d31cc9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:7b-code-q3_K_M", + "name": "codegemma:7b-code-q3_K_M", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "4.4GB", + "digest": "b000753cb7f5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:7b-code-q3_K_S", + "name": "codegemma:7b-code-q3_K_S", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "4.0GB", + "digest": "59358d79fbb3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:7b-code-q4_0", + "name": "codegemma:7b-code-q4_0", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "5.0GB", + "digest": "aee9a63c13b9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:7b-code-q4_1", + "name": "codegemma:7b-code-q4_1", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "5.5GB", + "digest": "9067dd660ab0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:7b-code-q4_K_M", + "name": "codegemma:7b-code-q4_K_M", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "5.3GB", + "digest": "1b95ec1e6836", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:7b-code-q4_K_S", + "name": "codegemma:7b-code-q4_K_S", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "5.0GB", + "digest": "0eb5f6d5362a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:7b-code-q5_0", + "name": "codegemma:7b-code-q5_0", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "6.0GB", + "digest": "e866e2cde5d5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:7b-code-q5_1", + "name": "codegemma:7b-code-q5_1", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "6.5GB", + "digest": "104988c6ebfd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:7b-code-q5_K_M", + "name": "codegemma:7b-code-q5_K_M", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "6.1GB", + "digest": "819c2d1e9b36", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:7b-code-q5_K_S", + "name": "codegemma:7b-code-q5_K_S", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "6.0GB", + "digest": "12594d83fcd9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:7b-code-q6_K", + "name": "codegemma:7b-code-q6_K", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "7.0GB", + "digest": "d00cdbfa8157", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:7b-code-q8_0", + "name": "codegemma:7b-code-q8_0", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "9.1GB", + "digest": "9d29d6048003", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:7b-instruct", + "name": "codegemma:7b-instruct", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "5.0GB", + "digest": "0c96700aaada", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:7b-instruct-fp16", + "name": "codegemma:7b-instruct-fp16", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "17GB", + "digest": "27f776c137a0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:7b-instruct-q2_K", + "name": "codegemma:7b-instruct-q2_K", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "3.5GB", + "digest": "2936dc87cdb1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:7b-instruct-q3_K_L", + "name": "codegemma:7b-instruct-q3_K_L", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "4.7GB", + "digest": "95fefb8f59d4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:7b-instruct-q3_K_M", + "name": "codegemma:7b-instruct-q3_K_M", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "4.4GB", + "digest": "4816aadf859f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:7b-instruct-q3_K_S", + "name": "codegemma:7b-instruct-q3_K_S", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "4.0GB", + "digest": "16494f9aaad4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:7b-instruct-q4_0", + "name": "codegemma:7b-instruct-q4_0", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "5.0GB", + "digest": "ca966f70c13f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:7b-instruct-q4_1", + "name": "codegemma:7b-instruct-q4_1", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "5.5GB", + "digest": "596e25861a46", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:7b-instruct-q4_K_M", + "name": "codegemma:7b-instruct-q4_K_M", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "5.3GB", + "digest": "4ef43ea9dac1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:7b-instruct-q4_K_S", + "name": "codegemma:7b-instruct-q4_K_S", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "5.0GB", + "digest": "5f15be900227", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:7b-instruct-q5_0", + "name": "codegemma:7b-instruct-q5_0", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "6.0GB", + "digest": "f3e24c336347", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:7b-instruct-q5_1", + "name": "codegemma:7b-instruct-q5_1", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "6.5GB", + "digest": "a5d197370268", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:7b-instruct-q5_K_M", + "name": "codegemma:7b-instruct-q5_K_M", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "6.1GB", + "digest": "ea2f6eee4ed5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:7b-instruct-q5_K_S", + "name": "codegemma:7b-instruct-q5_K_S", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "6.0GB", + "digest": "720341c38018", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:7b-instruct-q6_K", + "name": "codegemma:7b-instruct-q6_K", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "7.0GB", + "digest": "7aab9ab8f462", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:7b-instruct-q8_0", + "name": "codegemma:7b-instruct-q8_0", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "9.1GB", + "digest": "359218041ed4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:7b-instruct-v1.1-fp16", + "name": "codegemma:7b-instruct-v1.1-fp16", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "17GB", + "digest": "d0b6beaa41bd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:7b-instruct-v1.1-q2_K", + "name": "codegemma:7b-instruct-v1.1-q2_K", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "3.5GB", + "digest": "ffadaea5308f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:7b-instruct-v1.1-q3_K_L", + "name": "codegemma:7b-instruct-v1.1-q3_K_L", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "4.7GB", + "digest": "d2c94e66c966", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:7b-instruct-v1.1-q3_K_M", + "name": "codegemma:7b-instruct-v1.1-q3_K_M", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "4.4GB", + "digest": "98df477b4dd7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:7b-instruct-v1.1-q3_K_S", + "name": "codegemma:7b-instruct-v1.1-q3_K_S", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "4.0GB", + "digest": "bf6229637a9a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:7b-instruct-v1.1-q4_0", + "name": "codegemma:7b-instruct-v1.1-q4_0", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "5.0GB", + "digest": "0c96700aaada", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:7b-instruct-v1.1-q4_1", + "name": "codegemma:7b-instruct-v1.1-q4_1", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "5.5GB", + "digest": "a6bd8bc93405", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:7b-instruct-v1.1-q4_K_M", + "name": "codegemma:7b-instruct-v1.1-q4_K_M", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "5.3GB", + "digest": "1216b3135c8b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:7b-instruct-v1.1-q4_K_S", + "name": "codegemma:7b-instruct-v1.1-q4_K_S", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "5.0GB", + "digest": "61a7d2976eb8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:7b-instruct-v1.1-q5_0", + "name": "codegemma:7b-instruct-v1.1-q5_0", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "6.0GB", + "digest": "a4b9382b8bc5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:7b-instruct-v1.1-q5_1", + "name": "codegemma:7b-instruct-v1.1-q5_1", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "6.5GB", + "digest": "c381b9ac5109", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:7b-instruct-v1.1-q5_K_M", + "name": "codegemma:7b-instruct-v1.1-q5_K_M", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "6.1GB", + "digest": "218da16d05a6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:7b-instruct-v1.1-q5_K_S", + "name": "codegemma:7b-instruct-v1.1-q5_K_S", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "6.0GB", + "digest": "121eb5f29436", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:7b-instruct-v1.1-q6_K", + "name": "codegemma:7b-instruct-v1.1-q6_K", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "7.0GB", + "digest": "84dfb4c2b2ba", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:7b-instruct-v1.1-q8_0", + "name": "codegemma:7b-instruct-v1.1-q8_0", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "9.1GB", + "digest": "9cbd7648b75f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:7b-v1.1", + "name": "codegemma:7b-v1.1", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "5.0GB", + "digest": "0c96700aaada", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:code", + "name": "codegemma:code", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "1.6GB", + "digest": "926331004170", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegemma:instruct", + "name": "codegemma:instruct", + "description": "CodeGemma is a collection of powerful, lightweight models that can perform a variety of coding tasks like fill-in-the-middle code completion, code generation, natural language understanding, mathematical reasoning, and instruction following.", + "size": "5.0GB", + "digest": "0c96700aaada", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "bge-m3", + "name": "bge-m3", + "description": "BGE-M3 is a new model from BAAI distinguished for its versatility in Multi-Functionality, Multi-Linguality, and Multi-Granularity.", + "size": "1.2GB", + "digest": "790764642607", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "bge-m3:567m", + "name": "bge-m3:567m", + "description": "BGE-M3 is a new model from BAAI distinguished for its versatility in Multi-Functionality, Multi-Linguality, and Multi-Granularity.", + "size": "1.2GB", + "digest": "790764642607", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "bge-m3:567m-fp16", + "name": "bge-m3:567m-fp16", + "description": "BGE-M3 is a new model from BAAI distinguished for its versatility in Multi-Functionality, Multi-Linguality, and Multi-Granularity.", + "size": "1.2GB", + "digest": "790764642607", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm2", + "name": "wizardlm2", + "description": "State of the art large language model from Microsoft AI with improved performance on complex chat, multilingual, reasoning and agent use cases.", + "size": "4.1GB", + "digest": "c9b1aff820f2", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "wizardlm2:7b", + "name": "wizardlm2:7b", + "description": "State of the art large language model from Microsoft AI with improved performance on complex chat, multilingual, reasoning and agent use cases.", + "size": "4.1GB", + "digest": "c9b1aff820f2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm2:8x22b", + "name": "wizardlm2:8x22b", + "description": "State of the art large language model from Microsoft AI with improved performance on complex chat, multilingual, reasoning and agent use cases.", + "size": "80GB", + "digest": "abda6e58fd1d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm2:7b-fp16", + "name": "wizardlm2:7b-fp16", + "description": "State of the art large language model from Microsoft AI with improved performance on complex chat, multilingual, reasoning and agent use cases.", + "size": "14GB", + "digest": "a34a3bbd552b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm2:7b-q2_K", + "name": "wizardlm2:7b-q2_K", + "description": "State of the art large language model from Microsoft AI with improved performance on complex chat, multilingual, reasoning and agent use cases.", + "size": "2.7GB", + "digest": "5795bd86f958", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm2:7b-q3_K_L", + "name": "wizardlm2:7b-q3_K_L", + "description": "State of the art large language model from Microsoft AI with improved performance on complex chat, multilingual, reasoning and agent use cases.", + "size": "3.8GB", + "digest": "9bcee57837f2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm2:7b-q3_K_M", + "name": "wizardlm2:7b-q3_K_M", + "description": "State of the art large language model from Microsoft AI with improved performance on complex chat, multilingual, reasoning and agent use cases.", + "size": "3.5GB", + "digest": "1cfd5676dee8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm2:7b-q3_K_S", + "name": "wizardlm2:7b-q3_K_S", + "description": "State of the art large language model from Microsoft AI with improved performance on complex chat, multilingual, reasoning and agent use cases.", + "size": "3.2GB", + "digest": "7bf0381ea93d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm2:7b-q4_0", + "name": "wizardlm2:7b-q4_0", + "description": "State of the art large language model from Microsoft AI with improved performance on complex chat, multilingual, reasoning and agent use cases.", + "size": "4.1GB", + "digest": "c9b1aff820f2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm2:7b-q4_1", + "name": "wizardlm2:7b-q4_1", + "description": "State of the art large language model from Microsoft AI with improved performance on complex chat, multilingual, reasoning and agent use cases.", + "size": "4.6GB", + "digest": "c0852cdfcb53", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm2:7b-q4_K_M", + "name": "wizardlm2:7b-q4_K_M", + "description": "State of the art large language model from Microsoft AI with improved performance on complex chat, multilingual, reasoning and agent use cases.", + "size": "4.4GB", + "digest": "3de5776b30d9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm2:7b-q4_K_S", + "name": "wizardlm2:7b-q4_K_S", + "description": "State of the art large language model from Microsoft AI with improved performance on complex chat, multilingual, reasoning and agent use cases.", + "size": "4.1GB", + "digest": "48a4adb06e0f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm2:7b-q5_0", + "name": "wizardlm2:7b-q5_0", + "description": "State of the art large language model from Microsoft AI with improved performance on complex chat, multilingual, reasoning and agent use cases.", + "size": "5.0GB", + "digest": "e7f2dbadd07d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm2:7b-q5_1", + "name": "wizardlm2:7b-q5_1", + "description": "State of the art large language model from Microsoft AI with improved performance on complex chat, multilingual, reasoning and agent use cases.", + "size": "5.4GB", + "digest": "4e51908f7cd5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm2:7b-q5_K_M", + "name": "wizardlm2:7b-q5_K_M", + "description": "State of the art large language model from Microsoft AI with improved performance on complex chat, multilingual, reasoning and agent use cases.", + "size": "5.1GB", + "digest": "5d60e2aefec6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm2:7b-q5_K_S", + "name": "wizardlm2:7b-q5_K_S", + "description": "State of the art large language model from Microsoft AI with improved performance on complex chat, multilingual, reasoning and agent use cases.", + "size": "5.0GB", + "digest": "895e99ce6162", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm2:7b-q6_K", + "name": "wizardlm2:7b-q6_K", + "description": "State of the art large language model from Microsoft AI with improved performance on complex chat, multilingual, reasoning and agent use cases.", + "size": "5.9GB", + "digest": "6195668c4294", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm2:7b-q8_0", + "name": "wizardlm2:7b-q8_0", + "description": "State of the art large language model from Microsoft AI with improved performance on complex chat, multilingual, reasoning and agent use cases.", + "size": "7.7GB", + "digest": "f74bc2dc64aa", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm2:8x22b-fp16", + "name": "wizardlm2:8x22b-fp16", + "description": "State of the art large language model from Microsoft AI with improved performance on complex chat, multilingual, reasoning and agent use cases.", + "size": "281GB", + "digest": "39f772dd966e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm2:8x22b-q2_K", + "name": "wizardlm2:8x22b-q2_K", + "description": "State of the art large language model from Microsoft AI with improved performance on complex chat, multilingual, reasoning and agent use cases.", + "size": "52GB", + "digest": "9f09573d18b6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm2:8x22b-q4_0", + "name": "wizardlm2:8x22b-q4_0", + "description": "State of the art large language model from Microsoft AI with improved performance on complex chat, multilingual, reasoning and agent use cases.", + "size": "80GB", + "digest": "abda6e58fd1d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm2:8x22b-q8_0", + "name": "wizardlm2:8x22b-q8_0", + "description": "State of the art large language model from Microsoft AI with improved performance on complex chat, multilingual, reasoning and agent use cases.", + "size": "149GB", + "digest": "07d5ea336544", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-v3", + "name": "deepseek-v3", + "description": "A strong Mixture-of-Experts (MoE) language model with 671B total parameters with 37B activated for each token.", + "size": "404GB", + "digest": "5da0e2d4a9e0", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "deepseek-v3:671b", + "name": "deepseek-v3:671b", + "description": "A strong Mixture-of-Experts (MoE) language model with 671B total parameters with 37B activated for each token.", + "size": "404GB", + "digest": "5da0e2d4a9e0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-v3:671b-fp16", + "name": "deepseek-v3:671b-fp16", + "description": "A strong Mixture-of-Experts (MoE) language model with 671B total parameters with 37B activated for each token.", + "size": "1.3TB", + "digest": "7770bf5a5ed8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-v3:671b-q4_K_M", + "name": "deepseek-v3:671b-q4_K_M", + "description": "A strong Mixture-of-Experts (MoE) language model with 671B total parameters with 37B activated for each token.", + "size": "404GB", + "digest": "5da0e2d4a9e0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-v3:671b-q8_0", + "name": "deepseek-v3:671b-q8_0", + "description": "A strong Mixture-of-Experts (MoE) language model with 671B total parameters with 37B activated for each token.", + "size": "713GB", + "digest": "96061c74c1a5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral", + "name": "dolphin-mistral", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "4.1GB", + "digest": "5dc8c5a2be65", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "dolphin-mistral:7b", + "name": "dolphin-mistral:7b", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "4.1GB", + "digest": "5dc8c5a2be65", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2", + "name": "dolphin-mistral:7b-v2", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "4.1GB", + "digest": "d4fedb7cc50d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2-fp16", + "name": "dolphin-mistral:7b-v2-fp16", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "14GB", + "digest": "dbea1ee61c91", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2-q2_K", + "name": "dolphin-mistral:7b-v2-q2_K", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "3.1GB", + "digest": "47e88c29db19", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2-q3_K_L", + "name": "dolphin-mistral:7b-v2-q3_K_L", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "3.8GB", + "digest": "0a764a52371c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2-q3_K_M", + "name": "dolphin-mistral:7b-v2-q3_K_M", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "3.5GB", + "digest": "ae55e3ef02e8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2-q3_K_S", + "name": "dolphin-mistral:7b-v2-q3_K_S", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "3.2GB", + "digest": "9ce568107856", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2-q4_0", + "name": "dolphin-mistral:7b-v2-q4_0", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "4.1GB", + "digest": "d4fedb7cc50d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2-q4_1", + "name": "dolphin-mistral:7b-v2-q4_1", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "4.6GB", + "digest": "963a8962e5cb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2-q4_K_M", + "name": "dolphin-mistral:7b-v2-q4_K_M", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "4.4GB", + "digest": "8151671578cc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2-q4_K_S", + "name": "dolphin-mistral:7b-v2-q4_K_S", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "4.1GB", + "digest": "31bc12ff86a4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2-q5_0", + "name": "dolphin-mistral:7b-v2-q5_0", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "5.0GB", + "digest": "f233b1631e2e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2-q5_1", + "name": "dolphin-mistral:7b-v2-q5_1", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "5.4GB", + "digest": "caa3000a6607", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2-q5_K_M", + "name": "dolphin-mistral:7b-v2-q5_K_M", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "5.1GB", + "digest": "483a8c29490a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2-q5_K_S", + "name": "dolphin-mistral:7b-v2-q5_K_S", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "5.0GB", + "digest": "3d1193db8247", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2-q6_K", + "name": "dolphin-mistral:7b-v2-q6_K", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "5.9GB", + "digest": "0abc7e93ace9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2-q8_0", + "name": "dolphin-mistral:7b-v2-q8_0", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "7.7GB", + "digest": "af57ab7e2f42", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.1", + "name": "dolphin-mistral:7b-v2.1", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "4.1GB", + "digest": "e4e3238590aa", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.1-fp16", + "name": "dolphin-mistral:7b-v2.1-fp16", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "14GB", + "digest": "8a7599e7afb6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.1-q2_K", + "name": "dolphin-mistral:7b-v2.1-q2_K", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "3.1GB", + "digest": "09b2c7439c66", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.1-q3_K_L", + "name": "dolphin-mistral:7b-v2.1-q3_K_L", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "3.8GB", + "digest": "d4e4ac49c638", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.1-q3_K_M", + "name": "dolphin-mistral:7b-v2.1-q3_K_M", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "3.5GB", + "digest": "de9aa2b8d525", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.1-q3_K_S", + "name": "dolphin-mistral:7b-v2.1-q3_K_S", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "3.2GB", + "digest": "cae2e5bf7e2a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.1-q4_0", + "name": "dolphin-mistral:7b-v2.1-q4_0", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "4.1GB", + "digest": "e4e3238590aa", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.1-q4_1", + "name": "dolphin-mistral:7b-v2.1-q4_1", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "4.6GB", + "digest": "bccbfbb66c22", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.1-q4_K_M", + "name": "dolphin-mistral:7b-v2.1-q4_K_M", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "4.4GB", + "digest": "42d3af2ff5bc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.1-q4_K_S", + "name": "dolphin-mistral:7b-v2.1-q4_K_S", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "4.1GB", + "digest": "928488201dda", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.1-q5_0", + "name": "dolphin-mistral:7b-v2.1-q5_0", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "5.0GB", + "digest": "7577f2a6ea36", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.1-q5_1", + "name": "dolphin-mistral:7b-v2.1-q5_1", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "5.4GB", + "digest": "d2d013e73bbb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.1-q5_K_M", + "name": "dolphin-mistral:7b-v2.1-q5_K_M", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "5.1GB", + "digest": "1792bb2a4dad", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.1-q5_K_S", + "name": "dolphin-mistral:7b-v2.1-q5_K_S", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "5.0GB", + "digest": "fafa4121da53", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.1-q6_K", + "name": "dolphin-mistral:7b-v2.1-q6_K", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "5.9GB", + "digest": "d7fc42d0c941", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.1-q8_0", + "name": "dolphin-mistral:7b-v2.1-q8_0", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "7.7GB", + "digest": "3c364693b3c5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.2", + "name": "dolphin-mistral:7b-v2.2", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "4.1GB", + "digest": "450ca08f6907", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.2-fp16", + "name": "dolphin-mistral:7b-v2.2-fp16", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "14GB", + "digest": "02a1321048d5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.2-q2_K", + "name": "dolphin-mistral:7b-v2.2-q2_K", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "3.1GB", + "digest": "40af9615d065", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.2-q3_K_L", + "name": "dolphin-mistral:7b-v2.2-q3_K_L", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "3.8GB", + "digest": "2e2d34ffb211", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.2-q3_K_M", + "name": "dolphin-mistral:7b-v2.2-q3_K_M", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "3.5GB", + "digest": "807f7ccc72ae", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.2-q3_K_S", + "name": "dolphin-mistral:7b-v2.2-q3_K_S", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "3.2GB", + "digest": "a646488b6fd5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.2-q4_0", + "name": "dolphin-mistral:7b-v2.2-q4_0", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "4.1GB", + "digest": "450ca08f6907", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.2-q4_1", + "name": "dolphin-mistral:7b-v2.2-q4_1", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "4.6GB", + "digest": "1f764be54847", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.2-q4_K_M", + "name": "dolphin-mistral:7b-v2.2-q4_K_M", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "4.4GB", + "digest": "5f5bc8a7f6c0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.2-q4_K_S", + "name": "dolphin-mistral:7b-v2.2-q4_K_S", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "4.1GB", + "digest": "7c4ea4ac1b3d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.2-q5_0", + "name": "dolphin-mistral:7b-v2.2-q5_0", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "5.0GB", + "digest": "05ef3ead3f63", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.2-q5_1", + "name": "dolphin-mistral:7b-v2.2-q5_1", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "5.4GB", + "digest": "35a9966c852b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.2-q5_K_M", + "name": "dolphin-mistral:7b-v2.2-q5_K_M", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "5.1GB", + "digest": "e9ac7f8b1b41", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.2-q5_K_S", + "name": "dolphin-mistral:7b-v2.2-q5_K_S", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "5.0GB", + "digest": "8cb5befe96d0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.2-q6_K", + "name": "dolphin-mistral:7b-v2.2-q6_K", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "5.9GB", + "digest": "fbd48b25b103", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.2-q8_0", + "name": "dolphin-mistral:7b-v2.2-q8_0", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "7.7GB", + "digest": "f12f440dd443", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.2.1", + "name": "dolphin-mistral:7b-v2.2.1", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "4.1GB", + "digest": "04b0ec52c40b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.2.1-fp16", + "name": "dolphin-mistral:7b-v2.2.1-fp16", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "14GB", + "digest": "49b48f849296", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.2.1-q2_K", + "name": "dolphin-mistral:7b-v2.2.1-q2_K", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "3.1GB", + "digest": "994c722b1561", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.2.1-q3_K_L", + "name": "dolphin-mistral:7b-v2.2.1-q3_K_L", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "3.8GB", + "digest": "3bba1c1ad35a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.2.1-q3_K_M", + "name": "dolphin-mistral:7b-v2.2.1-q3_K_M", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "3.5GB", + "digest": "6e92d0dbb4a0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.2.1-q3_K_S", + "name": "dolphin-mistral:7b-v2.2.1-q3_K_S", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "3.2GB", + "digest": "5753614304a2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.2.1-q4_0", + "name": "dolphin-mistral:7b-v2.2.1-q4_0", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "4.1GB", + "digest": "04b0ec52c40b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.2.1-q4_1", + "name": "dolphin-mistral:7b-v2.2.1-q4_1", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "4.6GB", + "digest": "c76cd3b5beee", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.2.1-q4_K_M", + "name": "dolphin-mistral:7b-v2.2.1-q4_K_M", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "4.4GB", + "digest": "5e3337ccc282", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.2.1-q4_K_S", + "name": "dolphin-mistral:7b-v2.2.1-q4_K_S", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "4.1GB", + "digest": "5029cbe43e9c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.2.1-q5_0", + "name": "dolphin-mistral:7b-v2.2.1-q5_0", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "5.0GB", + "digest": "a22f80a3ea5d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.2.1-q5_1", + "name": "dolphin-mistral:7b-v2.2.1-q5_1", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "5.4GB", + "digest": "62d4ace3645c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.2.1-q5_K_M", + "name": "dolphin-mistral:7b-v2.2.1-q5_K_M", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "5.1GB", + "digest": "e4b72a87ab51", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.2.1-q5_K_S", + "name": "dolphin-mistral:7b-v2.2.1-q5_K_S", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "5.0GB", + "digest": "03945b375e86", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.2.1-q6_K", + "name": "dolphin-mistral:7b-v2.2.1-q6_K", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "5.9GB", + "digest": "b5df8e083d3d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.2.1-q8_0", + "name": "dolphin-mistral:7b-v2.2.1-q8_0", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "7.7GB", + "digest": "62e41c882df2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.6", + "name": "dolphin-mistral:7b-v2.6", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "4.1GB", + "digest": "206a4093ff30", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.6-dpo-laser", + "name": "dolphin-mistral:7b-v2.6-dpo-laser", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "4.1GB", + "digest": "ecbf896611f5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.6-dpo-laser-fp16", + "name": "dolphin-mistral:7b-v2.6-dpo-laser-fp16", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "14GB", + "digest": "ef5fb1b4eb40", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.6-dpo-laser-q2_K", + "name": "dolphin-mistral:7b-v2.6-dpo-laser-q2_K", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "3.1GB", + "digest": "3d2e06cd1f34", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.6-dpo-laser-q3_K_L", + "name": "dolphin-mistral:7b-v2.6-dpo-laser-q3_K_L", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "3.8GB", + "digest": "fbd62dc63cf3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.6-dpo-laser-q3_K_M", + "name": "dolphin-mistral:7b-v2.6-dpo-laser-q3_K_M", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "3.5GB", + "digest": "d9a82ca1b186", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.6-dpo-laser-q3_K_S", + "name": "dolphin-mistral:7b-v2.6-dpo-laser-q3_K_S", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "3.2GB", + "digest": "c4841f98c665", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.6-dpo-laser-q4_0", + "name": "dolphin-mistral:7b-v2.6-dpo-laser-q4_0", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "4.1GB", + "digest": "ecbf896611f5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.6-dpo-laser-q4_1", + "name": "dolphin-mistral:7b-v2.6-dpo-laser-q4_1", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "4.6GB", + "digest": "dcda7ed9d1ea", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.6-dpo-laser-q4_K_M", + "name": "dolphin-mistral:7b-v2.6-dpo-laser-q4_K_M", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "4.4GB", + "digest": "4637e8c97e50", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.6-dpo-laser-q4_K_S", + "name": "dolphin-mistral:7b-v2.6-dpo-laser-q4_K_S", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "4.1GB", + "digest": "251809e4483d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.6-dpo-laser-q5_0", + "name": "dolphin-mistral:7b-v2.6-dpo-laser-q5_0", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "5.0GB", + "digest": "09bce0353761", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.6-dpo-laser-q5_1", + "name": "dolphin-mistral:7b-v2.6-dpo-laser-q5_1", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "5.4GB", + "digest": "a40a97e78596", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.6-dpo-laser-q5_K_M", + "name": "dolphin-mistral:7b-v2.6-dpo-laser-q5_K_M", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "5.1GB", + "digest": "89ac2026188b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.6-dpo-laser-q5_K_S", + "name": "dolphin-mistral:7b-v2.6-dpo-laser-q5_K_S", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "5.0GB", + "digest": "c6a7fdc04e62", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.6-dpo-laser-q6_K", + "name": "dolphin-mistral:7b-v2.6-dpo-laser-q6_K", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "5.9GB", + "digest": "3383c1e1a3a3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.6-dpo-laser-q8_0", + "name": "dolphin-mistral:7b-v2.6-dpo-laser-q8_0", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "7.7GB", + "digest": "805ca6fc04df", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.6-fp16", + "name": "dolphin-mistral:7b-v2.6-fp16", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "14GB", + "digest": "ee8029835435", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.6-q2_K", + "name": "dolphin-mistral:7b-v2.6-q2_K", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "3.1GB", + "digest": "5095f4e248f8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.6-q3_K_L", + "name": "dolphin-mistral:7b-v2.6-q3_K_L", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "3.8GB", + "digest": "3f69b8a407b5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.6-q3_K_M", + "name": "dolphin-mistral:7b-v2.6-q3_K_M", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "3.5GB", + "digest": "fae30abf511f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.6-q3_K_S", + "name": "dolphin-mistral:7b-v2.6-q3_K_S", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "3.2GB", + "digest": "7d87567ba4e1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.6-q4_0", + "name": "dolphin-mistral:7b-v2.6-q4_0", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "4.1GB", + "digest": "206a4093ff30", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.6-q4_1", + "name": "dolphin-mistral:7b-v2.6-q4_1", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "4.6GB", + "digest": "75979198bd96", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.6-q4_K_M", + "name": "dolphin-mistral:7b-v2.6-q4_K_M", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "4.4GB", + "digest": "de97d7427c36", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.6-q4_K_S", + "name": "dolphin-mistral:7b-v2.6-q4_K_S", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "4.1GB", + "digest": "d131e1a76ddc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.6-q5_0", + "name": "dolphin-mistral:7b-v2.6-q5_0", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "5.0GB", + "digest": "e8f5e1669039", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.6-q5_1", + "name": "dolphin-mistral:7b-v2.6-q5_1", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "5.4GB", + "digest": "b2f2f3609ccd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.6-q5_K_M", + "name": "dolphin-mistral:7b-v2.6-q5_K_M", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "5.1GB", + "digest": "24b9c375e0bc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.6-q5_K_S", + "name": "dolphin-mistral:7b-v2.6-q5_K_S", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "5.0GB", + "digest": "5ce09aea680f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.6-q6_K", + "name": "dolphin-mistral:7b-v2.6-q6_K", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "5.9GB", + "digest": "d1c90221f843", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.6-q8_0", + "name": "dolphin-mistral:7b-v2.6-q8_0", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "7.7GB", + "digest": "43ea31e60f41", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.8", + "name": "dolphin-mistral:7b-v2.8", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "4.1GB", + "digest": "5dc8c5a2be65", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.8-fp16", + "name": "dolphin-mistral:7b-v2.8-fp16", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "14GB", + "digest": "1e979cf70c05", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.8-q2_K", + "name": "dolphin-mistral:7b-v2.8-q2_K", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "2.7GB", + "digest": "703fcc8feca4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.8-q3_K_L", + "name": "dolphin-mistral:7b-v2.8-q3_K_L", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "3.8GB", + "digest": "3689be23e227", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.8-q3_K_M", + "name": "dolphin-mistral:7b-v2.8-q3_K_M", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "3.5GB", + "digest": "368c8b580b2c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.8-q3_K_S", + "name": "dolphin-mistral:7b-v2.8-q3_K_S", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "3.2GB", + "digest": "b373bd912c47", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.8-q4_0", + "name": "dolphin-mistral:7b-v2.8-q4_0", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "4.1GB", + "digest": "5dc8c5a2be65", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.8-q4_1", + "name": "dolphin-mistral:7b-v2.8-q4_1", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "4.6GB", + "digest": "8a3536853f0c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.8-q4_K_M", + "name": "dolphin-mistral:7b-v2.8-q4_K_M", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "4.4GB", + "digest": "9664319c8300", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.8-q4_K_S", + "name": "dolphin-mistral:7b-v2.8-q4_K_S", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "4.1GB", + "digest": "f7fe7f8a5338", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.8-q5_0", + "name": "dolphin-mistral:7b-v2.8-q5_0", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "5.0GB", + "digest": "4b957d0f8184", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.8-q5_1", + "name": "dolphin-mistral:7b-v2.8-q5_1", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "5.4GB", + "digest": "2d9d3f2fc319", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.8-q5_K_M", + "name": "dolphin-mistral:7b-v2.8-q5_K_M", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "5.1GB", + "digest": "89cd0f3499d5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.8-q5_K_S", + "name": "dolphin-mistral:7b-v2.8-q5_K_S", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "5.0GB", + "digest": "a9699d013b92", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.8-q6_K", + "name": "dolphin-mistral:7b-v2.8-q6_K", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "5.9GB", + "digest": "abbbabedf4f5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:7b-v2.8-q8_0", + "name": "dolphin-mistral:7b-v2.8-q8_0", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "7.7GB", + "digest": "c42fc14057d2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:v2", + "name": "dolphin-mistral:v2", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "4.1GB", + "digest": "d4fedb7cc50d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:v2.1", + "name": "dolphin-mistral:v2.1", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "4.1GB", + "digest": "e4e3238590aa", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:v2.2", + "name": "dolphin-mistral:v2.2", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "4.1GB", + "digest": "450ca08f6907", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:v2.2.1", + "name": "dolphin-mistral:v2.2.1", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "4.1GB", + "digest": "04b0ec52c40b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:v2.6", + "name": "dolphin-mistral:v2.6", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "4.1GB", + "digest": "ecbf896611f5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-mistral:v2.8", + "name": "dolphin-mistral:v2.8", + "description": "The uncensored Dolphin model based on Mistral that excels at coding tasks. Updated to version 2.8.", + "size": "4.1GB", + "digest": "5dc8c5a2be65", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava-llama3", + "name": "llava-llama3", + "description": "A LLaVA model fine-tuned from Llama 3 Instruct with better scores in several benchmarks.", + "size": "5.5GB", + "digest": "44c161b1f465", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "llava-llama3:8b", + "name": "llava-llama3:8b", + "description": "A LLaVA model fine-tuned from Llama 3 Instruct with better scores in several benchmarks.", + "size": "5.5GB", + "digest": "44c161b1f465", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava-llama3:8b-v1.1-fp16", + "name": "llava-llama3:8b-v1.1-fp16", + "description": "A LLaVA model fine-tuned from Llama 3 Instruct with better scores in several benchmarks.", + "size": "17GB", + "digest": "7d4b165b1c5e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava-llama3:8b-v1.1-q4_0", + "name": "llava-llama3:8b-v1.1-q4_0", + "description": "A LLaVA model fine-tuned from Llama 3 Instruct with better scores in several benchmarks.", + "size": "5.5GB", + "digest": "44c161b1f465", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "all-minilm", + "name": "all-minilm", + "description": "Embedding models on very large sentence level datasets.", + "size": "46MB", + "digest": "1b226e2802db", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "all-minilm:22m", + "name": "all-minilm:22m", + "description": "Embedding models on very large sentence level datasets.", + "size": "46MB", + "digest": "1b226e2802db", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "all-minilm:33m", + "name": "all-minilm:33m", + "description": "Embedding models on very large sentence level datasets.", + "size": "67MB", + "digest": "4f5da3bd944d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "all-minilm:22m-l6-v2-fp16", + "name": "all-minilm:22m-l6-v2-fp16", + "description": "Embedding models on very large sentence level datasets.", + "size": "46MB", + "digest": "1b226e2802db", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "all-minilm:33m-l12-v2-fp16", + "name": "all-minilm:33m-l12-v2-fp16", + "description": "Embedding models on very large sentence level datasets.", + "size": "67MB", + "digest": "4f5da3bd944d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "all-minilm:l12", + "name": "all-minilm:l12", + "description": "Embedding models on very large sentence level datasets.", + "size": "67MB", + "digest": "4f5da3bd944d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "all-minilm:l12-v2", + "name": "all-minilm:l12-v2", + "description": "Embedding models on very large sentence level datasets.", + "size": "67MB", + "digest": "4f5da3bd944d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "all-minilm:l6", + "name": "all-minilm:l6", + "description": "Embedding models on very large sentence level datasets.", + "size": "46MB", + "digest": "1b226e2802db", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "all-minilm:l6-v2", + "name": "all-minilm:l6-v2", + "description": "Embedding models on very large sentence level datasets.", + "size": "46MB", + "digest": "1b226e2802db", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "all-minilm:v2", + "name": "all-minilm:v2", + "description": "Embedding models on very large sentence level datasets.", + "size": "46MB", + "digest": "1b226e2802db", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-llama3", + "name": "dolphin-llama3", + "description": "Dolphin 2.9 is a new model with 8B and 70B sizes by Eric Hartford based on Llama 3 that has a variety of instruction, conversational, and coding skills.", + "size": "4.7GB", + "digest": "613f068e29f8", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "dolphin-llama3:8b", + "name": "dolphin-llama3:8b", + "description": "Dolphin 2.9 is a new model with 8B and 70B sizes by Eric Hartford based on Llama 3 that has a variety of instruction, conversational, and coding skills.", + "size": "4.7GB", + "digest": "613f068e29f8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-llama3:70b", + "name": "dolphin-llama3:70b", + "description": "Dolphin 2.9 is a new model with 8B and 70B sizes by Eric Hartford based on Llama 3 that has a variety of instruction, conversational, and coding skills.", + "size": "40GB", + "digest": "39cf3e48a702", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-llama3:70b-v2.9", + "name": "dolphin-llama3:70b-v2.9", + "description": "Dolphin 2.9 is a new model with 8B and 70B sizes by Eric Hartford based on Llama 3 that has a variety of instruction, conversational, and coding skills.", + "size": "40GB", + "digest": "39cf3e48a702", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-llama3:70b-v2.9-fp16", + "name": "dolphin-llama3:70b-v2.9-fp16", + "description": "Dolphin 2.9 is a new model with 8B and 70B sizes by Eric Hartford based on Llama 3 that has a variety of instruction, conversational, and coding skills.", + "size": "141GB", + "digest": "384d68211a76", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-llama3:70b-v2.9-q2_K", + "name": "dolphin-llama3:70b-v2.9-q2_K", + "description": "Dolphin 2.9 is a new model with 8B and 70B sizes by Eric Hartford based on Llama 3 that has a variety of instruction, conversational, and coding skills.", + "size": "26GB", + "digest": "9167f4131518", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-llama3:70b-v2.9-q3_K_L", + "name": "dolphin-llama3:70b-v2.9-q3_K_L", + "description": "Dolphin 2.9 is a new model with 8B and 70B sizes by Eric Hartford based on Llama 3 that has a variety of instruction, conversational, and coding skills.", + "size": "37GB", + "digest": "0b1d3bbb0f87", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-llama3:70b-v2.9-q3_K_M", + "name": "dolphin-llama3:70b-v2.9-q3_K_M", + "description": "Dolphin 2.9 is a new model with 8B and 70B sizes by Eric Hartford based on Llama 3 that has a variety of instruction, conversational, and coding skills.", + "size": "34GB", + "digest": "9f14deb632a8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-llama3:70b-v2.9-q3_K_S", + "name": "dolphin-llama3:70b-v2.9-q3_K_S", + "description": "Dolphin 2.9 is a new model with 8B and 70B sizes by Eric Hartford based on Llama 3 that has a variety of instruction, conversational, and coding skills.", + "size": "31GB", + "digest": "0ff6ff25af1a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-llama3:70b-v2.9-q4_0", + "name": "dolphin-llama3:70b-v2.9-q4_0", + "description": "Dolphin 2.9 is a new model with 8B and 70B sizes by Eric Hartford based on Llama 3 that has a variety of instruction, conversational, and coding skills.", + "size": "40GB", + "digest": "39cf3e48a702", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-llama3:70b-v2.9-q4_1", + "name": "dolphin-llama3:70b-v2.9-q4_1", + "description": "Dolphin 2.9 is a new model with 8B and 70B sizes by Eric Hartford based on Llama 3 that has a variety of instruction, conversational, and coding skills.", + "size": "44GB", + "digest": "be3648d90cec", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-llama3:70b-v2.9-q4_K_M", + "name": "dolphin-llama3:70b-v2.9-q4_K_M", + "description": "Dolphin 2.9 is a new model with 8B and 70B sizes by Eric Hartford based on Llama 3 that has a variety of instruction, conversational, and coding skills.", + "size": "43GB", + "digest": "ff66659bf60a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-llama3:70b-v2.9-q4_K_S", + "name": "dolphin-llama3:70b-v2.9-q4_K_S", + "description": "Dolphin 2.9 is a new model with 8B and 70B sizes by Eric Hartford based on Llama 3 that has a variety of instruction, conversational, and coding skills.", + "size": "40GB", + "digest": "08f394a4228a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-llama3:70b-v2.9-q5_0", + "name": "dolphin-llama3:70b-v2.9-q5_0", + "description": "Dolphin 2.9 is a new model with 8B and 70B sizes by Eric Hartford based on Llama 3 that has a variety of instruction, conversational, and coding skills.", + "size": "49GB", + "digest": "1be4a47c2130", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-llama3:70b-v2.9-q5_1", + "name": "dolphin-llama3:70b-v2.9-q5_1", + "description": "Dolphin 2.9 is a new model with 8B and 70B sizes by Eric Hartford based on Llama 3 that has a variety of instruction, conversational, and coding skills.", + "size": "53GB", + "digest": "3c0bd6cd54b5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-llama3:70b-v2.9-q5_K_M", + "name": "dolphin-llama3:70b-v2.9-q5_K_M", + "description": "Dolphin 2.9 is a new model with 8B and 70B sizes by Eric Hartford based on Llama 3 that has a variety of instruction, conversational, and coding skills.", + "size": "50GB", + "digest": "c76eccdaa1d4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-llama3:70b-v2.9-q5_K_S", + "name": "dolphin-llama3:70b-v2.9-q5_K_S", + "description": "Dolphin 2.9 is a new model with 8B and 70B sizes by Eric Hartford based on Llama 3 that has a variety of instruction, conversational, and coding skills.", + "size": "49GB", + "digest": "c7f5f7f98fbf", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-llama3:70b-v2.9-q6_K", + "name": "dolphin-llama3:70b-v2.9-q6_K", + "description": "Dolphin 2.9 is a new model with 8B and 70B sizes by Eric Hartford based on Llama 3 that has a variety of instruction, conversational, and coding skills.", + "size": "58GB", + "digest": "e495c04eaf8d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-llama3:70b-v2.9-q8_0", + "name": "dolphin-llama3:70b-v2.9-q8_0", + "description": "Dolphin 2.9 is a new model with 8B and 70B sizes by Eric Hartford based on Llama 3 that has a variety of instruction, conversational, and coding skills.", + "size": "75GB", + "digest": "f7ec3871505b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-llama3:8b-256k", + "name": "dolphin-llama3:8b-256k", + "description": "Dolphin 2.9 is a new model with 8B and 70B sizes by Eric Hartford based on Llama 3 that has a variety of instruction, conversational, and coding skills.", + "size": "4.7GB", + "digest": "9f4257eb39a8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-llama3:8b-256k-v2.9", + "name": "dolphin-llama3:8b-256k-v2.9", + "description": "Dolphin 2.9 is a new model with 8B and 70B sizes by Eric Hartford based on Llama 3 that has a variety of instruction, conversational, and coding skills.", + "size": "4.7GB", + "digest": "9f4257eb39a8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-llama3:8b-256k-v2.9-fp16", + "name": "dolphin-llama3:8b-256k-v2.9-fp16", + "description": "Dolphin 2.9 is a new model with 8B and 70B sizes by Eric Hartford based on Llama 3 that has a variety of instruction, conversational, and coding skills.", + "size": "16GB", + "digest": "04cb4b5c5b37", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-llama3:8b-256k-v2.9-q2_K", + "name": "dolphin-llama3:8b-256k-v2.9-q2_K", + "description": "Dolphin 2.9 is a new model with 8B and 70B sizes by Eric Hartford based on Llama 3 that has a variety of instruction, conversational, and coding skills.", + "size": "3.2GB", + "digest": "7bb9753b38d1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-llama3:8b-256k-v2.9-q3_K_L", + "name": "dolphin-llama3:8b-256k-v2.9-q3_K_L", + "description": "Dolphin 2.9 is a new model with 8B and 70B sizes by Eric Hartford based on Llama 3 that has a variety of instruction, conversational, and coding skills.", + "size": "4.3GB", + "digest": "fa30375d9ef6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-llama3:8b-256k-v2.9-q3_K_M", + "name": "dolphin-llama3:8b-256k-v2.9-q3_K_M", + "description": "Dolphin 2.9 is a new model with 8B and 70B sizes by Eric Hartford based on Llama 3 that has a variety of instruction, conversational, and coding skills.", + "size": "4.0GB", + "digest": "23812b6dc8d1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-llama3:8b-256k-v2.9-q3_K_S", + "name": "dolphin-llama3:8b-256k-v2.9-q3_K_S", + "description": "Dolphin 2.9 is a new model with 8B and 70B sizes by Eric Hartford based on Llama 3 that has a variety of instruction, conversational, and coding skills.", + "size": "3.7GB", + "digest": "9a8408761417", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-llama3:8b-256k-v2.9-q4_0", + "name": "dolphin-llama3:8b-256k-v2.9-q4_0", + "description": "Dolphin 2.9 is a new model with 8B and 70B sizes by Eric Hartford based on Llama 3 that has a variety of instruction, conversational, and coding skills.", + "size": "4.7GB", + "digest": "9f4257eb39a8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-llama3:8b-256k-v2.9-q4_1", + "name": "dolphin-llama3:8b-256k-v2.9-q4_1", + "description": "Dolphin 2.9 is a new model with 8B and 70B sizes by Eric Hartford based on Llama 3 that has a variety of instruction, conversational, and coding skills.", + "size": "5.1GB", + "digest": "e5ff685455da", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-llama3:8b-256k-v2.9-q4_K_M", + "name": "dolphin-llama3:8b-256k-v2.9-q4_K_M", + "description": "Dolphin 2.9 is a new model with 8B and 70B sizes by Eric Hartford based on Llama 3 that has a variety of instruction, conversational, and coding skills.", + "size": "4.9GB", + "digest": "ff5463167239", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-llama3:8b-256k-v2.9-q4_K_S", + "name": "dolphin-llama3:8b-256k-v2.9-q4_K_S", + "description": "Dolphin 2.9 is a new model with 8B and 70B sizes by Eric Hartford based on Llama 3 that has a variety of instruction, conversational, and coding skills.", + "size": "4.7GB", + "digest": "839a1d8b60be", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-llama3:8b-256k-v2.9-q5_0", + "name": "dolphin-llama3:8b-256k-v2.9-q5_0", + "description": "Dolphin 2.9 is a new model with 8B and 70B sizes by Eric Hartford based on Llama 3 that has a variety of instruction, conversational, and coding skills.", + "size": "5.6GB", + "digest": "18232d2131be", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-llama3:8b-256k-v2.9-q5_1", + "name": "dolphin-llama3:8b-256k-v2.9-q5_1", + "description": "Dolphin 2.9 is a new model with 8B and 70B sizes by Eric Hartford based on Llama 3 that has a variety of instruction, conversational, and coding skills.", + "size": "6.1GB", + "digest": "a91e7015a944", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-llama3:8b-256k-v2.9-q5_K_M", + "name": "dolphin-llama3:8b-256k-v2.9-q5_K_M", + "description": "Dolphin 2.9 is a new model with 8B and 70B sizes by Eric Hartford based on Llama 3 that has a variety of instruction, conversational, and coding skills.", + "size": "5.7GB", + "digest": "2e4bb0902c65", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-llama3:8b-256k-v2.9-q5_K_S", + "name": "dolphin-llama3:8b-256k-v2.9-q5_K_S", + "description": "Dolphin 2.9 is a new model with 8B and 70B sizes by Eric Hartford based on Llama 3 that has a variety of instruction, conversational, and coding skills.", + "size": "5.6GB", + "digest": "a609d3f403fa", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-llama3:8b-256k-v2.9-q6_K", + "name": "dolphin-llama3:8b-256k-v2.9-q6_K", + "description": "Dolphin 2.9 is a new model with 8B and 70B sizes by Eric Hartford based on Llama 3 that has a variety of instruction, conversational, and coding skills.", + "size": "6.6GB", + "digest": "7d4b80857cbe", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-llama3:8b-256k-v2.9-q8_0", + "name": "dolphin-llama3:8b-256k-v2.9-q8_0", + "description": "Dolphin 2.9 is a new model with 8B and 70B sizes by Eric Hartford based on Llama 3 that has a variety of instruction, conversational, and coding skills.", + "size": "8.5GB", + "digest": "22435ad7273c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-llama3:8b-v2.9", + "name": "dolphin-llama3:8b-v2.9", + "description": "Dolphin 2.9 is a new model with 8B and 70B sizes by Eric Hartford based on Llama 3 that has a variety of instruction, conversational, and coding skills.", + "size": "4.7GB", + "digest": "613f068e29f8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-llama3:8b-v2.9-fp16", + "name": "dolphin-llama3:8b-v2.9-fp16", + "description": "Dolphin 2.9 is a new model with 8B and 70B sizes by Eric Hartford based on Llama 3 that has a variety of instruction, conversational, and coding skills.", + "size": "16GB", + "digest": "330b7914e4f9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-llama3:8b-v2.9-q2_K", + "name": "dolphin-llama3:8b-v2.9-q2_K", + "description": "Dolphin 2.9 is a new model with 8B and 70B sizes by Eric Hartford based on Llama 3 that has a variety of instruction, conversational, and coding skills.", + "size": "3.2GB", + "digest": "e38c22d1fefc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-llama3:8b-v2.9-q3_K_L", + "name": "dolphin-llama3:8b-v2.9-q3_K_L", + "description": "Dolphin 2.9 is a new model with 8B and 70B sizes by Eric Hartford based on Llama 3 that has a variety of instruction, conversational, and coding skills.", + "size": "4.3GB", + "digest": "d4907340047d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-llama3:8b-v2.9-q3_K_M", + "name": "dolphin-llama3:8b-v2.9-q3_K_M", + "description": "Dolphin 2.9 is a new model with 8B and 70B sizes by Eric Hartford based on Llama 3 that has a variety of instruction, conversational, and coding skills.", + "size": "4.0GB", + "digest": "ffbebe9d9a89", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-llama3:8b-v2.9-q3_K_S", + "name": "dolphin-llama3:8b-v2.9-q3_K_S", + "description": "Dolphin 2.9 is a new model with 8B and 70B sizes by Eric Hartford based on Llama 3 that has a variety of instruction, conversational, and coding skills.", + "size": "3.7GB", + "digest": "4ee167a2b0ba", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-llama3:8b-v2.9-q4_0", + "name": "dolphin-llama3:8b-v2.9-q4_0", + "description": "Dolphin 2.9 is a new model with 8B and 70B sizes by Eric Hartford based on Llama 3 that has a variety of instruction, conversational, and coding skills.", + "size": "4.7GB", + "digest": "613f068e29f8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-llama3:8b-v2.9-q4_1", + "name": "dolphin-llama3:8b-v2.9-q4_1", + "description": "Dolphin 2.9 is a new model with 8B and 70B sizes by Eric Hartford based on Llama 3 that has a variety of instruction, conversational, and coding skills.", + "size": "5.1GB", + "digest": "b91fdd625105", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-llama3:8b-v2.9-q4_K_M", + "name": "dolphin-llama3:8b-v2.9-q4_K_M", + "description": "Dolphin 2.9 is a new model with 8B and 70B sizes by Eric Hartford based on Llama 3 that has a variety of instruction, conversational, and coding skills.", + "size": "4.9GB", + "digest": "48e12807e1dd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-llama3:8b-v2.9-q4_K_S", + "name": "dolphin-llama3:8b-v2.9-q4_K_S", + "description": "Dolphin 2.9 is a new model with 8B and 70B sizes by Eric Hartford based on Llama 3 that has a variety of instruction, conversational, and coding skills.", + "size": "4.7GB", + "digest": "3c68e9f4407e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-llama3:8b-v2.9-q5_0", + "name": "dolphin-llama3:8b-v2.9-q5_0", + "description": "Dolphin 2.9 is a new model with 8B and 70B sizes by Eric Hartford based on Llama 3 that has a variety of instruction, conversational, and coding skills.", + "size": "5.6GB", + "digest": "6f5e6e184fd6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-llama3:8b-v2.9-q5_1", + "name": "dolphin-llama3:8b-v2.9-q5_1", + "description": "Dolphin 2.9 is a new model with 8B and 70B sizes by Eric Hartford based on Llama 3 that has a variety of instruction, conversational, and coding skills.", + "size": "6.1GB", + "digest": "b83616aa2f82", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-llama3:8b-v2.9-q5_K_M", + "name": "dolphin-llama3:8b-v2.9-q5_K_M", + "description": "Dolphin 2.9 is a new model with 8B and 70B sizes by Eric Hartford based on Llama 3 that has a variety of instruction, conversational, and coding skills.", + "size": "5.7GB", + "digest": "ff5532bbdbfd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-llama3:8b-v2.9-q5_K_S", + "name": "dolphin-llama3:8b-v2.9-q5_K_S", + "description": "Dolphin 2.9 is a new model with 8B and 70B sizes by Eric Hartford based on Llama 3 that has a variety of instruction, conversational, and coding skills.", + "size": "5.6GB", + "digest": "9b438222d2e1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-llama3:8b-v2.9-q6_K", + "name": "dolphin-llama3:8b-v2.9-q6_K", + "description": "Dolphin 2.9 is a new model with 8B and 70B sizes by Eric Hartford based on Llama 3 that has a variety of instruction, conversational, and coding skills.", + "size": "6.6GB", + "digest": "d76cc512a4c4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-llama3:8b-v2.9-q8_0", + "name": "dolphin-llama3:8b-v2.9-q8_0", + "description": "Dolphin 2.9 is a new model with 8B and 70B sizes by Eric Hartford based on Llama 3 that has a variety of instruction, conversational, and coding skills.", + "size": "8.5GB", + "digest": "9b6fb904576c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-llama3:v2.9", + "name": "dolphin-llama3:v2.9", + "description": "Dolphin 2.9 is a new model with 8B and 70B sizes by Eric Hartford based on Llama 3 that has a variety of instruction, conversational, and coding skills.", + "size": "4.7GB", + "digest": "613f068e29f8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "command-r", + "name": "command-r", + "description": "Command R is a Large Language Model optimized for conversational interaction and long context tasks.", + "size": "19GB", + "digest": "7d96360d357f", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "command-r:35b", + "name": "command-r:35b", + "description": "Command R is a Large Language Model optimized for conversational interaction and long context tasks.", + "size": "19GB", + "digest": "7d96360d357f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "command-r:35b-08-2024-fp16", + "name": "command-r:35b-08-2024-fp16", + "description": "Command R is a Large Language Model optimized for conversational interaction and long context tasks.", + "size": "65GB", + "digest": "f99d0f0d3644", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "command-r:35b-08-2024-q2_K", + "name": "command-r:35b-08-2024-q2_K", + "description": "Command R is a Large Language Model optimized for conversational interaction and long context tasks.", + "size": "13GB", + "digest": "baa79f31c7db", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "command-r:35b-08-2024-q3_K_L", + "name": "command-r:35b-08-2024-q3_K_L", + "description": "Command R is a Large Language Model optimized for conversational interaction and long context tasks.", + "size": "18GB", + "digest": "7609ccb59aa3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "command-r:35b-08-2024-q3_K_M", + "name": "command-r:35b-08-2024-q3_K_M", + "description": "Command R is a Large Language Model optimized for conversational interaction and long context tasks.", + "size": "16GB", + "digest": "311c0b29be9c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "command-r:35b-08-2024-q3_K_S", + "name": "command-r:35b-08-2024-q3_K_S", + "description": "Command R is a Large Language Model optimized for conversational interaction and long context tasks.", + "size": "15GB", + "digest": "a71cdc6dbc33", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "command-r:35b-08-2024-q4_0", + "name": "command-r:35b-08-2024-q4_0", + "description": "Command R is a Large Language Model optimized for conversational interaction and long context tasks.", + "size": "19GB", + "digest": "7d96360d357f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "command-r:35b-08-2024-q4_1", + "name": "command-r:35b-08-2024-q4_1", + "description": "Command R is a Large Language Model optimized for conversational interaction and long context tasks.", + "size": "21GB", + "digest": "c9994fa85c15", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "command-r:35b-08-2024-q4_K_M", + "name": "command-r:35b-08-2024-q4_K_M", + "description": "Command R is a Large Language Model optimized for conversational interaction and long context tasks.", + "size": "20GB", + "digest": "376304b5a505", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "command-r:35b-08-2024-q4_K_S", + "name": "command-r:35b-08-2024-q4_K_S", + "description": "Command R is a Large Language Model optimized for conversational interaction and long context tasks.", + "size": "19GB", + "digest": "e746a62b5017", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "command-r:35b-08-2024-q5_0", + "name": "command-r:35b-08-2024-q5_0", + "description": "Command R is a Large Language Model optimized for conversational interaction and long context tasks.", + "size": "22GB", + "digest": "730adbb80701", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "command-r:35b-08-2024-q5_1", + "name": "command-r:35b-08-2024-q5_1", + "description": "Command R is a Large Language Model optimized for conversational interaction and long context tasks.", + "size": "24GB", + "digest": "a2f81b6b5529", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "command-r:35b-08-2024-q5_K_M", + "name": "command-r:35b-08-2024-q5_K_M", + "description": "Command R is a Large Language Model optimized for conversational interaction and long context tasks.", + "size": "23GB", + "digest": "e9e25af9b046", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "command-r:35b-08-2024-q5_K_S", + "name": "command-r:35b-08-2024-q5_K_S", + "description": "Command R is a Large Language Model optimized for conversational interaction and long context tasks.", + "size": "22GB", + "digest": "faa92437a927", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "command-r:35b-08-2024-q6_K", + "name": "command-r:35b-08-2024-q6_K", + "description": "Command R is a Large Language Model optimized for conversational interaction and long context tasks.", + "size": "27GB", + "digest": "7a416e1e1126", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "command-r:35b-08-2024-q8_0", + "name": "command-r:35b-08-2024-q8_0", + "description": "Command R is a Large Language Model optimized for conversational interaction and long context tasks.", + "size": "34GB", + "digest": "1b245c03674e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "command-r:35b-v0.1-fp16", + "name": "command-r:35b-v0.1-fp16", + "description": "Command R is a Large Language Model optimized for conversational interaction and long context tasks.", + "size": "70GB", + "digest": "a58199201f46", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "command-r:35b-v0.1-q2_K", + "name": "command-r:35b-v0.1-q2_K", + "description": "Command R is a Large Language Model optimized for conversational interaction and long context tasks.", + "size": "14GB", + "digest": "ebf190a244cd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "command-r:35b-v0.1-q3_K_L", + "name": "command-r:35b-v0.1-q3_K_L", + "description": "Command R is a Large Language Model optimized for conversational interaction and long context tasks.", + "size": "19GB", + "digest": "ca2d24d0cfa9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "command-r:35b-v0.1-q3_K_M", + "name": "command-r:35b-v0.1-q3_K_M", + "description": "Command R is a Large Language Model optimized for conversational interaction and long context tasks.", + "size": "18GB", + "digest": "07ff6eb590d7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "command-r:35b-v0.1-q3_K_S", + "name": "command-r:35b-v0.1-q3_K_S", + "description": "Command R is a Large Language Model optimized for conversational interaction and long context tasks.", + "size": "16GB", + "digest": "5d0269a511b3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "command-r:35b-v0.1-q4_0", + "name": "command-r:35b-v0.1-q4_0", + "description": "Command R is a Large Language Model optimized for conversational interaction and long context tasks.", + "size": "20GB", + "digest": "b8cdfff0263c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "command-r:35b-v0.1-q4_1", + "name": "command-r:35b-v0.1-q4_1", + "description": "Command R is a Large Language Model optimized for conversational interaction and long context tasks.", + "size": "22GB", + "digest": "e8c0e9e189a9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "command-r:35b-v0.1-q4_K_M", + "name": "command-r:35b-v0.1-q4_K_M", + "description": "Command R is a Large Language Model optimized for conversational interaction and long context tasks.", + "size": "22GB", + "digest": "ed35c5ee157d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "command-r:35b-v0.1-q4_K_S", + "name": "command-r:35b-v0.1-q4_K_S", + "description": "Command R is a Large Language Model optimized for conversational interaction and long context tasks.", + "size": "20GB", + "digest": "c3c8430e134d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "command-r:35b-v0.1-q5_1", + "name": "command-r:35b-v0.1-q5_1", + "description": "Command R is a Large Language Model optimized for conversational interaction and long context tasks.", + "size": "26GB", + "digest": "ce4cf00ea57e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "command-r:35b-v0.1-q5_K_M", + "name": "command-r:35b-v0.1-q5_K_M", + "description": "Command R is a Large Language Model optimized for conversational interaction and long context tasks.", + "size": "25GB", + "digest": "eb97e23b2d12", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "command-r:35b-v0.1-q5_K_S", + "name": "command-r:35b-v0.1-q5_K_S", + "description": "Command R is a Large Language Model optimized for conversational interaction and long context tasks.", + "size": "24GB", + "digest": "92a26776ef29", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "command-r:35b-v0.1-q6_K", + "name": "command-r:35b-v0.1-q6_K", + "description": "Command R is a Large Language Model optimized for conversational interaction and long context tasks.", + "size": "29GB", + "digest": "c46e949ec735", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "command-r:35b-v0.1-q8_0", + "name": "command-r:35b-v0.1-q8_0", + "description": "Command R is a Large Language Model optimized for conversational interaction and long context tasks.", + "size": "37GB", + "digest": "88d10cdbc6e7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "command-r:v0.1", + "name": "command-r:v0.1", + "description": "Command R is a Large Language Model optimized for conversational interaction and long context tasks.", + "size": "20GB", + "digest": "b8cdfff0263c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini", + "name": "orca-mini", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "2.0GB", + "digest": "2dbd9f439647", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "orca-mini:3b", + "name": "orca-mini:3b", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "2.0GB", + "digest": "2dbd9f439647", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:7b", + "name": "orca-mini:7b", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "3.8GB", + "digest": "9c9618e2e895", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:13b", + "name": "orca-mini:13b", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "7.4GB", + "digest": "1b4877c90807", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:70b", + "name": "orca-mini:70b", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "39GB", + "digest": "f184c0860491", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:13b-fp16", + "name": "orca-mini:13b-fp16", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "26GB", + "digest": "ff60f06ce009", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:13b-q2_K", + "name": "orca-mini:13b-q2_K", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "5.4GB", + "digest": "13923842f12d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:13b-q3_K_L", + "name": "orca-mini:13b-q3_K_L", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "6.9GB", + "digest": "93a769d0dbc0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:13b-q3_K_M", + "name": "orca-mini:13b-q3_K_M", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "6.3GB", + "digest": "1cf7f5e0163b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:13b-q3_K_S", + "name": "orca-mini:13b-q3_K_S", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "5.7GB", + "digest": "8e57088234d8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:13b-q4_0", + "name": "orca-mini:13b-q4_0", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "7.4GB", + "digest": "d19fe19c0624", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:13b-q4_1", + "name": "orca-mini:13b-q4_1", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "8.2GB", + "digest": "06f127c8a31d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:13b-q4_K_M", + "name": "orca-mini:13b-q4_K_M", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "7.9GB", + "digest": "b13d43a9ea63", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:13b-q4_K_S", + "name": "orca-mini:13b-q4_K_S", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "7.4GB", + "digest": "0b621a2c68ae", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:13b-q5_0", + "name": "orca-mini:13b-q5_0", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "9.0GB", + "digest": "d345f07d4365", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:13b-q5_1", + "name": "orca-mini:13b-q5_1", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "9.8GB", + "digest": "4c782fea6ce4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:13b-q5_K_M", + "name": "orca-mini:13b-q5_K_M", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "9.2GB", + "digest": "9880bed763a2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:13b-q5_K_S", + "name": "orca-mini:13b-q5_K_S", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "9.0GB", + "digest": "6531b87ef17f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:13b-q6_K", + "name": "orca-mini:13b-q6_K", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "11GB", + "digest": "c3ec450a59ec", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:13b-q8_0", + "name": "orca-mini:13b-q8_0", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "14GB", + "digest": "bab5d684679e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:13b-v2-fp16", + "name": "orca-mini:13b-v2-fp16", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "26GB", + "digest": "5fc4f577304e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:13b-v2-q2_K", + "name": "orca-mini:13b-v2-q2_K", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "5.4GB", + "digest": "77cd66457900", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:13b-v2-q3_K_L", + "name": "orca-mini:13b-v2-q3_K_L", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "6.9GB", + "digest": "039cea827fd3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:13b-v2-q3_K_M", + "name": "orca-mini:13b-v2-q3_K_M", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "6.3GB", + "digest": "ced974fd937d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:13b-v2-q3_K_S", + "name": "orca-mini:13b-v2-q3_K_S", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "5.7GB", + "digest": "e87e20ccd984", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:13b-v2-q4_0", + "name": "orca-mini:13b-v2-q4_0", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "7.4GB", + "digest": "3e438b472999", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:13b-v2-q4_1", + "name": "orca-mini:13b-v2-q4_1", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "8.2GB", + "digest": "4ad005e5c90a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:13b-v2-q4_K_M", + "name": "orca-mini:13b-v2-q4_K_M", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "7.9GB", + "digest": "0c79490ff43d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:13b-v2-q4_K_S", + "name": "orca-mini:13b-v2-q4_K_S", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "7.4GB", + "digest": "579e615a7534", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:13b-v2-q5_0", + "name": "orca-mini:13b-v2-q5_0", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "9.0GB", + "digest": "988d2d90b3b0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:13b-v2-q5_1", + "name": "orca-mini:13b-v2-q5_1", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "9.8GB", + "digest": "b293ce5356ed", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:13b-v2-q5_K_M", + "name": "orca-mini:13b-v2-q5_K_M", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "9.2GB", + "digest": "402e1a70ed67", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:13b-v2-q5_K_S", + "name": "orca-mini:13b-v2-q5_K_S", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "9.0GB", + "digest": "f4332ae13e4a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:13b-v2-q6_K", + "name": "orca-mini:13b-v2-q6_K", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "11GB", + "digest": "12cfa06b9762", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:13b-v2-q8_0", + "name": "orca-mini:13b-v2-q8_0", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "14GB", + "digest": "17a9f01a8364", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:13b-v3", + "name": "orca-mini:13b-v3", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "7.4GB", + "digest": "1b4877c90807", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:13b-v3-fp16", + "name": "orca-mini:13b-v3-fp16", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "26GB", + "digest": "80bfde71168d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:13b-v3-q2_K", + "name": "orca-mini:13b-v3-q2_K", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "5.4GB", + "digest": "18c6529c1b31", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:13b-v3-q3_K_L", + "name": "orca-mini:13b-v3-q3_K_L", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "6.9GB", + "digest": "1e0ea2702693", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:13b-v3-q3_K_M", + "name": "orca-mini:13b-v3-q3_K_M", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "6.3GB", + "digest": "cd15b977684b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:13b-v3-q3_K_S", + "name": "orca-mini:13b-v3-q3_K_S", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "5.7GB", + "digest": "fb5fe5934d97", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:13b-v3-q4_0", + "name": "orca-mini:13b-v3-q4_0", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "7.4GB", + "digest": "1b4877c90807", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:13b-v3-q4_1", + "name": "orca-mini:13b-v3-q4_1", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "8.2GB", + "digest": "bcffade49332", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:13b-v3-q4_K_M", + "name": "orca-mini:13b-v3-q4_K_M", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "7.9GB", + "digest": "47eb784e0b94", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:13b-v3-q4_K_S", + "name": "orca-mini:13b-v3-q4_K_S", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "7.4GB", + "digest": "e71486a020f5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:13b-v3-q5_0", + "name": "orca-mini:13b-v3-q5_0", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "9.0GB", + "digest": "4d0b6a1fe56b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:13b-v3-q5_1", + "name": "orca-mini:13b-v3-q5_1", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "9.8GB", + "digest": "bc17480cecbd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:13b-v3-q5_K_M", + "name": "orca-mini:13b-v3-q5_K_M", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "9.2GB", + "digest": "e0062a6345f2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:13b-v3-q5_K_S", + "name": "orca-mini:13b-v3-q5_K_S", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "9.0GB", + "digest": "25597b7203a0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:13b-v3-q6_K", + "name": "orca-mini:13b-v3-q6_K", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "11GB", + "digest": "c67733d5f521", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:13b-v3-q8_0", + "name": "orca-mini:13b-v3-q8_0", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "14GB", + "digest": "22202d7bf265", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:3b-fp16", + "name": "orca-mini:3b-fp16", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "6.9GB", + "digest": "f85802731409", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:3b-q4_0", + "name": "orca-mini:3b-q4_0", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "2.0GB", + "digest": "2dbd9f439647", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:3b-q4_1", + "name": "orca-mini:3b-q4_1", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "2.2GB", + "digest": "baaaf6d7885b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:3b-q5_0", + "name": "orca-mini:3b-q5_0", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "2.4GB", + "digest": "6ab5f5489601", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:3b-q5_1", + "name": "orca-mini:3b-q5_1", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "2.6GB", + "digest": "4ad394056d0b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:3b-q8_0", + "name": "orca-mini:3b-q8_0", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "3.6GB", + "digest": "e31654abca22", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:70b-v3", + "name": "orca-mini:70b-v3", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "39GB", + "digest": "f184c0860491", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:70b-v3-fp16", + "name": "orca-mini:70b-v3-fp16", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "138GB", + "digest": "423e70feb86a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:70b-v3-q2_K", + "name": "orca-mini:70b-v3-q2_K", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "29GB", + "digest": "28e06621edf0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:70b-v3-q3_K_L", + "name": "orca-mini:70b-v3-q3_K_L", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "36GB", + "digest": "f7b928c050eb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:70b-v3-q3_K_M", + "name": "orca-mini:70b-v3-q3_K_M", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "33GB", + "digest": "1d12e3416527", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:70b-v3-q3_K_S", + "name": "orca-mini:70b-v3-q3_K_S", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "30GB", + "digest": "5df07f064756", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:70b-v3-q4_0", + "name": "orca-mini:70b-v3-q4_0", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "39GB", + "digest": "f184c0860491", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:70b-v3-q4_1", + "name": "orca-mini:70b-v3-q4_1", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "43GB", + "digest": "210abd8a7b7a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:70b-v3-q4_K_M", + "name": "orca-mini:70b-v3-q4_K_M", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "41GB", + "digest": "89313d84c131", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:70b-v3-q4_K_S", + "name": "orca-mini:70b-v3-q4_K_S", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "39GB", + "digest": "7f5fe7119c64", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:70b-v3-q5_0", + "name": "orca-mini:70b-v3-q5_0", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "47GB", + "digest": "0873d4fc8a05", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:70b-v3-q5_1", + "name": "orca-mini:70b-v3-q5_1", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "52GB", + "digest": "614a4b7f8c2d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:70b-v3-q5_K_M", + "name": "orca-mini:70b-v3-q5_K_M", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "49GB", + "digest": "f6557e9aa182", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:70b-v3-q5_K_S", + "name": "orca-mini:70b-v3-q5_K_S", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "47GB", + "digest": "de93e5b2d85f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:70b-v3-q6_K", + "name": "orca-mini:70b-v3-q6_K", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "57GB", + "digest": "cfdca07d69a0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:70b-v3-q8_0", + "name": "orca-mini:70b-v3-q8_0", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "73GB", + "digest": "8f078884138d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:7b-fp16", + "name": "orca-mini:7b-fp16", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "13GB", + "digest": "8b7dcffd0a8a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:7b-q2_K", + "name": "orca-mini:7b-q2_K", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "2.8GB", + "digest": "629f61a16f8d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:7b-q3_K_L", + "name": "orca-mini:7b-q3_K_L", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "3.6GB", + "digest": "678f10ad8ea6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:7b-q3_K_M", + "name": "orca-mini:7b-q3_K_M", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "3.3GB", + "digest": "6f68c8ff61cc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:7b-q3_K_S", + "name": "orca-mini:7b-q3_K_S", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "2.9GB", + "digest": "32d73761c966", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:7b-q4_0", + "name": "orca-mini:7b-q4_0", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "3.8GB", + "digest": "52f6f01e3ce0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:7b-q4_1", + "name": "orca-mini:7b-q4_1", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "4.2GB", + "digest": "a8d2800046a7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:7b-q4_K_M", + "name": "orca-mini:7b-q4_K_M", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "4.1GB", + "digest": "913e18f06270", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:7b-q4_K_S", + "name": "orca-mini:7b-q4_K_S", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "3.9GB", + "digest": "ffb8dddf6fab", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:7b-q5_0", + "name": "orca-mini:7b-q5_0", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "4.7GB", + "digest": "4ab6288e4914", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:7b-q5_1", + "name": "orca-mini:7b-q5_1", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "5.1GB", + "digest": "2d46758c14de", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:7b-q5_K_M", + "name": "orca-mini:7b-q5_K_M", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "4.8GB", + "digest": "c7ba573e08a3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:7b-q5_K_S", + "name": "orca-mini:7b-q5_K_S", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "4.7GB", + "digest": "3817a43d9eba", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:7b-q6_K", + "name": "orca-mini:7b-q6_K", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "5.5GB", + "digest": "637ee36ed8eb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:7b-q8_0", + "name": "orca-mini:7b-q8_0", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "7.2GB", + "digest": "51fea4a8a2ce", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:7b-v2-fp16", + "name": "orca-mini:7b-v2-fp16", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "13GB", + "digest": "1a716fc27577", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:7b-v2-q2_K", + "name": "orca-mini:7b-v2-q2_K", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "2.8GB", + "digest": "cf92e423fb3c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:7b-v2-q3_K_L", + "name": "orca-mini:7b-v2-q3_K_L", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "3.6GB", + "digest": "07065b6e4ff7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:7b-v2-q3_K_M", + "name": "orca-mini:7b-v2-q3_K_M", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "3.3GB", + "digest": "2b42986f156b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:7b-v2-q3_K_S", + "name": "orca-mini:7b-v2-q3_K_S", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "2.9GB", + "digest": "8fa2889ecb51", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:7b-v2-q4_0", + "name": "orca-mini:7b-v2-q4_0", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "3.8GB", + "digest": "db096cc7b3f9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:7b-v2-q4_1", + "name": "orca-mini:7b-v2-q4_1", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "4.2GB", + "digest": "aee6823a849a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:7b-v2-q4_K_M", + "name": "orca-mini:7b-v2-q4_K_M", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "4.1GB", + "digest": "eb586ac4d97f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:7b-v2-q4_K_S", + "name": "orca-mini:7b-v2-q4_K_S", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "3.9GB", + "digest": "7ed973ab6559", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:7b-v2-q5_0", + "name": "orca-mini:7b-v2-q5_0", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "4.7GB", + "digest": "2c7a2952ffe9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:7b-v2-q5_1", + "name": "orca-mini:7b-v2-q5_1", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "5.1GB", + "digest": "e9d24fc8a9ee", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:7b-v2-q5_K_M", + "name": "orca-mini:7b-v2-q5_K_M", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "4.8GB", + "digest": "3d950d4864ea", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:7b-v2-q5_K_S", + "name": "orca-mini:7b-v2-q5_K_S", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "4.7GB", + "digest": "e38ccaaaed8a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:7b-v2-q6_K", + "name": "orca-mini:7b-v2-q6_K", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "5.5GB", + "digest": "d55eb108b6d2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:7b-v2-q8_0", + "name": "orca-mini:7b-v2-q8_0", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "7.2GB", + "digest": "755b6f0925e9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:7b-v3", + "name": "orca-mini:7b-v3", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "3.8GB", + "digest": "9c9618e2e895", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:7b-v3-fp16", + "name": "orca-mini:7b-v3-fp16", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "13GB", + "digest": "089339690b0a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:7b-v3-q2_K", + "name": "orca-mini:7b-v3-q2_K", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "2.8GB", + "digest": "1b17d4503dd9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:7b-v3-q3_K_L", + "name": "orca-mini:7b-v3-q3_K_L", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "3.6GB", + "digest": "0c6a46e8fc6d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:7b-v3-q3_K_M", + "name": "orca-mini:7b-v3-q3_K_M", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "3.3GB", + "digest": "5a6e8b1fe604", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:7b-v3-q3_K_S", + "name": "orca-mini:7b-v3-q3_K_S", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "2.9GB", + "digest": "f876ae8b69c2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:7b-v3-q4_0", + "name": "orca-mini:7b-v3-q4_0", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "3.8GB", + "digest": "9c9618e2e895", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:7b-v3-q4_1", + "name": "orca-mini:7b-v3-q4_1", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "4.2GB", + "digest": "85670bb801a0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:7b-v3-q4_K_M", + "name": "orca-mini:7b-v3-q4_K_M", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "4.1GB", + "digest": "2c472475e892", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:7b-v3-q4_K_S", + "name": "orca-mini:7b-v3-q4_K_S", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "3.9GB", + "digest": "df1ac2dbb3eb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:7b-v3-q5_0", + "name": "orca-mini:7b-v3-q5_0", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "4.7GB", + "digest": "98d33166886d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:7b-v3-q5_1", + "name": "orca-mini:7b-v3-q5_1", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "5.1GB", + "digest": "c144d27c6729", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:7b-v3-q5_K_M", + "name": "orca-mini:7b-v3-q5_K_M", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "4.8GB", + "digest": "6518fa5b7aed", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:7b-v3-q5_K_S", + "name": "orca-mini:7b-v3-q5_K_S", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "4.7GB", + "digest": "806eac42db69", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:7b-v3-q6_K", + "name": "orca-mini:7b-v3-q6_K", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "5.5GB", + "digest": "702e61f3cc0a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca-mini:7b-v3-q8_0", + "name": "orca-mini:7b-v3-q8_0", + "description": "A general-purpose model ranging from 3 billion parameters to 70 billion, suitable for entry-level hardware.", + "size": "7.2GB", + "digest": "7707879d3793", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi", + "name": "yi", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "3.5GB", + "digest": "a7f031bb846f", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "yi:6b", + "name": "yi:6b", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "3.5GB", + "digest": "a7f031bb846f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:9b", + "name": "yi:9b", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "5.0GB", + "digest": "3af70141e8eb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b", + "name": "yi:34b", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "19GB", + "digest": "ff94bc7c1b7a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-chat", + "name": "yi:34b-chat", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "19GB", + "digest": "ff94bc7c1b7a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-chat-fp16", + "name": "yi:34b-chat-fp16", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "69GB", + "digest": "20d94b0206f1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-chat-q2_K", + "name": "yi:34b-chat-q2_K", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "15GB", + "digest": "96e358a2f46a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-chat-q3_K_L", + "name": "yi:34b-chat-q3_K_L", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "18GB", + "digest": "9eb2e9e988e0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-chat-q3_K_M", + "name": "yi:34b-chat-q3_K_M", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "17GB", + "digest": "8feb35377171", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-chat-q3_K_S", + "name": "yi:34b-chat-q3_K_S", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "15GB", + "digest": "b5e4b2b0a105", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-chat-q4_0", + "name": "yi:34b-chat-q4_0", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "19GB", + "digest": "5f8365d57cb8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-chat-q4_1", + "name": "yi:34b-chat-q4_1", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "22GB", + "digest": "13e1fa7fbd98", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-chat-q4_K_M", + "name": "yi:34b-chat-q4_K_M", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "21GB", + "digest": "a045fcc68517", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-chat-q4_K_S", + "name": "yi:34b-chat-q4_K_S", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "20GB", + "digest": "479b1bbae7cb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-chat-q5_0", + "name": "yi:34b-chat-q5_0", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "24GB", + "digest": "e38a1a4a7408", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-chat-q5_1", + "name": "yi:34b-chat-q5_1", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "26GB", + "digest": "456f507b2896", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-chat-q5_K_M", + "name": "yi:34b-chat-q5_K_M", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "24GB", + "digest": "56f40aebe6c6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-chat-q5_K_S", + "name": "yi:34b-chat-q5_K_S", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "24GB", + "digest": "9a34430f074b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-chat-q6_K", + "name": "yi:34b-chat-q6_K", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "28GB", + "digest": "04b90abb6c3f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-chat-q8_0", + "name": "yi:34b-chat-q8_0", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "37GB", + "digest": "7dd8011e29f0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-chat-v1.5-fp16", + "name": "yi:34b-chat-v1.5-fp16", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "69GB", + "digest": "4cb405bc794e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-chat-v1.5-q2_K", + "name": "yi:34b-chat-v1.5-q2_K", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "13GB", + "digest": "db8de093a06e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-chat-v1.5-q3_K_L", + "name": "yi:34b-chat-v1.5-q3_K_L", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "18GB", + "digest": "7bad01e0793c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-chat-v1.5-q3_K_M", + "name": "yi:34b-chat-v1.5-q3_K_M", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "17GB", + "digest": "f1af17c58bee", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-chat-v1.5-q3_K_S", + "name": "yi:34b-chat-v1.5-q3_K_S", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "15GB", + "digest": "4a7b9b04a6ed", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-chat-v1.5-q4_0", + "name": "yi:34b-chat-v1.5-q4_0", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "19GB", + "digest": "ff94bc7c1b7a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-chat-v1.5-q4_1", + "name": "yi:34b-chat-v1.5-q4_1", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "22GB", + "digest": "6e3ea94c8824", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-chat-v1.5-q4_K_M", + "name": "yi:34b-chat-v1.5-q4_K_M", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "21GB", + "digest": "98da445b370f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-chat-v1.5-q4_K_S", + "name": "yi:34b-chat-v1.5-q4_K_S", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "20GB", + "digest": "143a38c9e5ea", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-chat-v1.5-q5_0", + "name": "yi:34b-chat-v1.5-q5_0", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "24GB", + "digest": "8f04ff4e5698", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-chat-v1.5-q5_1", + "name": "yi:34b-chat-v1.5-q5_1", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "26GB", + "digest": "5a4978c5d0d4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-chat-v1.5-q5_K_M", + "name": "yi:34b-chat-v1.5-q5_K_M", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "24GB", + "digest": "b14d4eb1e48d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-chat-v1.5-q5_K_S", + "name": "yi:34b-chat-v1.5-q5_K_S", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "24GB", + "digest": "b7bdd510d53c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-chat-v1.5-q6_K", + "name": "yi:34b-chat-v1.5-q6_K", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "28GB", + "digest": "fcb33da0d99f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-chat-v1.5-q8_0", + "name": "yi:34b-chat-v1.5-q8_0", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "37GB", + "digest": "a9804f4284c3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-q2_K", + "name": "yi:34b-q2_K", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "15GB", + "digest": "0a190488d626", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-q3_K_L", + "name": "yi:34b-q3_K_L", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "18GB", + "digest": "c7f2fe92f7a9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-q3_K_M", + "name": "yi:34b-q3_K_M", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "17GB", + "digest": "2f68ef2afd75", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-q3_K_S", + "name": "yi:34b-q3_K_S", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "15GB", + "digest": "ae26123da872", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-q4_0", + "name": "yi:34b-q4_0", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "19GB", + "digest": "e7a54d9bf3be", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-q4_1", + "name": "yi:34b-q4_1", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "22GB", + "digest": "1d230c36859c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-q4_K_M", + "name": "yi:34b-q4_K_M", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "21GB", + "digest": "125393b6f6e2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-q4_K_S", + "name": "yi:34b-q4_K_S", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "20GB", + "digest": "db38b4448980", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-q5_0", + "name": "yi:34b-q5_0", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "24GB", + "digest": "e870a2d12776", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-q5_1", + "name": "yi:34b-q5_1", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "26GB", + "digest": "768fa12ab6de", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-q5_K_S", + "name": "yi:34b-q5_K_S", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "24GB", + "digest": "b0f35aa09919", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-q6_K", + "name": "yi:34b-q6_K", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "28GB", + "digest": "808914bbe73e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-v1.5", + "name": "yi:34b-v1.5", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "19GB", + "digest": "ff94bc7c1b7a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-v1.5-fp16", + "name": "yi:34b-v1.5-fp16", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "69GB", + "digest": "2d220d53abc6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-v1.5-q2_K", + "name": "yi:34b-v1.5-q2_K", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "13GB", + "digest": "249b3d8000dc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-v1.5-q3_K_L", + "name": "yi:34b-v1.5-q3_K_L", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "18GB", + "digest": "05ac502eb29f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-v1.5-q3_K_M", + "name": "yi:34b-v1.5-q3_K_M", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "17GB", + "digest": "d145b2e13371", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-v1.5-q3_K_S", + "name": "yi:34b-v1.5-q3_K_S", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "15GB", + "digest": "4e16e50aa7c7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-v1.5-q4_0", + "name": "yi:34b-v1.5-q4_0", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "19GB", + "digest": "3d3239f97264", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-v1.5-q4_1", + "name": "yi:34b-v1.5-q4_1", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "22GB", + "digest": "68cdd7e7479c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-v1.5-q4_K_M", + "name": "yi:34b-v1.5-q4_K_M", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "21GB", + "digest": "bcac50cbd4f6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-v1.5-q4_K_S", + "name": "yi:34b-v1.5-q4_K_S", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "20GB", + "digest": "8c4607b0bcf2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-v1.5-q5_0", + "name": "yi:34b-v1.5-q5_0", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "24GB", + "digest": "1a9e4fb947b6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-v1.5-q5_1", + "name": "yi:34b-v1.5-q5_1", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "26GB", + "digest": "094f5399500e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-v1.5-q5_K_M", + "name": "yi:34b-v1.5-q5_K_M", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "24GB", + "digest": "371b5e0314f6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-v1.5-q5_K_S", + "name": "yi:34b-v1.5-q5_K_S", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "24GB", + "digest": "bae0ce053e47", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-v1.5-q6_K", + "name": "yi:34b-v1.5-q6_K", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "28GB", + "digest": "64d29df74b0a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:34b-v1.5-q8_0", + "name": "yi:34b-v1.5-q8_0", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "37GB", + "digest": "900bbe549017", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-200k", + "name": "yi:6b-200k", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "3.5GB", + "digest": "45deacd19ae2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-200k-fp16", + "name": "yi:6b-200k-fp16", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "12GB", + "digest": "b516d444ed9d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-200k-q2_K", + "name": "yi:6b-200k-q2_K", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "2.6GB", + "digest": "220dff387204", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-200k-q3_K_L", + "name": "yi:6b-200k-q3_K_L", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "3.2GB", + "digest": "06e73ed0d9e3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-200k-q3_K_M", + "name": "yi:6b-200k-q3_K_M", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "3.0GB", + "digest": "0e1a57f9bce9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-200k-q3_K_S", + "name": "yi:6b-200k-q3_K_S", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "2.7GB", + "digest": "c51e218c810e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-200k-q4_0", + "name": "yi:6b-200k-q4_0", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "3.5GB", + "digest": "45deacd19ae2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-200k-q4_1", + "name": "yi:6b-200k-q4_1", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "3.8GB", + "digest": "e600525d8e94", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-200k-q4_K_M", + "name": "yi:6b-200k-q4_K_M", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "3.7GB", + "digest": "433c1398f079", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-200k-q4_K_S", + "name": "yi:6b-200k-q4_K_S", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "3.5GB", + "digest": "eb8da93ebec5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-200k-q5_0", + "name": "yi:6b-200k-q5_0", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "4.2GB", + "digest": "2030f008fcc0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-200k-q5_1", + "name": "yi:6b-200k-q5_1", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "4.6GB", + "digest": "202f4fd9ba69", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-200k-q5_K_M", + "name": "yi:6b-200k-q5_K_M", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "4.3GB", + "digest": "093ee7887620", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-200k-q5_K_S", + "name": "yi:6b-200k-q5_K_S", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "4.2GB", + "digest": "75ed68536c0f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-200k-q6_K", + "name": "yi:6b-200k-q6_K", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "5.0GB", + "digest": "261a70778491", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-200k-q8_0", + "name": "yi:6b-200k-q8_0", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "6.4GB", + "digest": "5007615d603f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-chat", + "name": "yi:6b-chat", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "3.5GB", + "digest": "a7f031bb846f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-chat-fp16", + "name": "yi:6b-chat-fp16", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "12GB", + "digest": "99ddfca01eca", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-chat-q2_K", + "name": "yi:6b-chat-q2_K", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "2.6GB", + "digest": "cb2cf6916ce2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-chat-q3_K_L", + "name": "yi:6b-chat-q3_K_L", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "3.2GB", + "digest": "8bdce2e321a2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-chat-q3_K_M", + "name": "yi:6b-chat-q3_K_M", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "3.0GB", + "digest": "3650459ddc71", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-chat-q3_K_S", + "name": "yi:6b-chat-q3_K_S", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "2.7GB", + "digest": "c42ad5e9f500", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-chat-q4_0", + "name": "yi:6b-chat-q4_0", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "3.5GB", + "digest": "a86526842143", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-chat-q4_1", + "name": "yi:6b-chat-q4_1", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "3.8GB", + "digest": "39dcb9c0c16c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-chat-q4_K_M", + "name": "yi:6b-chat-q4_K_M", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "3.7GB", + "digest": "1f6e9f4f5ed0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-chat-q4_K_S", + "name": "yi:6b-chat-q4_K_S", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "3.5GB", + "digest": "e9f779e32f09", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-chat-q5_0", + "name": "yi:6b-chat-q5_0", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "4.2GB", + "digest": "f6b97e63a6d2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-chat-q5_1", + "name": "yi:6b-chat-q5_1", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "4.6GB", + "digest": "88f08cf7f29f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-chat-q5_K_M", + "name": "yi:6b-chat-q5_K_M", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "4.3GB", + "digest": "7176938a34c2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-chat-q5_K_S", + "name": "yi:6b-chat-q5_K_S", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "4.2GB", + "digest": "ead5f3ebce3c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-chat-q6_K", + "name": "yi:6b-chat-q6_K", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "5.0GB", + "digest": "a5c64bbef23e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-chat-q8_0", + "name": "yi:6b-chat-q8_0", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "6.4GB", + "digest": "960278d10e50", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-chat-v1.5-fp16", + "name": "yi:6b-chat-v1.5-fp16", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "12GB", + "digest": "babaffd86297", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-chat-v1.5-q2_K", + "name": "yi:6b-chat-v1.5-q2_K", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "2.3GB", + "digest": "0d8b17ff8648", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-chat-v1.5-q3_K_L", + "name": "yi:6b-chat-v1.5-q3_K_L", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "3.2GB", + "digest": "49d10d56ca37", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-chat-v1.5-q3_K_M", + "name": "yi:6b-chat-v1.5-q3_K_M", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "3.0GB", + "digest": "01a6038b2972", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-chat-v1.5-q3_K_S", + "name": "yi:6b-chat-v1.5-q3_K_S", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "2.7GB", + "digest": "3e475ca6d2b5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-chat-v1.5-q4_0", + "name": "yi:6b-chat-v1.5-q4_0", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "3.5GB", + "digest": "a7f031bb846f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-chat-v1.5-q4_1", + "name": "yi:6b-chat-v1.5-q4_1", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "3.8GB", + "digest": "4e8a443364c3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-chat-v1.5-q4_K_M", + "name": "yi:6b-chat-v1.5-q4_K_M", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "3.7GB", + "digest": "fa152930bd7f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-chat-v1.5-q4_K_S", + "name": "yi:6b-chat-v1.5-q4_K_S", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "3.5GB", + "digest": "a034c672ba4b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-chat-v1.5-q5_0", + "name": "yi:6b-chat-v1.5-q5_0", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "4.2GB", + "digest": "d096d1416e54", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-chat-v1.5-q5_1", + "name": "yi:6b-chat-v1.5-q5_1", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "4.6GB", + "digest": "6cec2afeb409", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-chat-v1.5-q5_K_M", + "name": "yi:6b-chat-v1.5-q5_K_M", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "4.3GB", + "digest": "ec1182f7aa33", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-chat-v1.5-q5_K_S", + "name": "yi:6b-chat-v1.5-q5_K_S", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "4.2GB", + "digest": "755d1e3658ce", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-chat-v1.5-q6_K", + "name": "yi:6b-chat-v1.5-q6_K", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "5.0GB", + "digest": "14c3ed1715e7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-chat-v1.5-q8_0", + "name": "yi:6b-chat-v1.5-q8_0", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "6.4GB", + "digest": "b1f058378e64", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-fp16", + "name": "yi:6b-fp16", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "12GB", + "digest": "01b515eab519", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-q2_K", + "name": "yi:6b-q2_K", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "2.6GB", + "digest": "94ba7bcdf142", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-q3_K_L", + "name": "yi:6b-q3_K_L", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "3.2GB", + "digest": "528c89218f2b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-q3_K_M", + "name": "yi:6b-q3_K_M", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "3.0GB", + "digest": "324bb8da81d5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-q3_K_S", + "name": "yi:6b-q3_K_S", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "2.7GB", + "digest": "f80150f67367", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-q4_0", + "name": "yi:6b-q4_0", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "3.5GB", + "digest": "59e2d70c6939", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-q4_1", + "name": "yi:6b-q4_1", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "3.8GB", + "digest": "77d7ffde1c51", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-q4_K_M", + "name": "yi:6b-q4_K_M", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "3.7GB", + "digest": "ad539f1f41d5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-q4_K_S", + "name": "yi:6b-q4_K_S", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "3.5GB", + "digest": "6359b4df56aa", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-q5_0", + "name": "yi:6b-q5_0", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "4.2GB", + "digest": "a22094cf5bad", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-q5_1", + "name": "yi:6b-q5_1", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "4.6GB", + "digest": "c7fea95b0d77", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-q5_K_M", + "name": "yi:6b-q5_K_M", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "4.3GB", + "digest": "068342815314", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-q5_K_S", + "name": "yi:6b-q5_K_S", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "4.2GB", + "digest": "b5a84fc2b136", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-q6_K", + "name": "yi:6b-q6_K", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "5.0GB", + "digest": "130bd76769cc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-q8_0", + "name": "yi:6b-q8_0", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "6.4GB", + "digest": "97c996c3439c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-v1.5", + "name": "yi:6b-v1.5", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "3.5GB", + "digest": "a7f031bb846f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-v1.5-fp16", + "name": "yi:6b-v1.5-fp16", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "12GB", + "digest": "b8d2d6f0817a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-v1.5-q2_K", + "name": "yi:6b-v1.5-q2_K", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "2.3GB", + "digest": "cf6d2c0e3d6e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-v1.5-q3_K_L", + "name": "yi:6b-v1.5-q3_K_L", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "3.2GB", + "digest": "49e0ed20b83d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-v1.5-q3_K_M", + "name": "yi:6b-v1.5-q3_K_M", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "3.0GB", + "digest": "aae5ad452229", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-v1.5-q3_K_S", + "name": "yi:6b-v1.5-q3_K_S", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "2.7GB", + "digest": "7a735c9256a0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-v1.5-q4_0", + "name": "yi:6b-v1.5-q4_0", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "3.5GB", + "digest": "3a0bf92b6f99", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-v1.5-q4_1", + "name": "yi:6b-v1.5-q4_1", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "3.8GB", + "digest": "4ee91ed1a19a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-v1.5-q4_K_M", + "name": "yi:6b-v1.5-q4_K_M", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "3.7GB", + "digest": "a584a9d4cd27", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-v1.5-q4_K_S", + "name": "yi:6b-v1.5-q4_K_S", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "3.5GB", + "digest": "2ce0b1a6c5cf", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-v1.5-q5_0", + "name": "yi:6b-v1.5-q5_0", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "4.2GB", + "digest": "ab8914e35d8d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-v1.5-q5_1", + "name": "yi:6b-v1.5-q5_1", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "4.6GB", + "digest": "a0bf7cc89597", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-v1.5-q5_K_M", + "name": "yi:6b-v1.5-q5_K_M", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "4.3GB", + "digest": "2408715c2a9e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-v1.5-q5_K_S", + "name": "yi:6b-v1.5-q5_K_S", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "4.2GB", + "digest": "bc90882449b1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-v1.5-q6_K", + "name": "yi:6b-v1.5-q6_K", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "5.0GB", + "digest": "9d98594dc08d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:6b-v1.5-q8_0", + "name": "yi:6b-v1.5-q8_0", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "6.4GB", + "digest": "89169eda2d3c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:9b-chat", + "name": "yi:9b-chat", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "5.0GB", + "digest": "3af70141e8eb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:9b-chat-v1.5-fp16", + "name": "yi:9b-chat-v1.5-fp16", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "18GB", + "digest": "ef1c270e6440", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:9b-chat-v1.5-q2_K", + "name": "yi:9b-chat-v1.5-q2_K", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "3.4GB", + "digest": "c9d8e8049c8c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:9b-chat-v1.5-q3_K_L", + "name": "yi:9b-chat-v1.5-q3_K_L", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "4.7GB", + "digest": "e022cfe4f16c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:9b-chat-v1.5-q3_K_M", + "name": "yi:9b-chat-v1.5-q3_K_M", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "4.3GB", + "digest": "08a62d9b25c5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:9b-chat-v1.5-q3_K_S", + "name": "yi:9b-chat-v1.5-q3_K_S", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "3.9GB", + "digest": "6e8c72879cfb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:9b-chat-v1.5-q4_0", + "name": "yi:9b-chat-v1.5-q4_0", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "5.0GB", + "digest": "3af70141e8eb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:9b-chat-v1.5-q4_1", + "name": "yi:9b-chat-v1.5-q4_1", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "5.6GB", + "digest": "0e9e47d564d0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:9b-chat-v1.5-q4_K_M", + "name": "yi:9b-chat-v1.5-q4_K_M", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "5.3GB", + "digest": "70f792429c07", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:9b-chat-v1.5-q4_K_S", + "name": "yi:9b-chat-v1.5-q4_K_S", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "5.1GB", + "digest": "4f0fa6926599", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:9b-chat-v1.5-q5_0", + "name": "yi:9b-chat-v1.5-q5_0", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "6.1GB", + "digest": "40eab33fb0ee", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:9b-chat-v1.5-q5_1", + "name": "yi:9b-chat-v1.5-q5_1", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "6.6GB", + "digest": "b4c8133537c0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:9b-chat-v1.5-q5_K_M", + "name": "yi:9b-chat-v1.5-q5_K_M", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "6.3GB", + "digest": "2e6f6514017d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:9b-chat-v1.5-q5_K_S", + "name": "yi:9b-chat-v1.5-q5_K_S", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "6.1GB", + "digest": "3cd627e8c829", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:9b-chat-v1.5-q6_K", + "name": "yi:9b-chat-v1.5-q6_K", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "7.2GB", + "digest": "70d7dfd97a9b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:9b-chat-v1.5-q8_0", + "name": "yi:9b-chat-v1.5-q8_0", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "9.4GB", + "digest": "027e2dbd8793", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:9b-v1.5", + "name": "yi:9b-v1.5", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "5.0GB", + "digest": "3af70141e8eb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:9b-v1.5-fp16", + "name": "yi:9b-v1.5-fp16", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "18GB", + "digest": "39f1635bfebb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:9b-v1.5-q2_K", + "name": "yi:9b-v1.5-q2_K", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "3.4GB", + "digest": "d214d1156ff5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:9b-v1.5-q3_K_L", + "name": "yi:9b-v1.5-q3_K_L", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "4.7GB", + "digest": "a831bd2b3026", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:9b-v1.5-q3_K_M", + "name": "yi:9b-v1.5-q3_K_M", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "4.3GB", + "digest": "a187586a0fc0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:9b-v1.5-q3_K_S", + "name": "yi:9b-v1.5-q3_K_S", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "3.9GB", + "digest": "547aac39d5fe", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:9b-v1.5-q4_0", + "name": "yi:9b-v1.5-q4_0", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "5.0GB", + "digest": "5c472cb6d4a1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:9b-v1.5-q4_1", + "name": "yi:9b-v1.5-q4_1", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "5.6GB", + "digest": "0089e95d489e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:9b-v1.5-q4_K_M", + "name": "yi:9b-v1.5-q4_K_M", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "5.3GB", + "digest": "5edba3559d92", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:9b-v1.5-q4_K_S", + "name": "yi:9b-v1.5-q4_K_S", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "5.1GB", + "digest": "8df2efe19f98", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:9b-v1.5-q5_0", + "name": "yi:9b-v1.5-q5_0", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "6.1GB", + "digest": "c70b81c4a918", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:9b-v1.5-q5_1", + "name": "yi:9b-v1.5-q5_1", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "6.6GB", + "digest": "f2f85dbf2afc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:9b-v1.5-q5_K_M", + "name": "yi:9b-v1.5-q5_K_M", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "6.3GB", + "digest": "de7dcbea61f6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:9b-v1.5-q5_K_S", + "name": "yi:9b-v1.5-q5_K_S", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "6.1GB", + "digest": "609bb962e089", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:9b-v1.5-q6_K", + "name": "yi:9b-v1.5-q6_K", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "7.2GB", + "digest": "94435fff6349", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:9b-v1.5-q8_0", + "name": "yi:9b-v1.5-q8_0", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "9.4GB", + "digest": "6ea05582d5ca", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi:v1.5", + "name": "yi:v1.5", + "description": "Yi 1.5 is a high-performing, bilingual language model.", + "size": "3.5GB", + "digest": "a7f031bb846f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3", + "name": "hermes3", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "4.7GB", + "digest": "4f6b83f30b62", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "hermes3:3b", + "name": "hermes3:3b", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "2.0GB", + "digest": "a8851c5041d4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:8b", + "name": "hermes3:8b", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "4.7GB", + "digest": "4f6b83f30b62", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:70b", + "name": "hermes3:70b", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "40GB", + "digest": "60ef54cd913f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:405b", + "name": "hermes3:405b", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "229GB", + "digest": "7e675bc10887", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:3b-llama3.2-fp16", + "name": "hermes3:3b-llama3.2-fp16", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "6.4GB", + "digest": "1818cdb4d27a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:3b-llama3.2-q2_K", + "name": "hermes3:3b-llama3.2-q2_K", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "1.4GB", + "digest": "5e016053462e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:3b-llama3.2-q3_K_L", + "name": "hermes3:3b-llama3.2-q3_K_L", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "1.8GB", + "digest": "398338d75e51", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:3b-llama3.2-q3_K_M", + "name": "hermes3:3b-llama3.2-q3_K_M", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "1.7GB", + "digest": "8412e43ba04b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:3b-llama3.2-q3_K_S", + "name": "hermes3:3b-llama3.2-q3_K_S", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "1.5GB", + "digest": "9534cf45dcad", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:3b-llama3.2-q4_0", + "name": "hermes3:3b-llama3.2-q4_0", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "1.9GB", + "digest": "1e1401fe4ac6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:3b-llama3.2-q4_1", + "name": "hermes3:3b-llama3.2-q4_1", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "2.1GB", + "digest": "789b254cc3a2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:3b-llama3.2-q4_K_M", + "name": "hermes3:3b-llama3.2-q4_K_M", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "2.0GB", + "digest": "a8851c5041d4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:3b-llama3.2-q4_K_S", + "name": "hermes3:3b-llama3.2-q4_K_S", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "1.9GB", + "digest": "2319fe585b75", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:3b-llama3.2-q5_0", + "name": "hermes3:3b-llama3.2-q5_0", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "2.3GB", + "digest": "8ba0b60c0fbb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:3b-llama3.2-q5_1", + "name": "hermes3:3b-llama3.2-q5_1", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "2.4GB", + "digest": "5bc19c8f34a0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:3b-llama3.2-q5_K_M", + "name": "hermes3:3b-llama3.2-q5_K_M", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "2.3GB", + "digest": "adff680f9846", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:3b-llama3.2-q5_K_S", + "name": "hermes3:3b-llama3.2-q5_K_S", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "2.3GB", + "digest": "2825a14d8a2e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:3b-llama3.2-q6_K", + "name": "hermes3:3b-llama3.2-q6_K", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "2.6GB", + "digest": "618f493da20f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:3b-llama3.2-q8_0", + "name": "hermes3:3b-llama3.2-q8_0", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "3.4GB", + "digest": "81e132c6f32b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:405b-llama3.1-fp16", + "name": "hermes3:405b-llama3.1-fp16", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "812GB", + "digest": "9666944d1b48", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:405b-llama3.1-q2_K", + "name": "hermes3:405b-llama3.1-q2_K", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "149GB", + "digest": "f12827971c1b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:405b-llama3.1-q3_K_L", + "name": "hermes3:405b-llama3.1-q3_K_L", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "213GB", + "digest": "8e48e8f6acc9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:405b-llama3.1-q3_K_M", + "name": "hermes3:405b-llama3.1-q3_K_M", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "195GB", + "digest": "87c4bb79d492", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:405b-llama3.1-q3_K_S", + "name": "hermes3:405b-llama3.1-q3_K_S", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "175GB", + "digest": "d5d61b34af07", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:405b-llama3.1-q4_0", + "name": "hermes3:405b-llama3.1-q4_0", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "229GB", + "digest": "7e675bc10887", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:405b-llama3.1-q4_1", + "name": "hermes3:405b-llama3.1-q4_1", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "254GB", + "digest": "d2069f77b555", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:405b-llama3.1-q4_K_M", + "name": "hermes3:405b-llama3.1-q4_K_M", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "243GB", + "digest": "7e95da5e5e87", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:405b-llama3.1-q4_K_S", + "name": "hermes3:405b-llama3.1-q4_K_S", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "231GB", + "digest": "51d83954f208", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:405b-llama3.1-q5_0", + "name": "hermes3:405b-llama3.1-q5_0", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "279GB", + "digest": "1330c3882956", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:405b-llama3.1-q5_1", + "name": "hermes3:405b-llama3.1-q5_1", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "305GB", + "digest": "645be110f228", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:405b-llama3.1-q5_K_M", + "name": "hermes3:405b-llama3.1-q5_K_M", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "287GB", + "digest": "859937457c29", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:405b-llama3.1-q5_K_S", + "name": "hermes3:405b-llama3.1-q5_K_S", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "279GB", + "digest": "6e8f5fe76c99", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:405b-llama3.1-q6_K", + "name": "hermes3:405b-llama3.1-q6_K", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "333GB", + "digest": "2d0919bbe03f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:405b-llama3.1-q8_0", + "name": "hermes3:405b-llama3.1-q8_0", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "431GB", + "digest": "d2ca25940e61", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:70b-llama3.1-fp16", + "name": "hermes3:70b-llama3.1-fp16", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "141GB", + "digest": "e95c7ce02c58", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:70b-llama3.1-q2_K", + "name": "hermes3:70b-llama3.1-q2_K", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "26GB", + "digest": "d494e51db58c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:70b-llama3.1-q3_K_L", + "name": "hermes3:70b-llama3.1-q3_K_L", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "37GB", + "digest": "ef3556ba09b4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:70b-llama3.1-q3_K_M", + "name": "hermes3:70b-llama3.1-q3_K_M", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "34GB", + "digest": "85e9f18d5139", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:70b-llama3.1-q3_K_S", + "name": "hermes3:70b-llama3.1-q3_K_S", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "31GB", + "digest": "0a99e8a6fa35", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:70b-llama3.1-q4_0", + "name": "hermes3:70b-llama3.1-q4_0", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "40GB", + "digest": "60ef54cd913f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:70b-llama3.1-q4_1", + "name": "hermes3:70b-llama3.1-q4_1", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "44GB", + "digest": "5439d89973fa", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:70b-llama3.1-q4_K_M", + "name": "hermes3:70b-llama3.1-q4_K_M", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "43GB", + "digest": "830dc29f92d1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:70b-llama3.1-q4_K_S", + "name": "hermes3:70b-llama3.1-q4_K_S", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "40GB", + "digest": "3c54000f925c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:70b-llama3.1-q5_0", + "name": "hermes3:70b-llama3.1-q5_0", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "49GB", + "digest": "25749edb3917", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:70b-llama3.1-q5_1", + "name": "hermes3:70b-llama3.1-q5_1", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "53GB", + "digest": "5deeeb686c50", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:70b-llama3.1-q5_K_M", + "name": "hermes3:70b-llama3.1-q5_K_M", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "50GB", + "digest": "20b9f43d13a2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:70b-llama3.1-q5_K_S", + "name": "hermes3:70b-llama3.1-q5_K_S", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "49GB", + "digest": "187535b64096", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:70b-llama3.1-q6_K", + "name": "hermes3:70b-llama3.1-q6_K", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "58GB", + "digest": "ec4ea041b516", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:70b-llama3.1-q8_0", + "name": "hermes3:70b-llama3.1-q8_0", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "75GB", + "digest": "72f0aa5b30bb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:8b-llama3.1-fp16", + "name": "hermes3:8b-llama3.1-fp16", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "16GB", + "digest": "33a87105fb24", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:8b-llama3.1-q2_K", + "name": "hermes3:8b-llama3.1-q2_K", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "3.2GB", + "digest": "6285707c1724", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:8b-llama3.1-q3_K_L", + "name": "hermes3:8b-llama3.1-q3_K_L", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "4.3GB", + "digest": "01fb1c8fffcb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:8b-llama3.1-q3_K_M", + "name": "hermes3:8b-llama3.1-q3_K_M", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "4.0GB", + "digest": "f6b6eb85884d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:8b-llama3.1-q3_K_S", + "name": "hermes3:8b-llama3.1-q3_K_S", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "3.7GB", + "digest": "e2a8a0424e1b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:8b-llama3.1-q4_0", + "name": "hermes3:8b-llama3.1-q4_0", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "4.7GB", + "digest": "4f6b83f30b62", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:8b-llama3.1-q4_1", + "name": "hermes3:8b-llama3.1-q4_1", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "5.1GB", + "digest": "d5b8d4f560a3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:8b-llama3.1-q4_K_M", + "name": "hermes3:8b-llama3.1-q4_K_M", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "4.9GB", + "digest": "81e633795347", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:8b-llama3.1-q4_K_S", + "name": "hermes3:8b-llama3.1-q4_K_S", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "4.7GB", + "digest": "c8edbc90a188", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:8b-llama3.1-q5_0", + "name": "hermes3:8b-llama3.1-q5_0", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "5.6GB", + "digest": "f1e10ae7c0e6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:8b-llama3.1-q5_1", + "name": "hermes3:8b-llama3.1-q5_1", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "6.1GB", + "digest": "bebd5029ac2b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:8b-llama3.1-q5_K_M", + "name": "hermes3:8b-llama3.1-q5_K_M", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "5.7GB", + "digest": "836396825b44", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:8b-llama3.1-q5_K_S", + "name": "hermes3:8b-llama3.1-q5_K_S", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "5.6GB", + "digest": "c0a2d5445266", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:8b-llama3.1-q6_K", + "name": "hermes3:8b-llama3.1-q6_K", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "6.6GB", + "digest": "fbcaa05c32d0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "hermes3:8b-llama3.1-q8_0", + "name": "hermes3:8b-llama3.1-q8_0", + "description": "Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Research", + "size": "8.5GB", + "digest": "1c94cf8f1046", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3.5", + "name": "phi3.5", + "description": "A lightweight AI model with 3.8 billion parameters with performance overtaking similarly and larger sized models.", + "size": "2.2GB", + "digest": "61819fb370a3", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "phi3.5:3.8b", + "name": "phi3.5:3.8b", + "description": "A lightweight AI model with 3.8 billion parameters with performance overtaking similarly and larger sized models.", + "size": "2.2GB", + "digest": "61819fb370a3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3.5:3.8b-mini-instruct-fp16", + "name": "phi3.5:3.8b-mini-instruct-fp16", + "description": "A lightweight AI model with 3.8 billion parameters with performance overtaking similarly and larger sized models.", + "size": "7.6GB", + "digest": "4611ed13d496", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3.5:3.8b-mini-instruct-q2_K", + "name": "phi3.5:3.8b-mini-instruct-q2_K", + "description": "A lightweight AI model with 3.8 billion parameters with performance overtaking similarly and larger sized models.", + "size": "1.4GB", + "digest": "45b8dc82a846", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3.5:3.8b-mini-instruct-q3_K_L", + "name": "phi3.5:3.8b-mini-instruct-q3_K_L", + "description": "A lightweight AI model with 3.8 billion parameters with performance overtaking similarly and larger sized models.", + "size": "2.1GB", + "digest": "1a0c69ceca7c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3.5:3.8b-mini-instruct-q3_K_M", + "name": "phi3.5:3.8b-mini-instruct-q3_K_M", + "description": "A lightweight AI model with 3.8 billion parameters with performance overtaking similarly and larger sized models.", + "size": "2.0GB", + "digest": "0d7837063f04", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3.5:3.8b-mini-instruct-q3_K_S", + "name": "phi3.5:3.8b-mini-instruct-q3_K_S", + "description": "A lightweight AI model with 3.8 billion parameters with performance overtaking similarly and larger sized models.", + "size": "1.7GB", + "digest": "a96deac0d01a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3.5:3.8b-mini-instruct-q4_0", + "name": "phi3.5:3.8b-mini-instruct-q4_0", + "description": "A lightweight AI model with 3.8 billion parameters with performance overtaking similarly and larger sized models.", + "size": "2.2GB", + "digest": "61819fb370a3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3.5:3.8b-mini-instruct-q4_1", + "name": "phi3.5:3.8b-mini-instruct-q4_1", + "description": "A lightweight AI model with 3.8 billion parameters with performance overtaking similarly and larger sized models.", + "size": "2.4GB", + "digest": "4cbfba8563ff", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3.5:3.8b-mini-instruct-q4_K_M", + "name": "phi3.5:3.8b-mini-instruct-q4_K_M", + "description": "A lightweight AI model with 3.8 billion parameters with performance overtaking similarly and larger sized models.", + "size": "2.4GB", + "digest": "570961596984", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3.5:3.8b-mini-instruct-q4_K_S", + "name": "phi3.5:3.8b-mini-instruct-q4_K_S", + "description": "A lightweight AI model with 3.8 billion parameters with performance overtaking similarly and larger sized models.", + "size": "2.2GB", + "digest": "593801e5a118", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3.5:3.8b-mini-instruct-q5_0", + "name": "phi3.5:3.8b-mini-instruct-q5_0", + "description": "A lightweight AI model with 3.8 billion parameters with performance overtaking similarly and larger sized models.", + "size": "2.6GB", + "digest": "08d2a846d344", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3.5:3.8b-mini-instruct-q5_1", + "name": "phi3.5:3.8b-mini-instruct-q5_1", + "description": "A lightweight AI model with 3.8 billion parameters with performance overtaking similarly and larger sized models.", + "size": "2.9GB", + "digest": "56d7624b988b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3.5:3.8b-mini-instruct-q5_K_M", + "name": "phi3.5:3.8b-mini-instruct-q5_K_M", + "description": "A lightweight AI model with 3.8 billion parameters with performance overtaking similarly and larger sized models.", + "size": "2.8GB", + "digest": "d8410edb4013", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3.5:3.8b-mini-instruct-q5_K_S", + "name": "phi3.5:3.8b-mini-instruct-q5_K_S", + "description": "A lightweight AI model with 3.8 billion parameters with performance overtaking similarly and larger sized models.", + "size": "2.6GB", + "digest": "359cb1eb71b5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3.5:3.8b-mini-instruct-q6_K", + "name": "phi3.5:3.8b-mini-instruct-q6_K", + "description": "A lightweight AI model with 3.8 billion parameters with performance overtaking similarly and larger sized models.", + "size": "3.1GB", + "digest": "64777e5c6803", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phi3.5:3.8b-mini-instruct-q8_0", + "name": "phi3.5:3.8b-mini-instruct-q8_0", + "description": "A lightweight AI model with 3.8 billion parameters with performance overtaking similarly and larger sized models.", + "size": "4.1GB", + "digest": "8b50e8e1e216", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "zephyr", + "name": "zephyr", + "description": "Zephyr is a series of fine-tuned versions of the Mistral and Mixtral models that are trained to act as helpful assistants.", + "size": "4.1GB", + "digest": "bbe38b81adec", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "zephyr:7b", + "name": "zephyr:7b", + "description": "Zephyr is a series of fine-tuned versions of the Mistral and Mixtral models that are trained to act as helpful assistants.", + "size": "4.1GB", + "digest": "bbe38b81adec", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "zephyr:141b", + "name": "zephyr:141b", + "description": "Zephyr is a series of fine-tuned versions of the Mistral and Mixtral models that are trained to act as helpful assistants.", + "size": "80GB", + "digest": "31b0b6c9d69f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "zephyr:141b-v0.1", + "name": "zephyr:141b-v0.1", + "description": "Zephyr is a series of fine-tuned versions of the Mistral and Mixtral models that are trained to act as helpful assistants.", + "size": "80GB", + "digest": "31b0b6c9d69f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "zephyr:141b-v0.1-fp16", + "name": "zephyr:141b-v0.1-fp16", + "description": "Zephyr is a series of fine-tuned versions of the Mistral and Mixtral models that are trained to act as helpful assistants.", + "size": "281GB", + "digest": "7bc5b262ff30", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "zephyr:141b-v0.1-q2_K", + "name": "zephyr:141b-v0.1-q2_K", + "description": "Zephyr is a series of fine-tuned versions of the Mistral and Mixtral models that are trained to act as helpful assistants.", + "size": "52GB", + "digest": "d5c73d340d28", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "zephyr:141b-v0.1-q4_0", + "name": "zephyr:141b-v0.1-q4_0", + "description": "Zephyr is a series of fine-tuned versions of the Mistral and Mixtral models that are trained to act as helpful assistants.", + "size": "80GB", + "digest": "31b0b6c9d69f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "zephyr:141b-v0.1-q8_0", + "name": "zephyr:141b-v0.1-q8_0", + "description": "Zephyr is a series of fine-tuned versions of the Mistral and Mixtral models that are trained to act as helpful assistants.", + "size": "149GB", + "digest": "74c478cfbe57", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "zephyr:7b-alpha", + "name": "zephyr:7b-alpha", + "description": "Zephyr is a series of fine-tuned versions of the Mistral and Mixtral models that are trained to act as helpful assistants.", + "size": "4.1GB", + "digest": "41db45eedfe5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "zephyr:7b-alpha-fp16", + "name": "zephyr:7b-alpha-fp16", + "description": "Zephyr is a series of fine-tuned versions of the Mistral and Mixtral models that are trained to act as helpful assistants.", + "size": "14GB", + "digest": "add59b7f7dab", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "zephyr:7b-alpha-q2_K", + "name": "zephyr:7b-alpha-q2_K", + "description": "Zephyr is a series of fine-tuned versions of the Mistral and Mixtral models that are trained to act as helpful assistants.", + "size": "3.1GB", + "digest": "499c406f90e6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "zephyr:7b-alpha-q3_K_L", + "name": "zephyr:7b-alpha-q3_K_L", + "description": "Zephyr is a series of fine-tuned versions of the Mistral and Mixtral models that are trained to act as helpful assistants.", + "size": "3.8GB", + "digest": "2dca6ee2b47c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "zephyr:7b-alpha-q3_K_M", + "name": "zephyr:7b-alpha-q3_K_M", + "description": "Zephyr is a series of fine-tuned versions of the Mistral and Mixtral models that are trained to act as helpful assistants.", + "size": "3.5GB", + "digest": "baaa40d0a6ae", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "zephyr:7b-alpha-q3_K_S", + "name": "zephyr:7b-alpha-q3_K_S", + "description": "Zephyr is a series of fine-tuned versions of the Mistral and Mixtral models that are trained to act as helpful assistants.", + "size": "3.2GB", + "digest": "79e2d8538b1a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "zephyr:7b-alpha-q4_0", + "name": "zephyr:7b-alpha-q4_0", + "description": "Zephyr is a series of fine-tuned versions of the Mistral and Mixtral models that are trained to act as helpful assistants.", + "size": "4.1GB", + "digest": "41db45eedfe5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "zephyr:7b-alpha-q4_1", + "name": "zephyr:7b-alpha-q4_1", + "description": "Zephyr is a series of fine-tuned versions of the Mistral and Mixtral models that are trained to act as helpful assistants.", + "size": "4.6GB", + "digest": "def2c83c706e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "zephyr:7b-alpha-q4_K_M", + "name": "zephyr:7b-alpha-q4_K_M", + "description": "Zephyr is a series of fine-tuned versions of the Mistral and Mixtral models that are trained to act as helpful assistants.", + "size": "4.4GB", + "digest": "0fcbe7af791e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "zephyr:7b-alpha-q4_K_S", + "name": "zephyr:7b-alpha-q4_K_S", + "description": "Zephyr is a series of fine-tuned versions of the Mistral and Mixtral models that are trained to act as helpful assistants.", + "size": "4.1GB", + "digest": "003038afd62d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "zephyr:7b-alpha-q5_0", + "name": "zephyr:7b-alpha-q5_0", + "description": "Zephyr is a series of fine-tuned versions of the Mistral and Mixtral models that are trained to act as helpful assistants.", + "size": "5.0GB", + "digest": "110b09717ce9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "zephyr:7b-alpha-q5_1", + "name": "zephyr:7b-alpha-q5_1", + "description": "Zephyr is a series of fine-tuned versions of the Mistral and Mixtral models that are trained to act as helpful assistants.", + "size": "5.4GB", + "digest": "0484ef77caf6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "zephyr:7b-alpha-q5_K_M", + "name": "zephyr:7b-alpha-q5_K_M", + "description": "Zephyr is a series of fine-tuned versions of the Mistral and Mixtral models that are trained to act as helpful assistants.", + "size": "5.1GB", + "digest": "107c6b2c9c4f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "zephyr:7b-alpha-q5_K_S", + "name": "zephyr:7b-alpha-q5_K_S", + "description": "Zephyr is a series of fine-tuned versions of the Mistral and Mixtral models that are trained to act as helpful assistants.", + "size": "5.0GB", + "digest": "82eaf5453c6b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "zephyr:7b-alpha-q6_K", + "name": "zephyr:7b-alpha-q6_K", + "description": "Zephyr is a series of fine-tuned versions of the Mistral and Mixtral models that are trained to act as helpful assistants.", + "size": "5.9GB", + "digest": "69373e3f99d5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "zephyr:7b-alpha-q8_0", + "name": "zephyr:7b-alpha-q8_0", + "description": "Zephyr is a series of fine-tuned versions of the Mistral and Mixtral models that are trained to act as helpful assistants.", + "size": "7.7GB", + "digest": "0e68bba39b3d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "zephyr:7b-beta", + "name": "zephyr:7b-beta", + "description": "Zephyr is a series of fine-tuned versions of the Mistral and Mixtral models that are trained to act as helpful assistants.", + "size": "4.1GB", + "digest": "bbe38b81adec", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "zephyr:7b-beta-fp16", + "name": "zephyr:7b-beta-fp16", + "description": "Zephyr is a series of fine-tuned versions of the Mistral and Mixtral models that are trained to act as helpful assistants.", + "size": "14GB", + "digest": "85a4e7a31862", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "zephyr:7b-beta-q2_K", + "name": "zephyr:7b-beta-q2_K", + "description": "Zephyr is a series of fine-tuned versions of the Mistral and Mixtral models that are trained to act as helpful assistants.", + "size": "3.1GB", + "digest": "2ba2da5abef9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "zephyr:7b-beta-q3_K_L", + "name": "zephyr:7b-beta-q3_K_L", + "description": "Zephyr is a series of fine-tuned versions of the Mistral and Mixtral models that are trained to act as helpful assistants.", + "size": "3.8GB", + "digest": "410a8b7cbfbf", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "zephyr:7b-beta-q3_K_M", + "name": "zephyr:7b-beta-q3_K_M", + "description": "Zephyr is a series of fine-tuned versions of the Mistral and Mixtral models that are trained to act as helpful assistants.", + "size": "3.5GB", + "digest": "75a7002f3885", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "zephyr:7b-beta-q3_K_S", + "name": "zephyr:7b-beta-q3_K_S", + "description": "Zephyr is a series of fine-tuned versions of the Mistral and Mixtral models that are trained to act as helpful assistants.", + "size": "3.2GB", + "digest": "5a359ab6ce9c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "zephyr:7b-beta-q4_0", + "name": "zephyr:7b-beta-q4_0", + "description": "Zephyr is a series of fine-tuned versions of the Mistral and Mixtral models that are trained to act as helpful assistants.", + "size": "4.1GB", + "digest": "bbe38b81adec", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "zephyr:7b-beta-q4_1", + "name": "zephyr:7b-beta-q4_1", + "description": "Zephyr is a series of fine-tuned versions of the Mistral and Mixtral models that are trained to act as helpful assistants.", + "size": "4.6GB", + "digest": "9dda547ba87b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "zephyr:7b-beta-q4_K_M", + "name": "zephyr:7b-beta-q4_K_M", + "description": "Zephyr is a series of fine-tuned versions of the Mistral and Mixtral models that are trained to act as helpful assistants.", + "size": "4.4GB", + "digest": "961df065a980", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "zephyr:7b-beta-q4_K_S", + "name": "zephyr:7b-beta-q4_K_S", + "description": "Zephyr is a series of fine-tuned versions of the Mistral and Mixtral models that are trained to act as helpful assistants.", + "size": "4.1GB", + "digest": "c9e294ff1e6f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "zephyr:7b-beta-q5_0", + "name": "zephyr:7b-beta-q5_0", + "description": "Zephyr is a series of fine-tuned versions of the Mistral and Mixtral models that are trained to act as helpful assistants.", + "size": "5.0GB", + "digest": "d9161a2d3687", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "zephyr:7b-beta-q5_1", + "name": "zephyr:7b-beta-q5_1", + "description": "Zephyr is a series of fine-tuned versions of the Mistral and Mixtral models that are trained to act as helpful assistants.", + "size": "5.4GB", + "digest": "887c48b48ef2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "zephyr:7b-beta-q5_K_M", + "name": "zephyr:7b-beta-q5_K_M", + "description": "Zephyr is a series of fine-tuned versions of the Mistral and Mixtral models that are trained to act as helpful assistants.", + "size": "5.1GB", + "digest": "482c06dc081a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "zephyr:7b-beta-q5_K_S", + "name": "zephyr:7b-beta-q5_K_S", + "description": "Zephyr is a series of fine-tuned versions of the Mistral and Mixtral models that are trained to act as helpful assistants.", + "size": "5.0GB", + "digest": "65d372ba8784", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "zephyr:7b-beta-q6_K", + "name": "zephyr:7b-beta-q6_K", + "description": "Zephyr is a series of fine-tuned versions of the Mistral and Mixtral models that are trained to act as helpful assistants.", + "size": "5.9GB", + "digest": "705bedf05d2e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "zephyr:7b-beta-q8_0", + "name": "zephyr:7b-beta-q8_0", + "description": "Zephyr is a series of fine-tuned versions of the Mistral and Mixtral models that are trained to act as helpful assistants.", + "size": "7.7GB", + "digest": "f684109a5a8d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codestral", + "name": "codestral", + "description": "Codestral is Mistral AI’s first-ever code model designed for code generation tasks.", + "size": "13GB", + "digest": "0898a8b286d5", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "codestral:22b", + "name": "codestral:22b", + "description": "Codestral is Mistral AI’s first-ever code model designed for code generation tasks.", + "size": "13GB", + "digest": "0898a8b286d5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codestral:22b-v0.1-q2_K", + "name": "codestral:22b-v0.1-q2_K", + "description": "Codestral is Mistral AI’s first-ever code model designed for code generation tasks.", + "size": "8.3GB", + "digest": "0e1127d332ef", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codestral:22b-v0.1-q3_K_L", + "name": "codestral:22b-v0.1-q3_K_L", + "description": "Codestral is Mistral AI’s first-ever code model designed for code generation tasks.", + "size": "12GB", + "digest": "40e96062aff7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codestral:22b-v0.1-q3_K_M", + "name": "codestral:22b-v0.1-q3_K_M", + "description": "Codestral is Mistral AI’s first-ever code model designed for code generation tasks.", + "size": "11GB", + "digest": "71655d0feff7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codestral:22b-v0.1-q3_K_S", + "name": "codestral:22b-v0.1-q3_K_S", + "description": "Codestral is Mistral AI’s first-ever code model designed for code generation tasks.", + "size": "9.6GB", + "digest": "435a805994fa", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codestral:22b-v0.1-q4_0", + "name": "codestral:22b-v0.1-q4_0", + "description": "Codestral is Mistral AI’s first-ever code model designed for code generation tasks.", + "size": "13GB", + "digest": "0898a8b286d5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codestral:22b-v0.1-q4_1", + "name": "codestral:22b-v0.1-q4_1", + "description": "Codestral is Mistral AI’s first-ever code model designed for code generation tasks.", + "size": "14GB", + "digest": "112589019335", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codestral:22b-v0.1-q4_K_M", + "name": "codestral:22b-v0.1-q4_K_M", + "description": "Codestral is Mistral AI’s first-ever code model designed for code generation tasks.", + "size": "13GB", + "digest": "9a43e868fd2c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codestral:22b-v0.1-q4_K_S", + "name": "codestral:22b-v0.1-q4_K_S", + "description": "Codestral is Mistral AI’s first-ever code model designed for code generation tasks.", + "size": "13GB", + "digest": "98d819ea95ec", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codestral:22b-v0.1-q5_0", + "name": "codestral:22b-v0.1-q5_0", + "description": "Codestral is Mistral AI’s first-ever code model designed for code generation tasks.", + "size": "15GB", + "digest": "05c0a78fd842", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codestral:22b-v0.1-q5_1", + "name": "codestral:22b-v0.1-q5_1", + "description": "Codestral is Mistral AI’s first-ever code model designed for code generation tasks.", + "size": "17GB", + "digest": "c71bfe359bcc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codestral:22b-v0.1-q5_K_M", + "name": "codestral:22b-v0.1-q5_K_M", + "description": "Codestral is Mistral AI’s first-ever code model designed for code generation tasks.", + "size": "16GB", + "digest": "2df1ccc62c6a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codestral:22b-v0.1-q5_K_S", + "name": "codestral:22b-v0.1-q5_K_S", + "description": "Codestral is Mistral AI’s first-ever code model designed for code generation tasks.", + "size": "15GB", + "digest": "937f5c4a1a20", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codestral:22b-v0.1-q6_K", + "name": "codestral:22b-v0.1-q6_K", + "description": "Codestral is Mistral AI’s first-ever code model designed for code generation tasks.", + "size": "18GB", + "digest": "e77ab7ec51f6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codestral:22b-v0.1-q8_0", + "name": "codestral:22b-v0.1-q8_0", + "description": "Codestral is Mistral AI’s first-ever code model designed for code generation tasks.", + "size": "24GB", + "digest": "8dde0029a91f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codestral:v0.1", + "name": "codestral:v0.1", + "description": "Codestral is Mistral AI’s first-ever code model designed for code generation tasks.", + "size": "13GB", + "digest": "0898a8b286d5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm2", + "name": "smollm2", + "description": "SmolLM2 is a family of compact language models available in three size: 135M, 360M, and 1.7B parameters.", + "size": "1.8GB", + "digest": "cef4a1e09247", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "smollm2:135m", + "name": "smollm2:135m", + "description": "SmolLM2 is a family of compact language models available in three size: 135M, 360M, and 1.7B parameters.", + "size": "271MB", + "digest": "9077fe9d2ae1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm2:360m", + "name": "smollm2:360m", + "description": "SmolLM2 is a family of compact language models available in three size: 135M, 360M, and 1.7B parameters.", + "size": "726MB", + "digest": "297281b699fc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm2:1.7b", + "name": "smollm2:1.7b", + "description": "SmolLM2 is a family of compact language models available in three size: 135M, 360M, and 1.7B parameters.", + "size": "1.8GB", + "digest": "cef4a1e09247", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm2:1.7b-instruct-fp16", + "name": "smollm2:1.7b-instruct-fp16", + "description": "SmolLM2 is a family of compact language models available in three size: 135M, 360M, and 1.7B parameters.", + "size": "3.4GB", + "digest": "4dfa5c286f7d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm2:1.7b-instruct-q2_K", + "name": "smollm2:1.7b-instruct-q2_K", + "description": "SmolLM2 is a family of compact language models available in three size: 135M, 360M, and 1.7B parameters.", + "size": "675MB", + "digest": "c9fa799834eb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm2:1.7b-instruct-q3_K_L", + "name": "smollm2:1.7b-instruct-q3_K_L", + "description": "SmolLM2 is a family of compact language models available in three size: 135M, 360M, and 1.7B parameters.", + "size": "933MB", + "digest": "8e9bf65b4fc1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm2:1.7b-instruct-q3_K_M", + "name": "smollm2:1.7b-instruct-q3_K_M", + "description": "SmolLM2 is a family of compact language models available in three size: 135M, 360M, and 1.7B parameters.", + "size": "860MB", + "digest": "995c3b9124da", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm2:1.7b-instruct-q3_K_S", + "name": "smollm2:1.7b-instruct-q3_K_S", + "description": "SmolLM2 is a family of compact language models available in three size: 135M, 360M, and 1.7B parameters.", + "size": "777MB", + "digest": "5f6dd832de68", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm2:1.7b-instruct-q4_0", + "name": "smollm2:1.7b-instruct-q4_0", + "description": "SmolLM2 is a family of compact language models available in three size: 135M, 360M, and 1.7B parameters.", + "size": "991MB", + "digest": "4c11ca6ef836", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm2:1.7b-instruct-q4_1", + "name": "smollm2:1.7b-instruct-q4_1", + "description": "SmolLM2 is a family of compact language models available in three size: 135M, 360M, and 1.7B parameters.", + "size": "1.1GB", + "digest": "aee2f3421da8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm2:1.7b-instruct-q4_K_M", + "name": "smollm2:1.7b-instruct-q4_K_M", + "description": "SmolLM2 is a family of compact language models available in three size: 135M, 360M, and 1.7B parameters.", + "size": "1.1GB", + "digest": "8ea75f835db9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm2:1.7b-instruct-q4_K_S", + "name": "smollm2:1.7b-instruct-q4_K_S", + "description": "SmolLM2 is a family of compact language models available in three size: 135M, 360M, and 1.7B parameters.", + "size": "999MB", + "digest": "fa70e3e2531f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm2:1.7b-instruct-q5_0", + "name": "smollm2:1.7b-instruct-q5_0", + "description": "SmolLM2 is a family of compact language models available in three size: 135M, 360M, and 1.7B parameters.", + "size": "1.2GB", + "digest": "b8b1fb6cc166", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm2:1.7b-instruct-q5_1", + "name": "smollm2:1.7b-instruct-q5_1", + "description": "SmolLM2 is a family of compact language models available in three size: 135M, 360M, and 1.7B parameters.", + "size": "1.3GB", + "digest": "f46b4fa8622d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm2:1.7b-instruct-q5_K_M", + "name": "smollm2:1.7b-instruct-q5_K_M", + "description": "SmolLM2 is a family of compact language models available in three size: 135M, 360M, and 1.7B parameters.", + "size": "1.2GB", + "digest": "ff2bf7135787", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm2:1.7b-instruct-q5_K_S", + "name": "smollm2:1.7b-instruct-q5_K_S", + "description": "SmolLM2 is a family of compact language models available in three size: 135M, 360M, and 1.7B parameters.", + "size": "1.2GB", + "digest": "042ddeb76d9e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm2:1.7b-instruct-q6_K", + "name": "smollm2:1.7b-instruct-q6_K", + "description": "SmolLM2 is a family of compact language models available in three size: 135M, 360M, and 1.7B parameters.", + "size": "1.4GB", + "digest": "d334c54e8df6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm2:1.7b-instruct-q8_0", + "name": "smollm2:1.7b-instruct-q8_0", + "description": "SmolLM2 is a family of compact language models available in three size: 135M, 360M, and 1.7B parameters.", + "size": "1.8GB", + "digest": "cef4a1e09247", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm2:135m-instruct-fp16", + "name": "smollm2:135m-instruct-fp16", + "description": "SmolLM2 is a family of compact language models available in three size: 135M, 360M, and 1.7B parameters.", + "size": "271MB", + "digest": "9077fe9d2ae1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm2:135m-instruct-q2_K", + "name": "smollm2:135m-instruct-q2_K", + "description": "SmolLM2 is a family of compact language models available in three size: 135M, 360M, and 1.7B parameters.", + "size": "88MB", + "digest": "888e2e49aff1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm2:135m-instruct-q3_K_L", + "name": "smollm2:135m-instruct-q3_K_L", + "description": "SmolLM2 is a family of compact language models available in three size: 135M, 360M, and 1.7B parameters.", + "size": "98MB", + "digest": "c72ffea38f60", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm2:135m-instruct-q3_K_M", + "name": "smollm2:135m-instruct-q3_K_M", + "description": "SmolLM2 is a family of compact language models available in three size: 135M, 360M, and 1.7B parameters.", + "size": "94MB", + "digest": "970418f9b140", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm2:135m-instruct-q3_K_S", + "name": "smollm2:135m-instruct-q3_K_S", + "description": "SmolLM2 is a family of compact language models available in three size: 135M, 360M, and 1.7B parameters.", + "size": "88MB", + "digest": "ea68556e2fe1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm2:135m-instruct-q4_0", + "name": "smollm2:135m-instruct-q4_0", + "description": "SmolLM2 is a family of compact language models available in three size: 135M, 360M, and 1.7B parameters.", + "size": "92MB", + "digest": "dbc9f6c89cb0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm2:135m-instruct-q4_1", + "name": "smollm2:135m-instruct-q4_1", + "description": "SmolLM2 is a family of compact language models available in three size: 135M, 360M, and 1.7B parameters.", + "size": "98MB", + "digest": "1e7dbfd9f706", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm2:135m-instruct-q4_K_M", + "name": "smollm2:135m-instruct-q4_K_M", + "description": "SmolLM2 is a family of compact language models available in three size: 135M, 360M, and 1.7B parameters.", + "size": "105MB", + "digest": "fd3168509652", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm2:135m-instruct-q4_K_S", + "name": "smollm2:135m-instruct-q4_K_S", + "description": "SmolLM2 is a family of compact language models available in three size: 135M, 360M, and 1.7B parameters.", + "size": "102MB", + "digest": "9a7ead04933f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm2:135m-instruct-q5_0", + "name": "smollm2:135m-instruct-q5_0", + "description": "SmolLM2 is a family of compact language models available in three size: 135M, 360M, and 1.7B parameters.", + "size": "105MB", + "digest": "b4ae22539f3f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm2:135m-instruct-q5_1", + "name": "smollm2:135m-instruct-q5_1", + "description": "SmolLM2 is a family of compact language models available in three size: 135M, 360M, and 1.7B parameters.", + "size": "112MB", + "digest": "e8d2ad7e6838", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm2:135m-instruct-q5_K_M", + "name": "smollm2:135m-instruct-q5_K_M", + "description": "SmolLM2 is a family of compact language models available in three size: 135M, 360M, and 1.7B parameters.", + "size": "112MB", + "digest": "a703ae7fccb0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm2:135m-instruct-q5_K_S", + "name": "smollm2:135m-instruct-q5_K_S", + "description": "SmolLM2 is a family of compact language models available in three size: 135M, 360M, and 1.7B parameters.", + "size": "110MB", + "digest": "11d6886e86ff", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm2:135m-instruct-q6_K", + "name": "smollm2:135m-instruct-q6_K", + "description": "SmolLM2 is a family of compact language models available in three size: 135M, 360M, and 1.7B parameters.", + "size": "138MB", + "digest": "6e8e767c0cee", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm2:135m-instruct-q8_0", + "name": "smollm2:135m-instruct-q8_0", + "description": "SmolLM2 is a family of compact language models available in three size: 135M, 360M, and 1.7B parameters.", + "size": "145MB", + "digest": "2d470404841a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm2:360m-instruct-fp16", + "name": "smollm2:360m-instruct-fp16", + "description": "SmolLM2 is a family of compact language models available in three size: 135M, 360M, and 1.7B parameters.", + "size": "726MB", + "digest": "297281b699fc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm2:360m-instruct-q2_K", + "name": "smollm2:360m-instruct-q2_K", + "description": "SmolLM2 is a family of compact language models available in three size: 135M, 360M, and 1.7B parameters.", + "size": "219MB", + "digest": "54be4fc61f4d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm2:360m-instruct-q3_K_L", + "name": "smollm2:360m-instruct-q3_K_L", + "description": "SmolLM2 is a family of compact language models available in three size: 135M, 360M, and 1.7B parameters.", + "size": "246MB", + "digest": "43b5786c7936", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm2:360m-instruct-q3_K_M", + "name": "smollm2:360m-instruct-q3_K_M", + "description": "SmolLM2 is a family of compact language models available in three size: 135M, 360M, and 1.7B parameters.", + "size": "235MB", + "digest": "0178f7a9b2a2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm2:360m-instruct-q3_K_S", + "name": "smollm2:360m-instruct-q3_K_S", + "description": "SmolLM2 is a family of compact language models available in three size: 135M, 360M, and 1.7B parameters.", + "size": "219MB", + "digest": "a601e4ea2064", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm2:360m-instruct-q4_0", + "name": "smollm2:360m-instruct-q4_0", + "description": "SmolLM2 is a family of compact language models available in three size: 135M, 360M, and 1.7B parameters.", + "size": "229MB", + "digest": "676f4c06b139", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm2:360m-instruct-q4_1", + "name": "smollm2:360m-instruct-q4_1", + "description": "SmolLM2 is a family of compact language models available in three size: 135M, 360M, and 1.7B parameters.", + "size": "249MB", + "digest": "105941c87459", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm2:360m-instruct-q4_K_M", + "name": "smollm2:360m-instruct-q4_K_M", + "description": "SmolLM2 is a family of compact language models available in three size: 135M, 360M, and 1.7B parameters.", + "size": "271MB", + "digest": "4ca41655e80e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm2:360m-instruct-q4_K_S", + "name": "smollm2:360m-instruct-q4_K_S", + "description": "SmolLM2 is a family of compact language models available in three size: 135M, 360M, and 1.7B parameters.", + "size": "260MB", + "digest": "c03645f8e0dc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm2:360m-instruct-q5_0", + "name": "smollm2:360m-instruct-q5_0", + "description": "SmolLM2 is a family of compact language models available in three size: 135M, 360M, and 1.7B parameters.", + "size": "268MB", + "digest": "456bcbe27a48", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm2:360m-instruct-q5_1", + "name": "smollm2:360m-instruct-q5_1", + "description": "SmolLM2 is a family of compact language models available in three size: 135M, 360M, and 1.7B parameters.", + "size": "288MB", + "digest": "3bcd2b075c64", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm2:360m-instruct-q5_K_M", + "name": "smollm2:360m-instruct-q5_K_M", + "description": "SmolLM2 is a family of compact language models available in three size: 135M, 360M, and 1.7B parameters.", + "size": "290MB", + "digest": "a2f10c17100d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm2:360m-instruct-q5_K_S", + "name": "smollm2:360m-instruct-q5_K_S", + "description": "SmolLM2 is a family of compact language models available in three size: 135M, 360M, and 1.7B parameters.", + "size": "283MB", + "digest": "8d5a33b7fc41", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm2:360m-instruct-q6_K", + "name": "smollm2:360m-instruct-q6_K", + "description": "SmolLM2 is a family of compact language models available in three size: 135M, 360M, and 1.7B parameters.", + "size": "367MB", + "digest": "0b45c0118489", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm2:360m-instruct-q8_0", + "name": "smollm2:360m-instruct-q8_0", + "description": "SmolLM2 is a family of compact language models available in three size: 135M, 360M, and 1.7B parameters.", + "size": "386MB", + "digest": "dfd48b1fa28f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code", + "name": "granite-code", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "2.0GB", + "digest": "becc94fe1876", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "granite-code:3b", + "name": "granite-code:3b", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "2.0GB", + "digest": "becc94fe1876", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:8b", + "name": "granite-code:8b", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "4.6GB", + "digest": "36c3c3b9683b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:20b", + "name": "granite-code:20b", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "12GB", + "digest": "59db7b531bb4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:34b", + "name": "granite-code:34b", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "19GB", + "digest": "4ce00960ca84", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:20b-base", + "name": "granite-code:20b-base", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "12GB", + "digest": "8ab7e91e85ff", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:20b-base-fp16", + "name": "granite-code:20b-base-fp16", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "40GB", + "digest": "30d0d41d27a1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:20b-base-q2_K", + "name": "granite-code:20b-base-q2_K", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "7.9GB", + "digest": "80e7dd534ffd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:20b-base-q3_K_L", + "name": "granite-code:20b-base-q3_K_L", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "12GB", + "digest": "d25be157479e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:20b-base-q3_K_M", + "name": "granite-code:20b-base-q3_K_M", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "11GB", + "digest": "c7252c0c6703", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:20b-base-q3_K_S", + "name": "granite-code:20b-base-q3_K_S", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "8.9GB", + "digest": "67f3e156f5ba", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:20b-base-q4_0", + "name": "granite-code:20b-base-q4_0", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "12GB", + "digest": "8ab7e91e85ff", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:20b-base-q4_1", + "name": "granite-code:20b-base-q4_1", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "13GB", + "digest": "e3a238721ec9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:20b-base-q4_K_M", + "name": "granite-code:20b-base-q4_K_M", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "13GB", + "digest": "81b9da645827", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:20b-base-q4_K_S", + "name": "granite-code:20b-base-q4_K_S", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "12GB", + "digest": "850228967095", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:20b-base-q5_0", + "name": "granite-code:20b-base-q5_0", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "14GB", + "digest": "0b840e35cc32", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:20b-base-q5_1", + "name": "granite-code:20b-base-q5_1", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "15GB", + "digest": "a864d1a8a08a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:20b-base-q5_K_M", + "name": "granite-code:20b-base-q5_K_M", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "15GB", + "digest": "f036fe711fb1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:20b-base-q5_K_S", + "name": "granite-code:20b-base-q5_K_S", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "14GB", + "digest": "e5bdfcf66c14", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:20b-base-q6_K", + "name": "granite-code:20b-base-q6_K", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "17GB", + "digest": "a655ca093ef3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:20b-base-q8_0", + "name": "granite-code:20b-base-q8_0", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "21GB", + "digest": "caf48ed2d622", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:20b-instruct", + "name": "granite-code:20b-instruct", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "12GB", + "digest": "59db7b531bb4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:20b-instruct-8k-fp16", + "name": "granite-code:20b-instruct-8k-fp16", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "40GB", + "digest": "be2ec1259ab5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:20b-instruct-8k-q2_K", + "name": "granite-code:20b-instruct-8k-q2_K", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "7.9GB", + "digest": "4e3dff04ee5b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:20b-instruct-8k-q3_K_L", + "name": "granite-code:20b-instruct-8k-q3_K_L", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "12GB", + "digest": "4c929cf47a4e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:20b-instruct-8k-q3_K_M", + "name": "granite-code:20b-instruct-8k-q3_K_M", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "11GB", + "digest": "9a3be6de6096", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:20b-instruct-8k-q3_K_S", + "name": "granite-code:20b-instruct-8k-q3_K_S", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "8.9GB", + "digest": "cbd8989e4e53", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:20b-instruct-8k-q4_0", + "name": "granite-code:20b-instruct-8k-q4_0", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "12GB", + "digest": "59db7b531bb4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:20b-instruct-8k-q4_1", + "name": "granite-code:20b-instruct-8k-q4_1", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "13GB", + "digest": "6e6ff60ff742", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:20b-instruct-8k-q4_K_M", + "name": "granite-code:20b-instruct-8k-q4_K_M", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "13GB", + "digest": "69917162166a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:20b-instruct-8k-q4_K_S", + "name": "granite-code:20b-instruct-8k-q4_K_S", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "12GB", + "digest": "a012104b6642", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:20b-instruct-8k-q5_0", + "name": "granite-code:20b-instruct-8k-q5_0", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "14GB", + "digest": "4670ab1f3599", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:20b-instruct-8k-q5_1", + "name": "granite-code:20b-instruct-8k-q5_1", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "15GB", + "digest": "0e1290bc14f7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:20b-instruct-8k-q5_K_M", + "name": "granite-code:20b-instruct-8k-q5_K_M", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "15GB", + "digest": "0f7b0be5131a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:20b-instruct-8k-q5_K_S", + "name": "granite-code:20b-instruct-8k-q5_K_S", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "14GB", + "digest": "f9f9a21acb5f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:20b-instruct-8k-q6_K", + "name": "granite-code:20b-instruct-8k-q6_K", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "17GB", + "digest": "a6b84d465ddc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:20b-instruct-8k-q8_0", + "name": "granite-code:20b-instruct-8k-q8_0", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "21GB", + "digest": "d0054322b45c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:20b-instruct-q2_K", + "name": "granite-code:20b-instruct-q2_K", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "7.9GB", + "digest": "dec9b6ea432f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:20b-instruct-q3_K_L", + "name": "granite-code:20b-instruct-q3_K_L", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "12GB", + "digest": "461f5d8eba68", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:20b-instruct-q3_K_M", + "name": "granite-code:20b-instruct-q3_K_M", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "11GB", + "digest": "71837d435f0c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:20b-instruct-q3_K_S", + "name": "granite-code:20b-instruct-q3_K_S", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "8.9GB", + "digest": "c06f1e43b32b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:20b-instruct-q4_0", + "name": "granite-code:20b-instruct-q4_0", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "12GB", + "digest": "31d8bc61e506", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:20b-instruct-q4_1", + "name": "granite-code:20b-instruct-q4_1", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "13GB", + "digest": "f9efbe4f8959", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:20b-instruct-q4_K_M", + "name": "granite-code:20b-instruct-q4_K_M", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "13GB", + "digest": "47eeb409e478", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:20b-instruct-q4_K_S", + "name": "granite-code:20b-instruct-q4_K_S", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "12GB", + "digest": "644444b999f8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:20b-instruct-q5_0", + "name": "granite-code:20b-instruct-q5_0", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "14GB", + "digest": "5db756969808", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:20b-instruct-q5_1", + "name": "granite-code:20b-instruct-q5_1", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "15GB", + "digest": "7b08c7a6dc75", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:20b-instruct-q5_K_M", + "name": "granite-code:20b-instruct-q5_K_M", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "15GB", + "digest": "818c70f50940", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:20b-instruct-q5_K_S", + "name": "granite-code:20b-instruct-q5_K_S", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "14GB", + "digest": "b5d7d53400a9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:20b-instruct-q6_K", + "name": "granite-code:20b-instruct-q6_K", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "17GB", + "digest": "bd2f4bcf34bb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:20b-instruct-q8_0", + "name": "granite-code:20b-instruct-q8_0", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "21GB", + "digest": "b10dca01d737", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:34b-base", + "name": "granite-code:34b-base", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "19GB", + "digest": "42c7e6e2af53", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:34b-base-q2_K", + "name": "granite-code:34b-base-q2_K", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "13GB", + "digest": "c74c785f9aad", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:34b-base-q3_K_L", + "name": "granite-code:34b-base-q3_K_L", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "20GB", + "digest": "7c99e42e5deb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:34b-base-q3_K_M", + "name": "granite-code:34b-base-q3_K_M", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "18GB", + "digest": "4485e027847c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:34b-base-q3_K_S", + "name": "granite-code:34b-base-q3_K_S", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "15GB", + "digest": "31de19958232", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:34b-base-q4_0", + "name": "granite-code:34b-base-q4_0", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "19GB", + "digest": "42c7e6e2af53", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:34b-base-q4_1", + "name": "granite-code:34b-base-q4_1", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "21GB", + "digest": "3770a699dae1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:34b-base-q4_K_M", + "name": "granite-code:34b-base-q4_K_M", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "21GB", + "digest": "f4ad76c0503a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:34b-base-q4_K_S", + "name": "granite-code:34b-base-q4_K_S", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "19GB", + "digest": "d0fbbc626c30", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:34b-base-q5_0", + "name": "granite-code:34b-base-q5_0", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "23GB", + "digest": "fb7a2b093c21", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:34b-base-q5_1", + "name": "granite-code:34b-base-q5_1", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "25GB", + "digest": "0d64b22fd447", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:34b-base-q5_K_M", + "name": "granite-code:34b-base-q5_K_M", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "25GB", + "digest": "3da71b98ed2b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:34b-base-q5_K_S", + "name": "granite-code:34b-base-q5_K_S", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "23GB", + "digest": "c5afa738c212", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:34b-base-q6_K", + "name": "granite-code:34b-base-q6_K", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "28GB", + "digest": "ddf66982e605", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:34b-base-q8_0", + "name": "granite-code:34b-base-q8_0", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "36GB", + "digest": "a1d04f60bc5e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:34b-instruct", + "name": "granite-code:34b-instruct", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "19GB", + "digest": "4ce00960ca84", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:34b-instruct-q2_K", + "name": "granite-code:34b-instruct-q2_K", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "13GB", + "digest": "c74bd2d3910b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:34b-instruct-q3_K_L", + "name": "granite-code:34b-instruct-q3_K_L", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "20GB", + "digest": "51d4b46e9649", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:34b-instruct-q3_K_M", + "name": "granite-code:34b-instruct-q3_K_M", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "18GB", + "digest": "97d3df0a98fb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:34b-instruct-q3_K_S", + "name": "granite-code:34b-instruct-q3_K_S", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "15GB", + "digest": "941db8c58f05", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:34b-instruct-q4_0", + "name": "granite-code:34b-instruct-q4_0", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "19GB", + "digest": "4ce00960ca84", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:34b-instruct-q4_1", + "name": "granite-code:34b-instruct-q4_1", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "21GB", + "digest": "a1cca29491fd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:34b-instruct-q4_K_M", + "name": "granite-code:34b-instruct-q4_K_M", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "21GB", + "digest": "74723d97951a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:34b-instruct-q4_K_S", + "name": "granite-code:34b-instruct-q4_K_S", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "19GB", + "digest": "017ae7f3dba3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:34b-instruct-q5_0", + "name": "granite-code:34b-instruct-q5_0", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "23GB", + "digest": "4d276c35489e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:34b-instruct-q5_1", + "name": "granite-code:34b-instruct-q5_1", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "25GB", + "digest": "f0004bc4aba0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:34b-instruct-q5_K_M", + "name": "granite-code:34b-instruct-q5_K_M", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "25GB", + "digest": "dad8cb2d266e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:34b-instruct-q5_K_S", + "name": "granite-code:34b-instruct-q5_K_S", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "23GB", + "digest": "ad33350a1e2c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:34b-instruct-q6_K", + "name": "granite-code:34b-instruct-q6_K", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "28GB", + "digest": "c71fa145605c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:34b-instruct-q8_0", + "name": "granite-code:34b-instruct-q8_0", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "36GB", + "digest": "abc2bbc41ce5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:3b-base", + "name": "granite-code:3b-base", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "2.0GB", + "digest": "897c973ac371", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:3b-base-fp16", + "name": "granite-code:3b-base-fp16", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "7.0GB", + "digest": "c05254111c3b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:3b-base-q2_K", + "name": "granite-code:3b-base-q2_K", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "1.3GB", + "digest": "e36887a9a821", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:3b-base-q3_K_L", + "name": "granite-code:3b-base-q3_K_L", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "1.9GB", + "digest": "efa391969797", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:3b-base-q3_K_M", + "name": "granite-code:3b-base-q3_K_M", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "1.7GB", + "digest": "6cd1bf544950", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:3b-base-q3_K_S", + "name": "granite-code:3b-base-q3_K_S", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "1.6GB", + "digest": "4ebfe349d653", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:3b-base-q4_0", + "name": "granite-code:3b-base-q4_0", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "2.0GB", + "digest": "897c973ac371", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:3b-base-q4_1", + "name": "granite-code:3b-base-q4_1", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "2.2GB", + "digest": "289762e9c2de", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:3b-base-q4_K_M", + "name": "granite-code:3b-base-q4_K_M", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "2.1GB", + "digest": "074272cf1192", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:3b-base-q4_K_S", + "name": "granite-code:3b-base-q4_K_S", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "2.0GB", + "digest": "05d91372ce79", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:3b-base-q5_0", + "name": "granite-code:3b-base-q5_0", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "2.4GB", + "digest": "564f8e0abfff", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:3b-base-q5_1", + "name": "granite-code:3b-base-q5_1", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "2.6GB", + "digest": "bdb3c9b7c5e4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:3b-base-q5_K_M", + "name": "granite-code:3b-base-q5_K_M", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "2.5GB", + "digest": "9f543ec02c81", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:3b-base-q5_K_S", + "name": "granite-code:3b-base-q5_K_S", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "2.4GB", + "digest": "c2b4985e3261", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:3b-base-q6_K", + "name": "granite-code:3b-base-q6_K", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "2.9GB", + "digest": "ef18db8d2afc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:3b-base-q8_0", + "name": "granite-code:3b-base-q8_0", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "3.7GB", + "digest": "c3464b5e457a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:3b-instruct", + "name": "granite-code:3b-instruct", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "2.0GB", + "digest": "becc94fe1876", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:3b-instruct-128k-fp16", + "name": "granite-code:3b-instruct-128k-fp16", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "7.0GB", + "digest": "0a85292e9c4c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:3b-instruct-128k-q2_K", + "name": "granite-code:3b-instruct-128k-q2_K", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "1.3GB", + "digest": "72154d08acee", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:3b-instruct-128k-q3_K_L", + "name": "granite-code:3b-instruct-128k-q3_K_L", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "1.9GB", + "digest": "c794c5813849", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:3b-instruct-128k-q3_K_M", + "name": "granite-code:3b-instruct-128k-q3_K_M", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "1.7GB", + "digest": "27350580d3ea", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:3b-instruct-128k-q3_K_S", + "name": "granite-code:3b-instruct-128k-q3_K_S", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "1.6GB", + "digest": "c5827e0a7a55", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:3b-instruct-128k-q4_0", + "name": "granite-code:3b-instruct-128k-q4_0", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "2.0GB", + "digest": "becc94fe1876", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:3b-instruct-128k-q4_1", + "name": "granite-code:3b-instruct-128k-q4_1", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "2.2GB", + "digest": "7e9329333607", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:3b-instruct-128k-q4_K_M", + "name": "granite-code:3b-instruct-128k-q4_K_M", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "2.1GB", + "digest": "4702f6327ab5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:3b-instruct-128k-q4_K_S", + "name": "granite-code:3b-instruct-128k-q4_K_S", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "2.0GB", + "digest": "a6c4b37f0dc7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:3b-instruct-128k-q5_0", + "name": "granite-code:3b-instruct-128k-q5_0", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "2.4GB", + "digest": "dece491ce896", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:3b-instruct-128k-q5_1", + "name": "granite-code:3b-instruct-128k-q5_1", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "2.6GB", + "digest": "275d6e2f4fcc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:3b-instruct-128k-q5_K_M", + "name": "granite-code:3b-instruct-128k-q5_K_M", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "2.5GB", + "digest": "39570a508075", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:3b-instruct-128k-q5_K_S", + "name": "granite-code:3b-instruct-128k-q5_K_S", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "2.4GB", + "digest": "07bebb9f1381", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:3b-instruct-128k-q6_K", + "name": "granite-code:3b-instruct-128k-q6_K", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "2.9GB", + "digest": "aac7fdd35a84", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:3b-instruct-128k-q8_0", + "name": "granite-code:3b-instruct-128k-q8_0", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "3.7GB", + "digest": "3ffa9e883e62", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:3b-instruct-fp16", + "name": "granite-code:3b-instruct-fp16", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "7.0GB", + "digest": "788453573810", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:3b-instruct-q2_K", + "name": "granite-code:3b-instruct-q2_K", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "1.3GB", + "digest": "7f3ad6ca25f4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:3b-instruct-q3_K_L", + "name": "granite-code:3b-instruct-q3_K_L", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "1.9GB", + "digest": "d9060e45c47c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:3b-instruct-q3_K_M", + "name": "granite-code:3b-instruct-q3_K_M", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "1.7GB", + "digest": "70ec21a3004e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:3b-instruct-q3_K_S", + "name": "granite-code:3b-instruct-q3_K_S", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "1.6GB", + "digest": "991c2ca80baf", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:3b-instruct-q4_0", + "name": "granite-code:3b-instruct-q4_0", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "2.0GB", + "digest": "63bedbdffbf0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:3b-instruct-q4_1", + "name": "granite-code:3b-instruct-q4_1", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "2.2GB", + "digest": "07c153ea8ba3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:3b-instruct-q4_K_M", + "name": "granite-code:3b-instruct-q4_K_M", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "2.1GB", + "digest": "65861823ce7a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:3b-instruct-q4_K_S", + "name": "granite-code:3b-instruct-q4_K_S", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "2.0GB", + "digest": "c681b8a19c05", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:3b-instruct-q5_0", + "name": "granite-code:3b-instruct-q5_0", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "2.4GB", + "digest": "8a64d99caa8b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:3b-instruct-q5_1", + "name": "granite-code:3b-instruct-q5_1", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "2.6GB", + "digest": "c7b815a477d2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:3b-instruct-q5_K_M", + "name": "granite-code:3b-instruct-q5_K_M", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "2.5GB", + "digest": "2db2e42160a0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:3b-instruct-q5_K_S", + "name": "granite-code:3b-instruct-q5_K_S", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "2.4GB", + "digest": "c1cb0d4855f6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:3b-instruct-q6_K", + "name": "granite-code:3b-instruct-q6_K", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "2.9GB", + "digest": "f9bad785d4c6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:3b-instruct-q8_0", + "name": "granite-code:3b-instruct-q8_0", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "3.7GB", + "digest": "b93b1a15197d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:8b-base", + "name": "granite-code:8b-base", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "4.6GB", + "digest": "446b079c08d8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:8b-base-fp16", + "name": "granite-code:8b-base-fp16", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "16GB", + "digest": "b9ad7693117c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:8b-base-q2_K", + "name": "granite-code:8b-base-q2_K", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "3.1GB", + "digest": "e63080a27380", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:8b-base-q3_K_L", + "name": "granite-code:8b-base-q3_K_L", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "4.3GB", + "digest": "3e786e80fe43", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:8b-base-q3_K_M", + "name": "granite-code:8b-base-q3_K_M", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "3.9GB", + "digest": "ca4d1a480357", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:8b-base-q3_K_S", + "name": "granite-code:8b-base-q3_K_S", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "3.5GB", + "digest": "2ea64f1e1696", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:8b-base-q4_0", + "name": "granite-code:8b-base-q4_0", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "4.6GB", + "digest": "446b079c08d8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:8b-base-q4_1", + "name": "granite-code:8b-base-q4_1", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "5.1GB", + "digest": "8188ceec7ebb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:8b-base-q4_K_M", + "name": "granite-code:8b-base-q4_K_M", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "4.9GB", + "digest": "d1ff254e3ce3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:8b-base-q4_K_S", + "name": "granite-code:8b-base-q4_K_S", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "4.6GB", + "digest": "8b5439b8f8fa", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:8b-base-q5_0", + "name": "granite-code:8b-base-q5_0", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "5.6GB", + "digest": "a2683a6426c6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:8b-base-q5_1", + "name": "granite-code:8b-base-q5_1", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "6.1GB", + "digest": "1ac225f4921f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:8b-base-q5_K_M", + "name": "granite-code:8b-base-q5_K_M", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "5.7GB", + "digest": "571e48fd3f79", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:8b-base-q5_K_S", + "name": "granite-code:8b-base-q5_K_S", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "5.6GB", + "digest": "ac18787cbd38", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:8b-base-q6_K", + "name": "granite-code:8b-base-q6_K", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "6.6GB", + "digest": "85c68aed2abf", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:8b-base-q8_0", + "name": "granite-code:8b-base-q8_0", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "8.6GB", + "digest": "98d17f9b29f7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:8b-instruct", + "name": "granite-code:8b-instruct", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "4.6GB", + "digest": "36c3c3b9683b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:8b-instruct-128k-q4_0", + "name": "granite-code:8b-instruct-128k-q4_0", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "4.6GB", + "digest": "36c3c3b9683b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:8b-instruct-128k-q4_1", + "name": "granite-code:8b-instruct-128k-q4_1", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "5.1GB", + "digest": "0f53e9c9d8be", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:8b-instruct-fp16", + "name": "granite-code:8b-instruct-fp16", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "16GB", + "digest": "ba8f7888f7cd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:8b-instruct-q2_K", + "name": "granite-code:8b-instruct-q2_K", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "3.1GB", + "digest": "e19d9843758d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:8b-instruct-q3_K_L", + "name": "granite-code:8b-instruct-q3_K_L", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "4.3GB", + "digest": "e7a83854c109", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:8b-instruct-q3_K_M", + "name": "granite-code:8b-instruct-q3_K_M", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "3.9GB", + "digest": "bf18f4d1eac9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:8b-instruct-q3_K_S", + "name": "granite-code:8b-instruct-q3_K_S", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "3.5GB", + "digest": "f432fe584c50", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:8b-instruct-q4_0", + "name": "granite-code:8b-instruct-q4_0", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "4.6GB", + "digest": "998bce918de0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:8b-instruct-q4_1", + "name": "granite-code:8b-instruct-q4_1", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "5.1GB", + "digest": "d7b2698267fc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:8b-instruct-q4_K_M", + "name": "granite-code:8b-instruct-q4_K_M", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "4.9GB", + "digest": "6b6cc77a3094", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:8b-instruct-q4_K_S", + "name": "granite-code:8b-instruct-q4_K_S", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "4.6GB", + "digest": "fd077fe10167", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:8b-instruct-q5_0", + "name": "granite-code:8b-instruct-q5_0", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "5.6GB", + "digest": "c577f70d1bcb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:8b-instruct-q5_1", + "name": "granite-code:8b-instruct-q5_1", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "6.1GB", + "digest": "f5c70f717cd7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:8b-instruct-q5_K_M", + "name": "granite-code:8b-instruct-q5_K_M", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "5.7GB", + "digest": "a8781d67d804", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:8b-instruct-q5_K_S", + "name": "granite-code:8b-instruct-q5_K_S", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "5.6GB", + "digest": "47b0d1d1779c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:8b-instruct-q6_K", + "name": "granite-code:8b-instruct-q6_K", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "6.6GB", + "digest": "a929c1ec4cda", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-code:8b-instruct-q8_0", + "name": "granite-code:8b-instruct-q8_0", + "description": "A family of open foundation models by IBM for Code Intelligence", + "size": "8.6GB", + "digest": "068b1c745db2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder", + "name": "starcoder", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "1.8GB", + "digest": "847e5a7aa26f", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "starcoder:1b", + "name": "starcoder:1b", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "726MB", + "digest": "77e6c46054d9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:3b", + "name": "starcoder:3b", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "1.8GB", + "digest": "847e5a7aa26f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:7b", + "name": "starcoder:7b", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "4.3GB", + "digest": "53fdbc3a2006", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:15b", + "name": "starcoder:15b", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "9.0GB", + "digest": "fc59c84e00c5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:15b-base", + "name": "starcoder:15b-base", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "9.0GB", + "digest": "d7484a05d753", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:15b-base-fp16", + "name": "starcoder:15b-base-fp16", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "32GB", + "digest": "bf1c2f49c4d8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:15b-base-q2_K", + "name": "starcoder:15b-base-q2_K", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "6.7GB", + "digest": "cf0025ac31a6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:15b-base-q3_K_L", + "name": "starcoder:15b-base-q3_K_L", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "9.1GB", + "digest": "0a5f9e8bfeda", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:15b-base-q3_K_M", + "name": "starcoder:15b-base-q3_K_M", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "8.2GB", + "digest": "e12e2f17263b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:15b-base-q3_K_S", + "name": "starcoder:15b-base-q3_K_S", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "6.9GB", + "digest": "49fb06b2da48", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:15b-base-q4_0", + "name": "starcoder:15b-base-q4_0", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "9.0GB", + "digest": "d7484a05d753", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:15b-base-q4_1", + "name": "starcoder:15b-base-q4_1", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "10.0GB", + "digest": "81632886fcb2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:15b-base-q4_K_M", + "name": "starcoder:15b-base-q4_K_M", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "10.0GB", + "digest": "c39ac850a90a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:15b-base-q4_K_S", + "name": "starcoder:15b-base-q4_K_S", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "9.1GB", + "digest": "3eefd78d54c9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:15b-base-q5_0", + "name": "starcoder:15b-base-q5_0", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "11GB", + "digest": "2f295880480a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:15b-base-q5_1", + "name": "starcoder:15b-base-q5_1", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "12GB", + "digest": "32fb32a4adc3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:15b-base-q5_K_M", + "name": "starcoder:15b-base-q5_K_M", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "12GB", + "digest": "44e8a4266c9d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:15b-base-q5_K_S", + "name": "starcoder:15b-base-q5_K_S", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "11GB", + "digest": "066bfe3f8056", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:15b-base-q6_K", + "name": "starcoder:15b-base-q6_K", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "13GB", + "digest": "08a7fcaab005", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:15b-base-q8_0", + "name": "starcoder:15b-base-q8_0", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "17GB", + "digest": "3429ab9f535c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:15b-fp16", + "name": "starcoder:15b-fp16", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "32GB", + "digest": "ec7e7aa22c05", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:15b-plus", + "name": "starcoder:15b-plus", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "9.0GB", + "digest": "c7e5fd2a5a6e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:15b-plus-fp16", + "name": "starcoder:15b-plus-fp16", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "32GB", + "digest": "385fd5b5ba4b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:15b-plus-q2_K", + "name": "starcoder:15b-plus-q2_K", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "6.7GB", + "digest": "351a28175173", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:15b-plus-q3_K_L", + "name": "starcoder:15b-plus-q3_K_L", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "9.1GB", + "digest": "0033ce73781b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:15b-plus-q3_K_M", + "name": "starcoder:15b-plus-q3_K_M", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "8.2GB", + "digest": "5de88d9aaa0c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:15b-plus-q3_K_S", + "name": "starcoder:15b-plus-q3_K_S", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "6.9GB", + "digest": "8d4a59571246", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:15b-plus-q4_0", + "name": "starcoder:15b-plus-q4_0", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "9.0GB", + "digest": "c7e5fd2a5a6e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:15b-plus-q4_1", + "name": "starcoder:15b-plus-q4_1", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "10.0GB", + "digest": "a06561602a11", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:15b-plus-q4_K_M", + "name": "starcoder:15b-plus-q4_K_M", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "10.0GB", + "digest": "c3b287cf92f7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:15b-plus-q4_K_S", + "name": "starcoder:15b-plus-q4_K_S", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "9.1GB", + "digest": "74cbc3c93052", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:15b-plus-q5_0", + "name": "starcoder:15b-plus-q5_0", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "11GB", + "digest": "1a9ff4beeb3a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:15b-plus-q5_1", + "name": "starcoder:15b-plus-q5_1", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "12GB", + "digest": "ad34d0ac40fd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:15b-plus-q5_K_M", + "name": "starcoder:15b-plus-q5_K_M", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "12GB", + "digest": "ab94427f1d73", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:15b-plus-q5_K_S", + "name": "starcoder:15b-plus-q5_K_S", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "11GB", + "digest": "f5be3ceb423f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:15b-plus-q6_K", + "name": "starcoder:15b-plus-q6_K", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "13GB", + "digest": "d7b6d6d327ec", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:15b-plus-q8_0", + "name": "starcoder:15b-plus-q8_0", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "17GB", + "digest": "1b9bd9e07437", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:15b-q2_K", + "name": "starcoder:15b-q2_K", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "6.7GB", + "digest": "b3077ce893c2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:15b-q3_K_L", + "name": "starcoder:15b-q3_K_L", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "9.1GB", + "digest": "22becd391a5a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:15b-q3_K_M", + "name": "starcoder:15b-q3_K_M", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "8.2GB", + "digest": "40aa0dd07f6a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:15b-q3_K_S", + "name": "starcoder:15b-q3_K_S", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "6.9GB", + "digest": "96bc55850b3f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:15b-q4_0", + "name": "starcoder:15b-q4_0", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "9.0GB", + "digest": "fc59c84e00c5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:15b-q4_1", + "name": "starcoder:15b-q4_1", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "10.0GB", + "digest": "3e9c4131cc7e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:15b-q4_K_M", + "name": "starcoder:15b-q4_K_M", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "10.0GB", + "digest": "fc211e15d552", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:15b-q4_K_S", + "name": "starcoder:15b-q4_K_S", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "9.1GB", + "digest": "dadad57ccce2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:15b-q5_0", + "name": "starcoder:15b-q5_0", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "11GB", + "digest": "0a9e13e059b4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:15b-q5_1", + "name": "starcoder:15b-q5_1", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "12GB", + "digest": "047af3d6fc2e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:15b-q5_K_M", + "name": "starcoder:15b-q5_K_M", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "12GB", + "digest": "ba547f1125e5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:15b-q5_K_S", + "name": "starcoder:15b-q5_K_S", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "11GB", + "digest": "f3927d2aee49", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:15b-q6_K", + "name": "starcoder:15b-q6_K", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "13GB", + "digest": "afbf115a27bc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:15b-q8_0", + "name": "starcoder:15b-q8_0", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "17GB", + "digest": "ad4a34fcfa8c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:1b-base", + "name": "starcoder:1b-base", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "726MB", + "digest": "77e6c46054d9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:1b-base-fp16", + "name": "starcoder:1b-base-fp16", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "2.5GB", + "digest": "aa71e6e2251f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:1b-base-q2_K", + "name": "starcoder:1b-base-q2_K", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "552MB", + "digest": "e611832ccc67", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:1b-base-q3_K_L", + "name": "starcoder:1b-base-q3_K_L", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "720MB", + "digest": "1c516b827b88", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:1b-base-q3_K_M", + "name": "starcoder:1b-base-q3_K_M", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "661MB", + "digest": "a25e710f7119", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:1b-base-q3_K_S", + "name": "starcoder:1b-base-q3_K_S", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "575MB", + "digest": "1b6492d9dc97", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:1b-base-q4_0", + "name": "starcoder:1b-base-q4_0", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "726MB", + "digest": "77e6c46054d9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:1b-base-q4_1", + "name": "starcoder:1b-base-q4_1", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "797MB", + "digest": "3baa25250d64", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:1b-base-q4_K_M", + "name": "starcoder:1b-base-q4_K_M", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "792MB", + "digest": "04d2cea03d2d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:1b-base-q4_K_S", + "name": "starcoder:1b-base-q4_K_S", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "734MB", + "digest": "decacc801c24", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:1b-base-q5_0", + "name": "starcoder:1b-base-q5_0", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "868MB", + "digest": "fea253550249", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:1b-base-q5_1", + "name": "starcoder:1b-base-q5_1", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "939MB", + "digest": "d0701711acd6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:1b-base-q5_K_M", + "name": "starcoder:1b-base-q5_K_M", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "910MB", + "digest": "7daf9520221a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:1b-base-q5_K_S", + "name": "starcoder:1b-base-q5_K_S", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "868MB", + "digest": "1dcf90992513", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:1b-base-q6_K", + "name": "starcoder:1b-base-q6_K", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "1.0GB", + "digest": "25469472b0a0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:1b-base-q8_0", + "name": "starcoder:1b-base-q8_0", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "1.3GB", + "digest": "31fa9b99844a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:3b-base", + "name": "starcoder:3b-base", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "1.8GB", + "digest": "847e5a7aa26f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:3b-base-fp16", + "name": "starcoder:3b-base-fp16", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "6.4GB", + "digest": "78ed447cecc0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:3b-base-q2_K", + "name": "starcoder:3b-base-q2_K", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "1.4GB", + "digest": "789eb7337dec", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:3b-base-q3_K_L", + "name": "starcoder:3b-base-q3_K_L", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "1.8GB", + "digest": "39fd001be744", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:3b-base-q3_K_M", + "name": "starcoder:3b-base-q3_K_M", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "1.7GB", + "digest": "cf9c26ba35af", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:3b-base-q3_K_S", + "name": "starcoder:3b-base-q3_K_S", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "1.4GB", + "digest": "e0468499b5f9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:3b-base-q4_0", + "name": "starcoder:3b-base-q4_0", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "1.8GB", + "digest": "847e5a7aa26f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:3b-base-q4_1", + "name": "starcoder:3b-base-q4_1", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "2.0GB", + "digest": "af56c93c3815", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:3b-base-q4_K_M", + "name": "starcoder:3b-base-q4_K_M", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "2.0GB", + "digest": "e270645e6450", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:3b-base-q4_K_S", + "name": "starcoder:3b-base-q4_K_S", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "1.8GB", + "digest": "3bc56ee8f943", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:3b-base-q5_0", + "name": "starcoder:3b-base-q5_0", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "2.2GB", + "digest": "fdea54fc597a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:3b-base-q5_1", + "name": "starcoder:3b-base-q5_1", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "2.4GB", + "digest": "b541e773e045", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:3b-base-q5_K_M", + "name": "starcoder:3b-base-q5_K_M", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "2.3GB", + "digest": "70d27a352a1e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:3b-base-q5_K_S", + "name": "starcoder:3b-base-q5_K_S", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "2.2GB", + "digest": "f4bfd7a34676", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:3b-base-q6_K", + "name": "starcoder:3b-base-q6_K", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "2.6GB", + "digest": "2a71811b199a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:3b-base-q8_0", + "name": "starcoder:3b-base-q8_0", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "3.4GB", + "digest": "d4d1dafca09a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:7b-base", + "name": "starcoder:7b-base", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "4.3GB", + "digest": "53fdbc3a2006", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:7b-base-fp16", + "name": "starcoder:7b-base-fp16", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "15GB", + "digest": "191f5e0197c9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:7b-base-q2_K", + "name": "starcoder:7b-base-q2_K", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "3.2GB", + "digest": "b558b1c6e76a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:7b-base-q3_K_L", + "name": "starcoder:7b-base-q3_K_L", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "4.3GB", + "digest": "a357c486e37a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:7b-base-q3_K_M", + "name": "starcoder:7b-base-q3_K_M", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "3.9GB", + "digest": "bb8083ca1497", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:7b-base-q3_K_S", + "name": "starcoder:7b-base-q3_K_S", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "3.3GB", + "digest": "532e32fc6a11", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:7b-base-q4_0", + "name": "starcoder:7b-base-q4_0", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "4.3GB", + "digest": "53fdbc3a2006", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:7b-base-q4_1", + "name": "starcoder:7b-base-q4_1", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "4.8GB", + "digest": "72f4ab441abc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:7b-base-q4_K_M", + "name": "starcoder:7b-base-q4_K_M", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "4.8GB", + "digest": "b9967b21186f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:7b-base-q4_K_S", + "name": "starcoder:7b-base-q4_K_S", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "4.3GB", + "digest": "f8b135eb1ff1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:7b-base-q5_0", + "name": "starcoder:7b-base-q5_0", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "5.2GB", + "digest": "b69e71e71495", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:7b-base-q5_1", + "name": "starcoder:7b-base-q5_1", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "5.7GB", + "digest": "8ab65d19bbae", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:7b-base-q5_K_M", + "name": "starcoder:7b-base-q5_K_M", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "5.5GB", + "digest": "053348db28db", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:7b-base-q5_K_S", + "name": "starcoder:7b-base-q5_K_S", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "5.2GB", + "digest": "97f7ff66448e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:7b-base-q6_K", + "name": "starcoder:7b-base-q6_K", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "6.2GB", + "digest": "35c46a2f3e5d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starcoder:7b-base-q8_0", + "name": "starcoder:7b-base-q8_0", + "description": "StarCoder is a code generation model trained on 80+ programming languages.", + "size": "8.0GB", + "digest": "c5b70c559022", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna-uncensored", + "name": "wizard-vicuna-uncensored", + "description": "Wizard Vicuna Uncensored is a 7B, 13B, and 30B parameter model based on Llama 2 uncensored by Eric Hartford.", + "size": "3.8GB", + "digest": "72fc3c2b99dc", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "wizard-vicuna-uncensored:7b", + "name": "wizard-vicuna-uncensored:7b", + "description": "Wizard Vicuna Uncensored is a 7B, 13B, and 30B parameter model based on Llama 2 uncensored by Eric Hartford.", + "size": "3.8GB", + "digest": "72fc3c2b99dc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna-uncensored:13b", + "name": "wizard-vicuna-uncensored:13b", + "description": "Wizard Vicuna Uncensored is a 7B, 13B, and 30B parameter model based on Llama 2 uncensored by Eric Hartford.", + "size": "7.4GB", + "digest": "6887722b6618", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna-uncensored:30b", + "name": "wizard-vicuna-uncensored:30b", + "description": "Wizard Vicuna Uncensored is a 7B, 13B, and 30B parameter model based on Llama 2 uncensored by Eric Hartford.", + "size": "18GB", + "digest": "5a7102e25304", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna-uncensored:13b-fp16", + "name": "wizard-vicuna-uncensored:13b-fp16", + "description": "Wizard Vicuna Uncensored is a 7B, 13B, and 30B parameter model based on Llama 2 uncensored by Eric Hartford.", + "size": "26GB", + "digest": "23b4a7186107", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna-uncensored:13b-q2_K", + "name": "wizard-vicuna-uncensored:13b-q2_K", + "description": "Wizard Vicuna Uncensored is a 7B, 13B, and 30B parameter model based on Llama 2 uncensored by Eric Hartford.", + "size": "5.4GB", + "digest": "f4f91109c207", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna-uncensored:13b-q3_K_L", + "name": "wizard-vicuna-uncensored:13b-q3_K_L", + "description": "Wizard Vicuna Uncensored is a 7B, 13B, and 30B parameter model based on Llama 2 uncensored by Eric Hartford.", + "size": "6.9GB", + "digest": "88fb403b8c6a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna-uncensored:13b-q3_K_M", + "name": "wizard-vicuna-uncensored:13b-q3_K_M", + "description": "Wizard Vicuna Uncensored is a 7B, 13B, and 30B parameter model based on Llama 2 uncensored by Eric Hartford.", + "size": "6.3GB", + "digest": "ed4a273d6b6d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna-uncensored:13b-q3_K_S", + "name": "wizard-vicuna-uncensored:13b-q3_K_S", + "description": "Wizard Vicuna Uncensored is a 7B, 13B, and 30B parameter model based on Llama 2 uncensored by Eric Hartford.", + "size": "5.7GB", + "digest": "b5832103bdeb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna-uncensored:13b-q4_0", + "name": "wizard-vicuna-uncensored:13b-q4_0", + "description": "Wizard Vicuna Uncensored is a 7B, 13B, and 30B parameter model based on Llama 2 uncensored by Eric Hartford.", + "size": "7.4GB", + "digest": "6887722b6618", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna-uncensored:13b-q4_1", + "name": "wizard-vicuna-uncensored:13b-q4_1", + "description": "Wizard Vicuna Uncensored is a 7B, 13B, and 30B parameter model based on Llama 2 uncensored by Eric Hartford.", + "size": "8.2GB", + "digest": "7455a677d914", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna-uncensored:13b-q4_K_M", + "name": "wizard-vicuna-uncensored:13b-q4_K_M", + "description": "Wizard Vicuna Uncensored is a 7B, 13B, and 30B parameter model based on Llama 2 uncensored by Eric Hartford.", + "size": "7.9GB", + "digest": "e42ad99d49f7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna-uncensored:13b-q4_K_S", + "name": "wizard-vicuna-uncensored:13b-q4_K_S", + "description": "Wizard Vicuna Uncensored is a 7B, 13B, and 30B parameter model based on Llama 2 uncensored by Eric Hartford.", + "size": "7.4GB", + "digest": "709c6745f467", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna-uncensored:13b-q5_0", + "name": "wizard-vicuna-uncensored:13b-q5_0", + "description": "Wizard Vicuna Uncensored is a 7B, 13B, and 30B parameter model based on Llama 2 uncensored by Eric Hartford.", + "size": "9.0GB", + "digest": "dafb313b8b5b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna-uncensored:13b-q5_1", + "name": "wizard-vicuna-uncensored:13b-q5_1", + "description": "Wizard Vicuna Uncensored is a 7B, 13B, and 30B parameter model based on Llama 2 uncensored by Eric Hartford.", + "size": "9.8GB", + "digest": "1154aba9bebb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna-uncensored:13b-q5_K_M", + "name": "wizard-vicuna-uncensored:13b-q5_K_M", + "description": "Wizard Vicuna Uncensored is a 7B, 13B, and 30B parameter model based on Llama 2 uncensored by Eric Hartford.", + "size": "9.2GB", + "digest": "8b5821845aa5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna-uncensored:13b-q5_K_S", + "name": "wizard-vicuna-uncensored:13b-q5_K_S", + "description": "Wizard Vicuna Uncensored is a 7B, 13B, and 30B parameter model based on Llama 2 uncensored by Eric Hartford.", + "size": "9.0GB", + "digest": "be4967133cc3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna-uncensored:13b-q6_K", + "name": "wizard-vicuna-uncensored:13b-q6_K", + "description": "Wizard Vicuna Uncensored is a 7B, 13B, and 30B parameter model based on Llama 2 uncensored by Eric Hartford.", + "size": "11GB", + "digest": "9df4c914f6e7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna-uncensored:13b-q8_0", + "name": "wizard-vicuna-uncensored:13b-q8_0", + "description": "Wizard Vicuna Uncensored is a 7B, 13B, and 30B parameter model based on Llama 2 uncensored by Eric Hartford.", + "size": "14GB", + "digest": "2823c1701714", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna-uncensored:30b-fp16", + "name": "wizard-vicuna-uncensored:30b-fp16", + "description": "Wizard Vicuna Uncensored is a 7B, 13B, and 30B parameter model based on Llama 2 uncensored by Eric Hartford.", + "size": "65GB", + "digest": "bed611752f1a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna-uncensored:30b-q2_K", + "name": "wizard-vicuna-uncensored:30b-q2_K", + "description": "Wizard Vicuna Uncensored is a 7B, 13B, and 30B parameter model based on Llama 2 uncensored by Eric Hartford.", + "size": "14GB", + "digest": "2812ef4f45ba", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna-uncensored:30b-q3_K_L", + "name": "wizard-vicuna-uncensored:30b-q3_K_L", + "description": "Wizard Vicuna Uncensored is a 7B, 13B, and 30B parameter model based on Llama 2 uncensored by Eric Hartford.", + "size": "17GB", + "digest": "05a7d357be60", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna-uncensored:30b-q3_K_M", + "name": "wizard-vicuna-uncensored:30b-q3_K_M", + "description": "Wizard Vicuna Uncensored is a 7B, 13B, and 30B parameter model based on Llama 2 uncensored by Eric Hartford.", + "size": "16GB", + "digest": "9a867b52eb8c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna-uncensored:30b-q3_K_S", + "name": "wizard-vicuna-uncensored:30b-q3_K_S", + "description": "Wizard Vicuna Uncensored is a 7B, 13B, and 30B parameter model based on Llama 2 uncensored by Eric Hartford.", + "size": "14GB", + "digest": "8db4e5c26e07", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna-uncensored:30b-q4_0", + "name": "wizard-vicuna-uncensored:30b-q4_0", + "description": "Wizard Vicuna Uncensored is a 7B, 13B, and 30B parameter model based on Llama 2 uncensored by Eric Hartford.", + "size": "18GB", + "digest": "5a7102e25304", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna-uncensored:30b-q4_1", + "name": "wizard-vicuna-uncensored:30b-q4_1", + "description": "Wizard Vicuna Uncensored is a 7B, 13B, and 30B parameter model based on Llama 2 uncensored by Eric Hartford.", + "size": "20GB", + "digest": "80bbe0a037ad", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna-uncensored:30b-q4_K_M", + "name": "wizard-vicuna-uncensored:30b-q4_K_M", + "description": "Wizard Vicuna Uncensored is a 7B, 13B, and 30B parameter model based on Llama 2 uncensored by Eric Hartford.", + "size": "20GB", + "digest": "acddabb57909", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna-uncensored:30b-q4_K_S", + "name": "wizard-vicuna-uncensored:30b-q4_K_S", + "description": "Wizard Vicuna Uncensored is a 7B, 13B, and 30B parameter model based on Llama 2 uncensored by Eric Hartford.", + "size": "18GB", + "digest": "6c0f7c7f3fed", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna-uncensored:30b-q5_0", + "name": "wizard-vicuna-uncensored:30b-q5_0", + "description": "Wizard Vicuna Uncensored is a 7B, 13B, and 30B parameter model based on Llama 2 uncensored by Eric Hartford.", + "size": "22GB", + "digest": "cffb3de32667", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna-uncensored:30b-q5_1", + "name": "wizard-vicuna-uncensored:30b-q5_1", + "description": "Wizard Vicuna Uncensored is a 7B, 13B, and 30B parameter model based on Llama 2 uncensored by Eric Hartford.", + "size": "24GB", + "digest": "74065a3909bd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna-uncensored:30b-q5_K_M", + "name": "wizard-vicuna-uncensored:30b-q5_K_M", + "description": "Wizard Vicuna Uncensored is a 7B, 13B, and 30B parameter model based on Llama 2 uncensored by Eric Hartford.", + "size": "23GB", + "digest": "abcb5f233465", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna-uncensored:30b-q5_K_S", + "name": "wizard-vicuna-uncensored:30b-q5_K_S", + "description": "Wizard Vicuna Uncensored is a 7B, 13B, and 30B parameter model based on Llama 2 uncensored by Eric Hartford.", + "size": "22GB", + "digest": "fdeaf5e7d150", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna-uncensored:30b-q6_K", + "name": "wizard-vicuna-uncensored:30b-q6_K", + "description": "Wizard Vicuna Uncensored is a 7B, 13B, and 30B parameter model based on Llama 2 uncensored by Eric Hartford.", + "size": "27GB", + "digest": "4943a7ffa702", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna-uncensored:30b-q8_0", + "name": "wizard-vicuna-uncensored:30b-q8_0", + "description": "Wizard Vicuna Uncensored is a 7B, 13B, and 30B parameter model based on Llama 2 uncensored by Eric Hartford.", + "size": "35GB", + "digest": "89ccedd7789e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna-uncensored:7b-fp16", + "name": "wizard-vicuna-uncensored:7b-fp16", + "description": "Wizard Vicuna Uncensored is a 7B, 13B, and 30B parameter model based on Llama 2 uncensored by Eric Hartford.", + "size": "13GB", + "digest": "c8eb2106d1e8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna-uncensored:7b-q2_K", + "name": "wizard-vicuna-uncensored:7b-q2_K", + "description": "Wizard Vicuna Uncensored is a 7B, 13B, and 30B parameter model based on Llama 2 uncensored by Eric Hartford.", + "size": "2.8GB", + "digest": "63f9ff49339b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna-uncensored:7b-q3_K_L", + "name": "wizard-vicuna-uncensored:7b-q3_K_L", + "description": "Wizard Vicuna Uncensored is a 7B, 13B, and 30B parameter model based on Llama 2 uncensored by Eric Hartford.", + "size": "3.6GB", + "digest": "3695bfa5c6db", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna-uncensored:7b-q3_K_M", + "name": "wizard-vicuna-uncensored:7b-q3_K_M", + "description": "Wizard Vicuna Uncensored is a 7B, 13B, and 30B parameter model based on Llama 2 uncensored by Eric Hartford.", + "size": "3.3GB", + "digest": "68169e9e5f14", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna-uncensored:7b-q3_K_S", + "name": "wizard-vicuna-uncensored:7b-q3_K_S", + "description": "Wizard Vicuna Uncensored is a 7B, 13B, and 30B parameter model based on Llama 2 uncensored by Eric Hartford.", + "size": "2.9GB", + "digest": "6b39ccbb5718", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna-uncensored:7b-q4_0", + "name": "wizard-vicuna-uncensored:7b-q4_0", + "description": "Wizard Vicuna Uncensored is a 7B, 13B, and 30B parameter model based on Llama 2 uncensored by Eric Hartford.", + "size": "3.8GB", + "digest": "72fc3c2b99dc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna-uncensored:7b-q4_1", + "name": "wizard-vicuna-uncensored:7b-q4_1", + "description": "Wizard Vicuna Uncensored is a 7B, 13B, and 30B parameter model based on Llama 2 uncensored by Eric Hartford.", + "size": "4.2GB", + "digest": "f4ff0dd82563", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna-uncensored:7b-q4_K_M", + "name": "wizard-vicuna-uncensored:7b-q4_K_M", + "description": "Wizard Vicuna Uncensored is a 7B, 13B, and 30B parameter model based on Llama 2 uncensored by Eric Hartford.", + "size": "4.1GB", + "digest": "0b79dc5d70ec", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna-uncensored:7b-q4_K_S", + "name": "wizard-vicuna-uncensored:7b-q4_K_S", + "description": "Wizard Vicuna Uncensored is a 7B, 13B, and 30B parameter model based on Llama 2 uncensored by Eric Hartford.", + "size": "3.9GB", + "digest": "877e9af2494f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna-uncensored:7b-q5_0", + "name": "wizard-vicuna-uncensored:7b-q5_0", + "description": "Wizard Vicuna Uncensored is a 7B, 13B, and 30B parameter model based on Llama 2 uncensored by Eric Hartford.", + "size": "4.7GB", + "digest": "2613174e3296", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna-uncensored:7b-q5_1", + "name": "wizard-vicuna-uncensored:7b-q5_1", + "description": "Wizard Vicuna Uncensored is a 7B, 13B, and 30B parameter model based on Llama 2 uncensored by Eric Hartford.", + "size": "5.1GB", + "digest": "b20c27fda6cf", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna-uncensored:7b-q5_K_M", + "name": "wizard-vicuna-uncensored:7b-q5_K_M", + "description": "Wizard Vicuna Uncensored is a 7B, 13B, and 30B parameter model based on Llama 2 uncensored by Eric Hartford.", + "size": "4.8GB", + "digest": "ea26b4c246fb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna-uncensored:7b-q5_K_S", + "name": "wizard-vicuna-uncensored:7b-q5_K_S", + "description": "Wizard Vicuna Uncensored is a 7B, 13B, and 30B parameter model based on Llama 2 uncensored by Eric Hartford.", + "size": "4.7GB", + "digest": "9b60f8559ec9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna-uncensored:7b-q6_K", + "name": "wizard-vicuna-uncensored:7b-q6_K", + "description": "Wizard Vicuna Uncensored is a 7B, 13B, and 30B parameter model based on Llama 2 uncensored by Eric Hartford.", + "size": "5.5GB", + "digest": "3c7046c51a44", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna-uncensored:7b-q8_0", + "name": "wizard-vicuna-uncensored:7b-q8_0", + "description": "Wizard Vicuna Uncensored is a 7B, 13B, and 30B parameter model based on Llama 2 uncensored by Eric Hartford.", + "size": "7.2GB", + "digest": "011a3d16558a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna", + "name": "vicuna", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "3.8GB", + "digest": "370739dc897b", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "vicuna:7b", + "name": "vicuna:7b", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "3.8GB", + "digest": "370739dc897b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:13b", + "name": "vicuna:13b", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "7.4GB", + "digest": "e311d03837d9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:33b", + "name": "vicuna:33b", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "18GB", + "digest": "86f0704901a4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:13b-16k", + "name": "vicuna:13b-16k", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "7.4GB", + "digest": "4ea0e2b82bc2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:13b-fp16", + "name": "vicuna:13b-fp16", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "26GB", + "digest": "5c0aaca02f10", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:13b-q2_K", + "name": "vicuna:13b-q2_K", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "5.4GB", + "digest": "c243d669ad2e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:13b-q3_K_L", + "name": "vicuna:13b-q3_K_L", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "6.9GB", + "digest": "3ce284b06308", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:13b-q3_K_M", + "name": "vicuna:13b-q3_K_M", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "6.3GB", + "digest": "5c94116bb4df", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:13b-q3_K_S", + "name": "vicuna:13b-q3_K_S", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "5.7GB", + "digest": "a1f4ecdb04ba", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:13b-q4_0", + "name": "vicuna:13b-q4_0", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "7.4GB", + "digest": "a6aad17d1205", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:13b-q4_1", + "name": "vicuna:13b-q4_1", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "8.2GB", + "digest": "d7b312e7d741", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:13b-q4_K_M", + "name": "vicuna:13b-q4_K_M", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "7.9GB", + "digest": "0f5697218aef", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:13b-q4_K_S", + "name": "vicuna:13b-q4_K_S", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "7.4GB", + "digest": "96cc0c85539e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:13b-q5_0", + "name": "vicuna:13b-q5_0", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "9.0GB", + "digest": "d775a7c5294b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:13b-q5_1", + "name": "vicuna:13b-q5_1", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "9.8GB", + "digest": "65711d83a5ba", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:13b-q5_K_M", + "name": "vicuna:13b-q5_K_M", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "9.2GB", + "digest": "57fc4dcc89d7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:13b-q5_K_S", + "name": "vicuna:13b-q5_K_S", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "9.0GB", + "digest": "9151c66c59cf", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:13b-q6_K", + "name": "vicuna:13b-q6_K", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "11GB", + "digest": "5771033f82b8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:13b-q8_0", + "name": "vicuna:13b-q8_0", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "14GB", + "digest": "1f4a6e7b304c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:13b-v1.5-16k-fp16", + "name": "vicuna:13b-v1.5-16k-fp16", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "26GB", + "digest": "aa225f209212", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:13b-v1.5-16k-q2_K", + "name": "vicuna:13b-v1.5-16k-q2_K", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "5.4GB", + "digest": "c4bc2aac929f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:13b-v1.5-16k-q3_K_L", + "name": "vicuna:13b-v1.5-16k-q3_K_L", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "6.9GB", + "digest": "2354833bf609", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:13b-v1.5-16k-q3_K_M", + "name": "vicuna:13b-v1.5-16k-q3_K_M", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "6.3GB", + "digest": "f713797047ce", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:13b-v1.5-16k-q3_K_S", + "name": "vicuna:13b-v1.5-16k-q3_K_S", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "5.7GB", + "digest": "460254d8fc30", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:13b-v1.5-16k-q4_0", + "name": "vicuna:13b-v1.5-16k-q4_0", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "7.4GB", + "digest": "4ea0e2b82bc2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:13b-v1.5-16k-q4_1", + "name": "vicuna:13b-v1.5-16k-q4_1", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "8.2GB", + "digest": "beaca53a59b9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:13b-v1.5-16k-q4_K_M", + "name": "vicuna:13b-v1.5-16k-q4_K_M", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "7.9GB", + "digest": "99611d39169d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:13b-v1.5-16k-q4_K_S", + "name": "vicuna:13b-v1.5-16k-q4_K_S", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "7.4GB", + "digest": "6c1dcf76ddbd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:13b-v1.5-16k-q5_0", + "name": "vicuna:13b-v1.5-16k-q5_0", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "9.0GB", + "digest": "8994818e295d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:13b-v1.5-16k-q5_1", + "name": "vicuna:13b-v1.5-16k-q5_1", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "9.8GB", + "digest": "b1e60bd134ff", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:13b-v1.5-16k-q5_K_M", + "name": "vicuna:13b-v1.5-16k-q5_K_M", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "9.2GB", + "digest": "3374b3e9b520", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:13b-v1.5-16k-q5_K_S", + "name": "vicuna:13b-v1.5-16k-q5_K_S", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "9.0GB", + "digest": "5d960ceab7d0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:13b-v1.5-16k-q6_K", + "name": "vicuna:13b-v1.5-16k-q6_K", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "11GB", + "digest": "3dabce096571", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:13b-v1.5-16k-q8_0", + "name": "vicuna:13b-v1.5-16k-q8_0", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "14GB", + "digest": "7e91afb2b027", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:13b-v1.5-fp16", + "name": "vicuna:13b-v1.5-fp16", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "26GB", + "digest": "3e2035c21594", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:13b-v1.5-q2_K", + "name": "vicuna:13b-v1.5-q2_K", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "5.4GB", + "digest": "da124fb49a03", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:13b-v1.5-q3_K_L", + "name": "vicuna:13b-v1.5-q3_K_L", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "6.9GB", + "digest": "3a1c75a39e39", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:13b-v1.5-q3_K_M", + "name": "vicuna:13b-v1.5-q3_K_M", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "6.3GB", + "digest": "112a0a219973", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:13b-v1.5-q3_K_S", + "name": "vicuna:13b-v1.5-q3_K_S", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "5.7GB", + "digest": "db9d5d8832a5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:13b-v1.5-q4_0", + "name": "vicuna:13b-v1.5-q4_0", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "7.4GB", + "digest": "e311d03837d9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:13b-v1.5-q4_1", + "name": "vicuna:13b-v1.5-q4_1", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "8.2GB", + "digest": "ca8047f969be", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:13b-v1.5-q4_K_M", + "name": "vicuna:13b-v1.5-q4_K_M", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "7.9GB", + "digest": "d81bdd5ae575", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:13b-v1.5-q4_K_S", + "name": "vicuna:13b-v1.5-q4_K_S", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "7.4GB", + "digest": "c78c1ae11f55", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:13b-v1.5-q5_0", + "name": "vicuna:13b-v1.5-q5_0", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "9.0GB", + "digest": "33be3d9112bd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:13b-v1.5-q5_1", + "name": "vicuna:13b-v1.5-q5_1", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "9.8GB", + "digest": "b03c2008cb04", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:13b-v1.5-q5_K_M", + "name": "vicuna:13b-v1.5-q5_K_M", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "9.2GB", + "digest": "c85a3d3b3b78", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:13b-v1.5-q5_K_S", + "name": "vicuna:13b-v1.5-q5_K_S", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "9.0GB", + "digest": "d3dd8af1f363", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:13b-v1.5-q6_K", + "name": "vicuna:13b-v1.5-q6_K", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "11GB", + "digest": "90d7ed92be1d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:13b-v1.5-q8_0", + "name": "vicuna:13b-v1.5-q8_0", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "14GB", + "digest": "db82e78d570a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:33b-fp16", + "name": "vicuna:33b-fp16", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "65GB", + "digest": "6bc47b18a625", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:33b-q2_K", + "name": "vicuna:33b-q2_K", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "14GB", + "digest": "9129a0b1a6b1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:33b-q3_K_L", + "name": "vicuna:33b-q3_K_L", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "17GB", + "digest": "5f73c820980e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:33b-q3_K_M", + "name": "vicuna:33b-q3_K_M", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "16GB", + "digest": "fe6ff250b94e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:33b-q3_K_S", + "name": "vicuna:33b-q3_K_S", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "14GB", + "digest": "029c30fb56ac", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:33b-q4_0", + "name": "vicuna:33b-q4_0", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "18GB", + "digest": "86f0704901a4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:33b-q4_1", + "name": "vicuna:33b-q4_1", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "20GB", + "digest": "4b40d8826503", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:33b-q4_K_M", + "name": "vicuna:33b-q4_K_M", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "20GB", + "digest": "ae8f63e7638e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:33b-q4_K_S", + "name": "vicuna:33b-q4_K_S", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "18GB", + "digest": "933cc774ba3c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:33b-q5_0", + "name": "vicuna:33b-q5_0", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "22GB", + "digest": "4a6fa67158d8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:33b-q5_1", + "name": "vicuna:33b-q5_1", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "24GB", + "digest": "732296977ff9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:33b-q5_K_M", + "name": "vicuna:33b-q5_K_M", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "23GB", + "digest": "45a15331c3d3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:33b-q5_K_S", + "name": "vicuna:33b-q5_K_S", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "22GB", + "digest": "87a62b85e56f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:33b-q6_K", + "name": "vicuna:33b-q6_K", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "27GB", + "digest": "594c8ae461ac", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:33b-q8_0", + "name": "vicuna:33b-q8_0", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "35GB", + "digest": "dc6380cf87ce", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:7b-16k", + "name": "vicuna:7b-16k", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "3.8GB", + "digest": "e17473565403", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:7b-fp16", + "name": "vicuna:7b-fp16", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "13GB", + "digest": "2b09615317cc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:7b-q2_K", + "name": "vicuna:7b-q2_K", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "2.8GB", + "digest": "7b111124e218", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:7b-q3_K_L", + "name": "vicuna:7b-q3_K_L", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "3.6GB", + "digest": "1ac57ff324d2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:7b-q3_K_M", + "name": "vicuna:7b-q3_K_M", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "3.3GB", + "digest": "a510caa0fb6b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:7b-q3_K_S", + "name": "vicuna:7b-q3_K_S", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "2.9GB", + "digest": "2b471de7ac09", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:7b-q4_0", + "name": "vicuna:7b-q4_0", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "3.8GB", + "digest": "722cb0fe032d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:7b-q4_1", + "name": "vicuna:7b-q4_1", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "4.2GB", + "digest": "daba6226e41c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:7b-q4_K_M", + "name": "vicuna:7b-q4_K_M", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "4.1GB", + "digest": "e702c3f6d1da", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:7b-q4_K_S", + "name": "vicuna:7b-q4_K_S", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "3.9GB", + "digest": "7b22215a6f5a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:7b-q5_0", + "name": "vicuna:7b-q5_0", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "4.7GB", + "digest": "b4be80922f5c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:7b-q5_1", + "name": "vicuna:7b-q5_1", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "5.1GB", + "digest": "3958ed7d2994", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:7b-q5_K_M", + "name": "vicuna:7b-q5_K_M", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "4.8GB", + "digest": "2cc1a91b3ee5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:7b-q5_K_S", + "name": "vicuna:7b-q5_K_S", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "4.7GB", + "digest": "aa085ae496ef", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:7b-q6_K", + "name": "vicuna:7b-q6_K", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "5.5GB", + "digest": "5bbfe6ccf426", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:7b-q8_0", + "name": "vicuna:7b-q8_0", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "7.2GB", + "digest": "abbdf2e7dab4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:7b-v1.5-16k-fp16", + "name": "vicuna:7b-v1.5-16k-fp16", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "13GB", + "digest": "7a1b09b09a43", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:7b-v1.5-16k-q2_K", + "name": "vicuna:7b-v1.5-16k-q2_K", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "2.8GB", + "digest": "409c84f8f2cb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:7b-v1.5-16k-q3_K_L", + "name": "vicuna:7b-v1.5-16k-q3_K_L", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "3.6GB", + "digest": "6e9eee2fdf07", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:7b-v1.5-16k-q3_K_M", + "name": "vicuna:7b-v1.5-16k-q3_K_M", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "3.3GB", + "digest": "9cd3422a7f75", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:7b-v1.5-16k-q3_K_S", + "name": "vicuna:7b-v1.5-16k-q3_K_S", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "2.9GB", + "digest": "e82ccebcca5c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:7b-v1.5-16k-q4_0", + "name": "vicuna:7b-v1.5-16k-q4_0", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "3.8GB", + "digest": "e17473565403", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:7b-v1.5-16k-q4_1", + "name": "vicuna:7b-v1.5-16k-q4_1", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "4.2GB", + "digest": "8af11c99918c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:7b-v1.5-16k-q4_K_M", + "name": "vicuna:7b-v1.5-16k-q4_K_M", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "4.1GB", + "digest": "493df7220cb7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:7b-v1.5-16k-q4_K_S", + "name": "vicuna:7b-v1.5-16k-q4_K_S", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "3.9GB", + "digest": "cc8bb49d8400", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:7b-v1.5-16k-q5_0", + "name": "vicuna:7b-v1.5-16k-q5_0", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "4.7GB", + "digest": "5c89be046446", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:7b-v1.5-16k-q5_1", + "name": "vicuna:7b-v1.5-16k-q5_1", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "5.1GB", + "digest": "8988900a59a5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:7b-v1.5-16k-q5_K_M", + "name": "vicuna:7b-v1.5-16k-q5_K_M", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "4.8GB", + "digest": "20d16dc9be3e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:7b-v1.5-16k-q5_K_S", + "name": "vicuna:7b-v1.5-16k-q5_K_S", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "4.7GB", + "digest": "52cf0588ba15", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:7b-v1.5-16k-q6_K", + "name": "vicuna:7b-v1.5-16k-q6_K", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "5.5GB", + "digest": "62fe512efb47", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:7b-v1.5-16k-q8_0", + "name": "vicuna:7b-v1.5-16k-q8_0", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "7.2GB", + "digest": "32abbaf4d985", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:7b-v1.5-fp16", + "name": "vicuna:7b-v1.5-fp16", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "13GB", + "digest": "1e2de112296e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:7b-v1.5-q2_K", + "name": "vicuna:7b-v1.5-q2_K", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "2.8GB", + "digest": "ce1d7d2d4c36", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:7b-v1.5-q3_K_L", + "name": "vicuna:7b-v1.5-q3_K_L", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "3.6GB", + "digest": "5958c72021fe", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:7b-v1.5-q3_K_M", + "name": "vicuna:7b-v1.5-q3_K_M", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "3.3GB", + "digest": "b617de3e65a1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:7b-v1.5-q3_K_S", + "name": "vicuna:7b-v1.5-q3_K_S", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "2.9GB", + "digest": "d4a35f8b2ff8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:7b-v1.5-q4_0", + "name": "vicuna:7b-v1.5-q4_0", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "3.8GB", + "digest": "370739dc897b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:7b-v1.5-q4_1", + "name": "vicuna:7b-v1.5-q4_1", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "4.2GB", + "digest": "49882f87f7a7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:7b-v1.5-q4_K_M", + "name": "vicuna:7b-v1.5-q4_K_M", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "4.1GB", + "digest": "33b5fd751101", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:7b-v1.5-q4_K_S", + "name": "vicuna:7b-v1.5-q4_K_S", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "3.9GB", + "digest": "9dbfd37d1be3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:7b-v1.5-q5_0", + "name": "vicuna:7b-v1.5-q5_0", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "4.7GB", + "digest": "48de3e58864e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:7b-v1.5-q5_1", + "name": "vicuna:7b-v1.5-q5_1", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "5.1GB", + "digest": "fa2d15c41d43", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:7b-v1.5-q5_K_M", + "name": "vicuna:7b-v1.5-q5_K_M", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "4.8GB", + "digest": "f734686befb8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:7b-v1.5-q5_K_S", + "name": "vicuna:7b-v1.5-q5_K_S", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "4.7GB", + "digest": "6167e172bf05", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:7b-v1.5-q6_K", + "name": "vicuna:7b-v1.5-q6_K", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "5.5GB", + "digest": "cfceb01fd96f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "vicuna:7b-v1.5-q8_0", + "name": "vicuna:7b-v1.5-q8_0", + "description": "General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.", + "size": "7.2GB", + "digest": "df07a6d74df1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm", + "name": "smollm", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "991MB", + "digest": "95f6557a0f0f", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "smollm:135m", + "name": "smollm:135m", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "92MB", + "digest": "b0b2a4617438", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:360m", + "name": "smollm:360m", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "229MB", + "digest": "b3ba1ccba2b8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:1.7b", + "name": "smollm:1.7b", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "991MB", + "digest": "95f6557a0f0f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:1.7b-base-v0.2-fp16", + "name": "smollm:1.7b-base-v0.2-fp16", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "3.4GB", + "digest": "64f31ee84d1c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:1.7b-base-v0.2-q2_K", + "name": "smollm:1.7b-base-v0.2-q2_K", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "675MB", + "digest": "b013da007877", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:1.7b-base-v0.2-q3_K_L", + "name": "smollm:1.7b-base-v0.2-q3_K_L", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "933MB", + "digest": "9656463272fe", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:1.7b-base-v0.2-q3_K_M", + "name": "smollm:1.7b-base-v0.2-q3_K_M", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "860MB", + "digest": "9acc25818892", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:1.7b-base-v0.2-q3_K_S", + "name": "smollm:1.7b-base-v0.2-q3_K_S", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "777MB", + "digest": "596523cb1def", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:1.7b-base-v0.2-q4_0", + "name": "smollm:1.7b-base-v0.2-q4_0", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "991MB", + "digest": "97f3f0aef2df", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:1.7b-base-v0.2-q4_1", + "name": "smollm:1.7b-base-v0.2-q4_1", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "1.1GB", + "digest": "0c1bb3471f92", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:1.7b-base-v0.2-q4_K_M", + "name": "smollm:1.7b-base-v0.2-q4_K_M", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "1.1GB", + "digest": "8dec12ffec4a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:1.7b-base-v0.2-q4_K_S", + "name": "smollm:1.7b-base-v0.2-q4_K_S", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "999MB", + "digest": "9b3d36b6e0c2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:1.7b-base-v0.2-q5_0", + "name": "smollm:1.7b-base-v0.2-q5_0", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "1.2GB", + "digest": "7eddfb294e53", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:1.7b-base-v0.2-q5_1", + "name": "smollm:1.7b-base-v0.2-q5_1", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "1.3GB", + "digest": "fde4c91abcce", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:1.7b-base-v0.2-q5_K_M", + "name": "smollm:1.7b-base-v0.2-q5_K_M", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "1.2GB", + "digest": "7daaf6f561d8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:1.7b-base-v0.2-q5_K_S", + "name": "smollm:1.7b-base-v0.2-q5_K_S", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "1.2GB", + "digest": "4f0e5ec42d5b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:1.7b-base-v0.2-q6_K", + "name": "smollm:1.7b-base-v0.2-q6_K", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "1.4GB", + "digest": "9cf3be2645b6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:1.7b-base-v0.2-q8_0", + "name": "smollm:1.7b-base-v0.2-q8_0", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "1.8GB", + "digest": "d1f91cd676ad", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:1.7b-instruct-v0.2-fp16", + "name": "smollm:1.7b-instruct-v0.2-fp16", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "3.4GB", + "digest": "b07e591ca9ba", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:1.7b-instruct-v0.2-q2_K", + "name": "smollm:1.7b-instruct-v0.2-q2_K", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "675MB", + "digest": "da8ba92e42b1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:1.7b-instruct-v0.2-q3_K_L", + "name": "smollm:1.7b-instruct-v0.2-q3_K_L", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "933MB", + "digest": "88ef3062260e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:1.7b-instruct-v0.2-q3_K_M", + "name": "smollm:1.7b-instruct-v0.2-q3_K_M", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "860MB", + "digest": "728c1f932b06", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:1.7b-instruct-v0.2-q3_K_S", + "name": "smollm:1.7b-instruct-v0.2-q3_K_S", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "777MB", + "digest": "c35438da7180", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:1.7b-instruct-v0.2-q4_0", + "name": "smollm:1.7b-instruct-v0.2-q4_0", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "991MB", + "digest": "95f6557a0f0f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:1.7b-instruct-v0.2-q4_1", + "name": "smollm:1.7b-instruct-v0.2-q4_1", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "1.1GB", + "digest": "77d7238b232e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:1.7b-instruct-v0.2-q4_K_M", + "name": "smollm:1.7b-instruct-v0.2-q4_K_M", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "1.1GB", + "digest": "dd7299829a14", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:1.7b-instruct-v0.2-q4_K_S", + "name": "smollm:1.7b-instruct-v0.2-q4_K_S", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "999MB", + "digest": "35eec1a7014d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:1.7b-instruct-v0.2-q5_0", + "name": "smollm:1.7b-instruct-v0.2-q5_0", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "1.2GB", + "digest": "8391060f29db", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:1.7b-instruct-v0.2-q5_1", + "name": "smollm:1.7b-instruct-v0.2-q5_1", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "1.3GB", + "digest": "ce91dd1d7380", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:1.7b-instruct-v0.2-q5_K_M", + "name": "smollm:1.7b-instruct-v0.2-q5_K_M", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "1.2GB", + "digest": "91d16f72a7b3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:1.7b-instruct-v0.2-q5_K_S", + "name": "smollm:1.7b-instruct-v0.2-q5_K_S", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "1.2GB", + "digest": "489a893ac8a7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:1.7b-instruct-v0.2-q6_K", + "name": "smollm:1.7b-instruct-v0.2-q6_K", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "1.4GB", + "digest": "ecdf9864899c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:1.7b-instruct-v0.2-q8_0", + "name": "smollm:1.7b-instruct-v0.2-q8_0", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "1.8GB", + "digest": "4afeb8de9eec", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:135m-base-v0.2-fp16", + "name": "smollm:135m-base-v0.2-fp16", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "271MB", + "digest": "1d0f00cec918", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:135m-base-v0.2-q2_K", + "name": "smollm:135m-base-v0.2-q2_K", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "88MB", + "digest": "e2048e8ac78d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:135m-base-v0.2-q3_K_L", + "name": "smollm:135m-base-v0.2-q3_K_L", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "98MB", + "digest": "c2e22813067a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:135m-base-v0.2-q3_K_M", + "name": "smollm:135m-base-v0.2-q3_K_M", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "94MB", + "digest": "a5ab45ae2e2e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:135m-base-v0.2-q3_K_S", + "name": "smollm:135m-base-v0.2-q3_K_S", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "88MB", + "digest": "102433ffd9fb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:135m-base-v0.2-q4_0", + "name": "smollm:135m-base-v0.2-q4_0", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "92MB", + "digest": "528415e872e5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:135m-base-v0.2-q4_1", + "name": "smollm:135m-base-v0.2-q4_1", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "98MB", + "digest": "edecca7cff90", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:135m-base-v0.2-q4_K_M", + "name": "smollm:135m-base-v0.2-q4_K_M", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "105MB", + "digest": "3177ecf5d3b5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:135m-base-v0.2-q4_K_S", + "name": "smollm:135m-base-v0.2-q4_K_S", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "102MB", + "digest": "2aa760d22716", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:135m-base-v0.2-q5_0", + "name": "smollm:135m-base-v0.2-q5_0", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "105MB", + "digest": "825973a56945", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:135m-base-v0.2-q5_1", + "name": "smollm:135m-base-v0.2-q5_1", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "112MB", + "digest": "065d585f86d9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:135m-base-v0.2-q5_K_M", + "name": "smollm:135m-base-v0.2-q5_K_M", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "112MB", + "digest": "34545da0aa92", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:135m-base-v0.2-q5_K_S", + "name": "smollm:135m-base-v0.2-q5_K_S", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "110MB", + "digest": "4aef8aaa4469", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:135m-base-v0.2-q6_K", + "name": "smollm:135m-base-v0.2-q6_K", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "138MB", + "digest": "b11338fff65a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:135m-base-v0.2-q8_0", + "name": "smollm:135m-base-v0.2-q8_0", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "145MB", + "digest": "fcdc33f9909d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:135m-instruct-v0.2-fp16", + "name": "smollm:135m-instruct-v0.2-fp16", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "271MB", + "digest": "95d01a081beb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:135m-instruct-v0.2-q2_K", + "name": "smollm:135m-instruct-v0.2-q2_K", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "88MB", + "digest": "e14a680b0b22", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:135m-instruct-v0.2-q3_K_L", + "name": "smollm:135m-instruct-v0.2-q3_K_L", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "98MB", + "digest": "aede666c7e16", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:135m-instruct-v0.2-q3_K_M", + "name": "smollm:135m-instruct-v0.2-q3_K_M", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "94MB", + "digest": "f5db1ab329b1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:135m-instruct-v0.2-q3_K_S", + "name": "smollm:135m-instruct-v0.2-q3_K_S", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "88MB", + "digest": "3ae895b5e9ea", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:135m-instruct-v0.2-q4_0", + "name": "smollm:135m-instruct-v0.2-q4_0", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "92MB", + "digest": "b0b2a4617438", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:135m-instruct-v0.2-q4_1", + "name": "smollm:135m-instruct-v0.2-q4_1", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "98MB", + "digest": "bbf7e14150a9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:135m-instruct-v0.2-q4_K_M", + "name": "smollm:135m-instruct-v0.2-q4_K_M", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "105MB", + "digest": "7eedbf45baa1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:135m-instruct-v0.2-q4_K_S", + "name": "smollm:135m-instruct-v0.2-q4_K_S", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "102MB", + "digest": "45013939c7c9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:135m-instruct-v0.2-q5_0", + "name": "smollm:135m-instruct-v0.2-q5_0", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "105MB", + "digest": "33187e134422", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:135m-instruct-v0.2-q5_1", + "name": "smollm:135m-instruct-v0.2-q5_1", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "112MB", + "digest": "51f73e9aa3f5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:135m-instruct-v0.2-q5_K_M", + "name": "smollm:135m-instruct-v0.2-q5_K_M", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "112MB", + "digest": "a8975f4dc03b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:135m-instruct-v0.2-q5_K_S", + "name": "smollm:135m-instruct-v0.2-q5_K_S", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "110MB", + "digest": "52d3fabb63ee", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:135m-instruct-v0.2-q6_K", + "name": "smollm:135m-instruct-v0.2-q6_K", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "138MB", + "digest": "dd1e60cf54df", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:135m-instruct-v0.2-q8_0", + "name": "smollm:135m-instruct-v0.2-q8_0", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "145MB", + "digest": "6fbf8e918862", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:360m-base-v0.2-fp16", + "name": "smollm:360m-base-v0.2-fp16", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "726MB", + "digest": "417c81308b94", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:360m-base-v0.2-q2_K", + "name": "smollm:360m-base-v0.2-q2_K", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "219MB", + "digest": "e5e1a58c7d0c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:360m-base-v0.2-q3_K_L", + "name": "smollm:360m-base-v0.2-q3_K_L", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "246MB", + "digest": "d13db1d8af29", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:360m-base-v0.2-q3_K_M", + "name": "smollm:360m-base-v0.2-q3_K_M", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "235MB", + "digest": "66875ceb33a7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:360m-base-v0.2-q3_K_S", + "name": "smollm:360m-base-v0.2-q3_K_S", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "219MB", + "digest": "8aba991b34bf", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:360m-base-v0.2-q4_0", + "name": "smollm:360m-base-v0.2-q4_0", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "229MB", + "digest": "32ed02cfe24e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:360m-base-v0.2-q4_1", + "name": "smollm:360m-base-v0.2-q4_1", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "249MB", + "digest": "74c8ae01b04d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:360m-base-v0.2-q4_K_M", + "name": "smollm:360m-base-v0.2-q4_K_M", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "271MB", + "digest": "d3b4961678c3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:360m-base-v0.2-q4_K_S", + "name": "smollm:360m-base-v0.2-q4_K_S", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "260MB", + "digest": "81b950fac810", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:360m-base-v0.2-q5_0", + "name": "smollm:360m-base-v0.2-q5_0", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "268MB", + "digest": "319a822c1baa", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:360m-base-v0.2-q5_1", + "name": "smollm:360m-base-v0.2-q5_1", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "288MB", + "digest": "1c350d9f5c43", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:360m-base-v0.2-q5_K_M", + "name": "smollm:360m-base-v0.2-q5_K_M", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "290MB", + "digest": "bf2e3336142d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:360m-base-v0.2-q5_K_S", + "name": "smollm:360m-base-v0.2-q5_K_S", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "283MB", + "digest": "05dad743d112", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:360m-base-v0.2-q6_K", + "name": "smollm:360m-base-v0.2-q6_K", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "367MB", + "digest": "6006320b3839", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:360m-base-v0.2-q8_0", + "name": "smollm:360m-base-v0.2-q8_0", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "386MB", + "digest": "dd417453fb49", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:360m-instruct-v0.2-fp16", + "name": "smollm:360m-instruct-v0.2-fp16", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "726MB", + "digest": "d0475be06ee3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:360m-instruct-v0.2-q2_K", + "name": "smollm:360m-instruct-v0.2-q2_K", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "219MB", + "digest": "1dfe94149c4d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:360m-instruct-v0.2-q3_K_L", + "name": "smollm:360m-instruct-v0.2-q3_K_L", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "246MB", + "digest": "6f711219bd5f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:360m-instruct-v0.2-q3_K_M", + "name": "smollm:360m-instruct-v0.2-q3_K_M", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "235MB", + "digest": "4ecfcbc87975", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:360m-instruct-v0.2-q3_K_S", + "name": "smollm:360m-instruct-v0.2-q3_K_S", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "219MB", + "digest": "359f743b44a1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:360m-instruct-v0.2-q4_0", + "name": "smollm:360m-instruct-v0.2-q4_0", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "229MB", + "digest": "b3ba1ccba2b8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:360m-instruct-v0.2-q4_1", + "name": "smollm:360m-instruct-v0.2-q4_1", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "249MB", + "digest": "4a28c336aedd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:360m-instruct-v0.2-q4_K_M", + "name": "smollm:360m-instruct-v0.2-q4_K_M", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "271MB", + "digest": "535cb302b6b9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:360m-instruct-v0.2-q4_K_S", + "name": "smollm:360m-instruct-v0.2-q4_K_S", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "260MB", + "digest": "467e6683fe66", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:360m-instruct-v0.2-q5_0", + "name": "smollm:360m-instruct-v0.2-q5_0", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "268MB", + "digest": "922f6b925c58", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:360m-instruct-v0.2-q5_1", + "name": "smollm:360m-instruct-v0.2-q5_1", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "288MB", + "digest": "a09f3a169083", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:360m-instruct-v0.2-q5_K_M", + "name": "smollm:360m-instruct-v0.2-q5_K_M", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "290MB", + "digest": "0ad0a334e14f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:360m-instruct-v0.2-q5_K_S", + "name": "smollm:360m-instruct-v0.2-q5_K_S", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "283MB", + "digest": "8695c1a78c18", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:360m-instruct-v0.2-q6_K", + "name": "smollm:360m-instruct-v0.2-q6_K", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "367MB", + "digest": "2102f951424a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smollm:360m-instruct-v0.2-q8_0", + "name": "smollm:360m-instruct-v0.2-q8_0", + "description": "🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a new high-quality dataset.", + "size": "386MB", + "digest": "f5ef53463545", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-openorca", + "name": "mistral-openorca", + "description": "Mistral OpenOrca is a 7 billion parameter model, fine-tuned on top of the Mistral 7B model using the OpenOrca dataset.", + "size": "4.1GB", + "digest": "12dc6acc14d0", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "mistral-openorca:7b", + "name": "mistral-openorca:7b", + "description": "Mistral OpenOrca is a 7 billion parameter model, fine-tuned on top of the Mistral 7B model using the OpenOrca dataset.", + "size": "4.1GB", + "digest": "12dc6acc14d0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-openorca:7b-fp16", + "name": "mistral-openorca:7b-fp16", + "description": "Mistral OpenOrca is a 7 billion parameter model, fine-tuned on top of the Mistral 7B model using the OpenOrca dataset.", + "size": "14GB", + "digest": "c3544390282f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-openorca:7b-q2_K", + "name": "mistral-openorca:7b-q2_K", + "description": "Mistral OpenOrca is a 7 billion parameter model, fine-tuned on top of the Mistral 7B model using the OpenOrca dataset.", + "size": "3.1GB", + "digest": "977fdfe52b7c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-openorca:7b-q3_K_L", + "name": "mistral-openorca:7b-q3_K_L", + "description": "Mistral OpenOrca is a 7 billion parameter model, fine-tuned on top of the Mistral 7B model using the OpenOrca dataset.", + "size": "3.8GB", + "digest": "e80eba13740d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-openorca:7b-q3_K_M", + "name": "mistral-openorca:7b-q3_K_M", + "description": "Mistral OpenOrca is a 7 billion parameter model, fine-tuned on top of the Mistral 7B model using the OpenOrca dataset.", + "size": "3.5GB", + "digest": "1c71a3f469da", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-openorca:7b-q3_K_S", + "name": "mistral-openorca:7b-q3_K_S", + "description": "Mistral OpenOrca is a 7 billion parameter model, fine-tuned on top of the Mistral 7B model using the OpenOrca dataset.", + "size": "3.2GB", + "digest": "2274bf658e73", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-openorca:7b-q4_0", + "name": "mistral-openorca:7b-q4_0", + "description": "Mistral OpenOrca is a 7 billion parameter model, fine-tuned on top of the Mistral 7B model using the OpenOrca dataset.", + "size": "4.1GB", + "digest": "12dc6acc14d0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-openorca:7b-q4_1", + "name": "mistral-openorca:7b-q4_1", + "description": "Mistral OpenOrca is a 7 billion parameter model, fine-tuned on top of the Mistral 7B model using the OpenOrca dataset.", + "size": "4.6GB", + "digest": "185461182e00", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-openorca:7b-q4_K_M", + "name": "mistral-openorca:7b-q4_K_M", + "description": "Mistral OpenOrca is a 7 billion parameter model, fine-tuned on top of the Mistral 7B model using the OpenOrca dataset.", + "size": "4.4GB", + "digest": "d4fd6870e8eb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-openorca:7b-q4_K_S", + "name": "mistral-openorca:7b-q4_K_S", + "description": "Mistral OpenOrca is a 7 billion parameter model, fine-tuned on top of the Mistral 7B model using the OpenOrca dataset.", + "size": "4.1GB", + "digest": "b8b68de9a6c0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-openorca:7b-q5_0", + "name": "mistral-openorca:7b-q5_0", + "description": "Mistral OpenOrca is a 7 billion parameter model, fine-tuned on top of the Mistral 7B model using the OpenOrca dataset.", + "size": "5.0GB", + "digest": "da128676aa71", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-openorca:7b-q5_1", + "name": "mistral-openorca:7b-q5_1", + "description": "Mistral OpenOrca is a 7 billion parameter model, fine-tuned on top of the Mistral 7B model using the OpenOrca dataset.", + "size": "5.4GB", + "digest": "864f8be0fd03", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-openorca:7b-q5_K_M", + "name": "mistral-openorca:7b-q5_K_M", + "description": "Mistral OpenOrca is a 7 billion parameter model, fine-tuned on top of the Mistral 7B model using the OpenOrca dataset.", + "size": "5.1GB", + "digest": "30b5e000fa20", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-openorca:7b-q5_K_S", + "name": "mistral-openorca:7b-q5_K_S", + "description": "Mistral OpenOrca is a 7 billion parameter model, fine-tuned on top of the Mistral 7B model using the OpenOrca dataset.", + "size": "5.0GB", + "digest": "dc071e3647c7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-openorca:7b-q6_K", + "name": "mistral-openorca:7b-q6_K", + "description": "Mistral OpenOrca is a 7 billion parameter model, fine-tuned on top of the Mistral 7B model using the OpenOrca dataset.", + "size": "5.9GB", + "digest": "74e3eb59f041", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-openorca:7b-q8_0", + "name": "mistral-openorca:7b-q8_0", + "description": "Mistral OpenOrca is a 7 billion parameter model, fine-tuned on top of the Mistral 7B model using the OpenOrca dataset.", + "size": "7.7GB", + "digest": "d7fd37191d96", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "minicpm-v", + "name": "minicpm-v", + "description": "A series of multimodal LLMs (MLLMs) designed for vision-language understanding.", + "size": "5.5GB", + "digest": "c92bfad01205", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "minicpm-v:8b", + "name": "minicpm-v:8b", + "description": "A series of multimodal LLMs (MLLMs) designed for vision-language understanding.", + "size": "5.5GB", + "digest": "c92bfad01205", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "minicpm-v:8b-2.6-fp16", + "name": "minicpm-v:8b-2.6-fp16", + "description": "A series of multimodal LLMs (MLLMs) designed for vision-language understanding.", + "size": "16GB", + "digest": "f3f122c78635", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "minicpm-v:8b-2.6-q2_K", + "name": "minicpm-v:8b-2.6-q2_K", + "description": "A series of multimodal LLMs (MLLMs) designed for vision-language understanding.", + "size": "4.1GB", + "digest": "61cf7cf5edda", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "minicpm-v:8b-2.6-q3_K_L", + "name": "minicpm-v:8b-2.6-q3_K_L", + "description": "A series of multimodal LLMs (MLLMs) designed for vision-language understanding.", + "size": "5.1GB", + "digest": "a62e8056b1f0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "minicpm-v:8b-2.6-q3_K_M", + "name": "minicpm-v:8b-2.6-q3_K_M", + "description": "A series of multimodal LLMs (MLLMs) designed for vision-language understanding.", + "size": "4.9GB", + "digest": "b7c14f8aad8c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "minicpm-v:8b-2.6-q3_K_S", + "name": "minicpm-v:8b-2.6-q3_K_S", + "description": "A series of multimodal LLMs (MLLMs) designed for vision-language understanding.", + "size": "4.5GB", + "digest": "0e5dd84b9d34", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "minicpm-v:8b-2.6-q4_0", + "name": "minicpm-v:8b-2.6-q4_0", + "description": "A series of multimodal LLMs (MLLMs) designed for vision-language understanding.", + "size": "5.5GB", + "digest": "c92bfad01205", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "minicpm-v:8b-2.6-q4_1", + "name": "minicpm-v:8b-2.6-q4_1", + "description": "A series of multimodal LLMs (MLLMs) designed for vision-language understanding.", + "size": "5.9GB", + "digest": "1e17cbffa666", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "minicpm-v:8b-2.6-q4_K_M", + "name": "minicpm-v:8b-2.6-q4_K_M", + "description": "A series of multimodal LLMs (MLLMs) designed for vision-language understanding.", + "size": "5.7GB", + "digest": "950a671abea6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "minicpm-v:8b-2.6-q4_K_S", + "name": "minicpm-v:8b-2.6-q4_K_S", + "description": "A series of multimodal LLMs (MLLMs) designed for vision-language understanding.", + "size": "5.5GB", + "digest": "eda89b106de0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "minicpm-v:8b-2.6-q5_0", + "name": "minicpm-v:8b-2.6-q5_0", + "description": "A series of multimodal LLMs (MLLMs) designed for vision-language understanding.", + "size": "6.4GB", + "digest": "4b28c460b85e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "minicpm-v:8b-2.6-q5_1", + "name": "minicpm-v:8b-2.6-q5_1", + "description": "A series of multimodal LLMs (MLLMs) designed for vision-language understanding.", + "size": "6.8GB", + "digest": "6ac2a6038e89", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "minicpm-v:8b-2.6-q5_K_M", + "name": "minicpm-v:8b-2.6-q5_K_M", + "description": "A series of multimodal LLMs (MLLMs) designed for vision-language understanding.", + "size": "6.5GB", + "digest": "6dfa70b0f281", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "minicpm-v:8b-2.6-q5_K_S", + "name": "minicpm-v:8b-2.6-q5_K_S", + "description": "A series of multimodal LLMs (MLLMs) designed for vision-language understanding.", + "size": "6.4GB", + "digest": "b4d3d0c08b9c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "minicpm-v:8b-2.6-q6_K", + "name": "minicpm-v:8b-2.6-q6_K", + "description": "A series of multimodal LLMs (MLLMs) designed for vision-language understanding.", + "size": "7.3GB", + "digest": "ac20b8a12390", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "minicpm-v:8b-2.6-q8_0", + "name": "minicpm-v:8b-2.6-q8_0", + "description": "A series of multimodal LLMs (MLLMs) designed for vision-language understanding.", + "size": "9.1GB", + "digest": "9e2efdd7b657", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwq", + "name": "qwq", + "description": "QwQ is an experimental research model focused on advancing AI reasoning capabilities.", + "size": "20GB", + "digest": "46407beda5c0", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "qwq:32b", + "name": "qwq:32b", + "description": "QwQ is an experimental research model focused on advancing AI reasoning capabilities.", + "size": "20GB", + "digest": "46407beda5c0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwq:32b-preview-fp16", + "name": "qwq:32b-preview-fp16", + "description": "QwQ is an experimental research model focused on advancing AI reasoning capabilities.", + "size": "66GB", + "digest": "44d5ed096b85", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwq:32b-preview-q4_K_M", + "name": "qwq:32b-preview-q4_K_M", + "description": "QwQ is an experimental research model focused on advancing AI reasoning capabilities.", + "size": "20GB", + "digest": "46407beda5c0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwq:32b-preview-q8_0", + "name": "qwq:32b-preview-q8_0", + "description": "QwQ is an experimental research model focused on advancing AI reasoning capabilities.", + "size": "35GB", + "digest": "9c62a2e770b7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-chinese", + "name": "llama2-chinese", + "description": "Llama 2 based model fine tuned to improve Chinese dialogue ability.", + "size": "3.8GB", + "digest": "cee11d703eee", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "llama2-chinese:7b", + "name": "llama2-chinese:7b", + "description": "Llama 2 based model fine tuned to improve Chinese dialogue ability.", + "size": "3.8GB", + "digest": "cee11d703eee", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-chinese:13b", + "name": "llama2-chinese:13b", + "description": "Llama 2 based model fine tuned to improve Chinese dialogue ability.", + "size": "7.4GB", + "digest": "990f930d55c5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-chinese:13b-chat", + "name": "llama2-chinese:13b-chat", + "description": "Llama 2 based model fine tuned to improve Chinese dialogue ability.", + "size": "7.4GB", + "digest": "990f930d55c5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-chinese:13b-chat-fp16", + "name": "llama2-chinese:13b-chat-fp16", + "description": "Llama 2 based model fine tuned to improve Chinese dialogue ability.", + "size": "26GB", + "digest": "3d4c5a00962c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-chinese:13b-chat-q2_K", + "name": "llama2-chinese:13b-chat-q2_K", + "description": "Llama 2 based model fine tuned to improve Chinese dialogue ability.", + "size": "5.4GB", + "digest": "01b32d718507", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-chinese:13b-chat-q3_K_L", + "name": "llama2-chinese:13b-chat-q3_K_L", + "description": "Llama 2 based model fine tuned to improve Chinese dialogue ability.", + "size": "6.9GB", + "digest": "583a72ecd078", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-chinese:13b-chat-q3_K_M", + "name": "llama2-chinese:13b-chat-q3_K_M", + "description": "Llama 2 based model fine tuned to improve Chinese dialogue ability.", + "size": "6.3GB", + "digest": "d75e5c2030da", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-chinese:13b-chat-q3_K_S", + "name": "llama2-chinese:13b-chat-q3_K_S", + "description": "Llama 2 based model fine tuned to improve Chinese dialogue ability.", + "size": "5.7GB", + "digest": "4501e1ce728a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-chinese:13b-chat-q4_0", + "name": "llama2-chinese:13b-chat-q4_0", + "description": "Llama 2 based model fine tuned to improve Chinese dialogue ability.", + "size": "7.4GB", + "digest": "990f930d55c5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-chinese:13b-chat-q4_1", + "name": "llama2-chinese:13b-chat-q4_1", + "description": "Llama 2 based model fine tuned to improve Chinese dialogue ability.", + "size": "8.2GB", + "digest": "b71960852385", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-chinese:13b-chat-q4_K_M", + "name": "llama2-chinese:13b-chat-q4_K_M", + "description": "Llama 2 based model fine tuned to improve Chinese dialogue ability.", + "size": "7.9GB", + "digest": "94f93f5cde52", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-chinese:13b-chat-q4_K_S", + "name": "llama2-chinese:13b-chat-q4_K_S", + "description": "Llama 2 based model fine tuned to improve Chinese dialogue ability.", + "size": "7.4GB", + "digest": "8a8f954a3792", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-chinese:13b-chat-q5_0", + "name": "llama2-chinese:13b-chat-q5_0", + "description": "Llama 2 based model fine tuned to improve Chinese dialogue ability.", + "size": "9.0GB", + "digest": "4a41f66e710c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-chinese:13b-chat-q5_1", + "name": "llama2-chinese:13b-chat-q5_1", + "description": "Llama 2 based model fine tuned to improve Chinese dialogue ability.", + "size": "9.8GB", + "digest": "349e43573fca", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-chinese:13b-chat-q5_K_M", + "name": "llama2-chinese:13b-chat-q5_K_M", + "description": "Llama 2 based model fine tuned to improve Chinese dialogue ability.", + "size": "9.2GB", + "digest": "25cf6e1c9040", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-chinese:13b-chat-q5_K_S", + "name": "llama2-chinese:13b-chat-q5_K_S", + "description": "Llama 2 based model fine tuned to improve Chinese dialogue ability.", + "size": "9.0GB", + "digest": "4f56da0a7657", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-chinese:13b-chat-q6_K", + "name": "llama2-chinese:13b-chat-q6_K", + "description": "Llama 2 based model fine tuned to improve Chinese dialogue ability.", + "size": "11GB", + "digest": "c4a78a31a576", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-chinese:13b-chat-q8_0", + "name": "llama2-chinese:13b-chat-q8_0", + "description": "Llama 2 based model fine tuned to improve Chinese dialogue ability.", + "size": "14GB", + "digest": "9fe32b8f2073", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-chinese:7b-chat", + "name": "llama2-chinese:7b-chat", + "description": "Llama 2 based model fine tuned to improve Chinese dialogue ability.", + "size": "3.8GB", + "digest": "cee11d703eee", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-chinese:7b-chat-fp16", + "name": "llama2-chinese:7b-chat-fp16", + "description": "Llama 2 based model fine tuned to improve Chinese dialogue ability.", + "size": "13GB", + "digest": "b73150f2949c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-chinese:7b-chat-q2_K", + "name": "llama2-chinese:7b-chat-q2_K", + "description": "Llama 2 based model fine tuned to improve Chinese dialogue ability.", + "size": "2.8GB", + "digest": "56d0f23785bc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-chinese:7b-chat-q3_K_L", + "name": "llama2-chinese:7b-chat-q3_K_L", + "description": "Llama 2 based model fine tuned to improve Chinese dialogue ability.", + "size": "3.6GB", + "digest": "f6fcedae5d7e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-chinese:7b-chat-q3_K_M", + "name": "llama2-chinese:7b-chat-q3_K_M", + "description": "Llama 2 based model fine tuned to improve Chinese dialogue ability.", + "size": "3.3GB", + "digest": "d55419aeb5bc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-chinese:7b-chat-q3_K_S", + "name": "llama2-chinese:7b-chat-q3_K_S", + "description": "Llama 2 based model fine tuned to improve Chinese dialogue ability.", + "size": "2.9GB", + "digest": "6b13bc0df0ae", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-chinese:7b-chat-q4_0", + "name": "llama2-chinese:7b-chat-q4_0", + "description": "Llama 2 based model fine tuned to improve Chinese dialogue ability.", + "size": "3.8GB", + "digest": "cee11d703eee", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-chinese:7b-chat-q4_1", + "name": "llama2-chinese:7b-chat-q4_1", + "description": "Llama 2 based model fine tuned to improve Chinese dialogue ability.", + "size": "4.2GB", + "digest": "cac7c07fdb0a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-chinese:7b-chat-q4_K_M", + "name": "llama2-chinese:7b-chat-q4_K_M", + "description": "Llama 2 based model fine tuned to improve Chinese dialogue ability.", + "size": "4.1GB", + "digest": "e31ba537c1a7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-chinese:7b-chat-q4_K_S", + "name": "llama2-chinese:7b-chat-q4_K_S", + "description": "Llama 2 based model fine tuned to improve Chinese dialogue ability.", + "size": "3.9GB", + "digest": "1830e332cd06", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-chinese:7b-chat-q5_0", + "name": "llama2-chinese:7b-chat-q5_0", + "description": "Llama 2 based model fine tuned to improve Chinese dialogue ability.", + "size": "4.7GB", + "digest": "ae1d32a03e63", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-chinese:7b-chat-q5_1", + "name": "llama2-chinese:7b-chat-q5_1", + "description": "Llama 2 based model fine tuned to improve Chinese dialogue ability.", + "size": "5.1GB", + "digest": "245741bebff6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-chinese:7b-chat-q5_K_M", + "name": "llama2-chinese:7b-chat-q5_K_M", + "description": "Llama 2 based model fine tuned to improve Chinese dialogue ability.", + "size": "4.8GB", + "digest": "998f85f310f7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-chinese:7b-chat-q5_K_S", + "name": "llama2-chinese:7b-chat-q5_K_S", + "description": "Llama 2 based model fine tuned to improve Chinese dialogue ability.", + "size": "4.7GB", + "digest": "cfe3e90e5e6a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-chinese:7b-chat-q6_K", + "name": "llama2-chinese:7b-chat-q6_K", + "description": "Llama 2 based model fine tuned to improve Chinese dialogue ability.", + "size": "5.5GB", + "digest": "604c2c9da214", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama2-chinese:7b-chat-q8_0", + "name": "llama2-chinese:7b-chat-q8_0", + "description": "Llama 2 based model fine tuned to improve Chinese dialogue ability.", + "size": "7.2GB", + "digest": "0d05c88312c5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openchat", + "name": "openchat", + "description": "A family of open-source models trained on a wide variety of data, surpassing ChatGPT on various benchmarks. Updated to version 3.5-0106.", + "size": "4.1GB", + "digest": "537a4e03b649", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "openchat:7b", + "name": "openchat:7b", + "description": "A family of open-source models trained on a wide variety of data, surpassing ChatGPT on various benchmarks. Updated to version 3.5-0106.", + "size": "4.1GB", + "digest": "537a4e03b649", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openchat:7b-v3.5", + "name": "openchat:7b-v3.5", + "description": "A family of open-source models trained on a wide variety of data, surpassing ChatGPT on various benchmarks. Updated to version 3.5-0106.", + "size": "4.1GB", + "digest": "980eba937c08", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openchat:7b-v3.5-0106", + "name": "openchat:7b-v3.5-0106", + "description": "A family of open-source models trained on a wide variety of data, surpassing ChatGPT on various benchmarks. Updated to version 3.5-0106.", + "size": "4.1GB", + "digest": "537a4e03b649", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openchat:7b-v3.5-0106-fp16", + "name": "openchat:7b-v3.5-0106-fp16", + "description": "A family of open-source models trained on a wide variety of data, surpassing ChatGPT on various benchmarks. Updated to version 3.5-0106.", + "size": "14GB", + "digest": "904ff9758131", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openchat:7b-v3.5-0106-q2_K", + "name": "openchat:7b-v3.5-0106-q2_K", + "description": "A family of open-source models trained on a wide variety of data, surpassing ChatGPT on various benchmarks. Updated to version 3.5-0106.", + "size": "3.1GB", + "digest": "40a9b8bdcd51", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openchat:7b-v3.5-0106-q3_K_L", + "name": "openchat:7b-v3.5-0106-q3_K_L", + "description": "A family of open-source models trained on a wide variety of data, surpassing ChatGPT on various benchmarks. Updated to version 3.5-0106.", + "size": "3.8GB", + "digest": "7c4478e7725d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openchat:7b-v3.5-0106-q3_K_M", + "name": "openchat:7b-v3.5-0106-q3_K_M", + "description": "A family of open-source models trained on a wide variety of data, surpassing ChatGPT on various benchmarks. Updated to version 3.5-0106.", + "size": "3.5GB", + "digest": "76cd9a0c98ff", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openchat:7b-v3.5-0106-q3_K_S", + "name": "openchat:7b-v3.5-0106-q3_K_S", + "description": "A family of open-source models trained on a wide variety of data, surpassing ChatGPT on various benchmarks. Updated to version 3.5-0106.", + "size": "3.2GB", + "digest": "43be12a77c78", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openchat:7b-v3.5-0106-q4_0", + "name": "openchat:7b-v3.5-0106-q4_0", + "description": "A family of open-source models trained on a wide variety of data, surpassing ChatGPT on various benchmarks. Updated to version 3.5-0106.", + "size": "4.1GB", + "digest": "537a4e03b649", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openchat:7b-v3.5-0106-q4_1", + "name": "openchat:7b-v3.5-0106-q4_1", + "description": "A family of open-source models trained on a wide variety of data, surpassing ChatGPT on various benchmarks. Updated to version 3.5-0106.", + "size": "4.6GB", + "digest": "029a27df0e0e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openchat:7b-v3.5-0106-q4_K_M", + "name": "openchat:7b-v3.5-0106-q4_K_M", + "description": "A family of open-source models trained on a wide variety of data, surpassing ChatGPT on various benchmarks. Updated to version 3.5-0106.", + "size": "4.4GB", + "digest": "606fbe86851f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openchat:7b-v3.5-0106-q4_K_S", + "name": "openchat:7b-v3.5-0106-q4_K_S", + "description": "A family of open-source models trained on a wide variety of data, surpassing ChatGPT on various benchmarks. Updated to version 3.5-0106.", + "size": "4.1GB", + "digest": "fe011350d88f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openchat:7b-v3.5-0106-q5_0", + "name": "openchat:7b-v3.5-0106-q5_0", + "description": "A family of open-source models trained on a wide variety of data, surpassing ChatGPT on various benchmarks. Updated to version 3.5-0106.", + "size": "5.0GB", + "digest": "bf796ce1e6e4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openchat:7b-v3.5-0106-q5_1", + "name": "openchat:7b-v3.5-0106-q5_1", + "description": "A family of open-source models trained on a wide variety of data, surpassing ChatGPT on various benchmarks. Updated to version 3.5-0106.", + "size": "5.4GB", + "digest": "87023ab68886", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openchat:7b-v3.5-0106-q5_K_M", + "name": "openchat:7b-v3.5-0106-q5_K_M", + "description": "A family of open-source models trained on a wide variety of data, surpassing ChatGPT on various benchmarks. Updated to version 3.5-0106.", + "size": "5.1GB", + "digest": "75e83c02831a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openchat:7b-v3.5-0106-q5_K_S", + "name": "openchat:7b-v3.5-0106-q5_K_S", + "description": "A family of open-source models trained on a wide variety of data, surpassing ChatGPT on various benchmarks. Updated to version 3.5-0106.", + "size": "5.0GB", + "digest": "6ed7bb1af154", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openchat:7b-v3.5-0106-q6_K", + "name": "openchat:7b-v3.5-0106-q6_K", + "description": "A family of open-source models trained on a wide variety of data, surpassing ChatGPT on various benchmarks. Updated to version 3.5-0106.", + "size": "5.9GB", + "digest": "068f00f96fbf", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openchat:7b-v3.5-0106-q8_0", + "name": "openchat:7b-v3.5-0106-q8_0", + "description": "A family of open-source models trained on a wide variety of data, surpassing ChatGPT on various benchmarks. Updated to version 3.5-0106.", + "size": "7.7GB", + "digest": "54a3b6ecd5ec", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openchat:7b-v3.5-1210", + "name": "openchat:7b-v3.5-1210", + "description": "A family of open-source models trained on a wide variety of data, surpassing ChatGPT on various benchmarks. Updated to version 3.5-0106.", + "size": "4.1GB", + "digest": "aa6d10add428", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openchat:7b-v3.5-1210-fp16", + "name": "openchat:7b-v3.5-1210-fp16", + "description": "A family of open-source models trained on a wide variety of data, surpassing ChatGPT on various benchmarks. Updated to version 3.5-0106.", + "size": "14GB", + "digest": "24a0134d29f6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openchat:7b-v3.5-1210-q2_K", + "name": "openchat:7b-v3.5-1210-q2_K", + "description": "A family of open-source models trained on a wide variety of data, surpassing ChatGPT on various benchmarks. Updated to version 3.5-0106.", + "size": "3.1GB", + "digest": "90cfa4fd3ee4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openchat:7b-v3.5-1210-q3_K_L", + "name": "openchat:7b-v3.5-1210-q3_K_L", + "description": "A family of open-source models trained on a wide variety of data, surpassing ChatGPT on various benchmarks. Updated to version 3.5-0106.", + "size": "3.8GB", + "digest": "cdab528998e3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openchat:7b-v3.5-1210-q3_K_M", + "name": "openchat:7b-v3.5-1210-q3_K_M", + "description": "A family of open-source models trained on a wide variety of data, surpassing ChatGPT on various benchmarks. Updated to version 3.5-0106.", + "size": "3.5GB", + "digest": "ad84860337cb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openchat:7b-v3.5-1210-q3_K_S", + "name": "openchat:7b-v3.5-1210-q3_K_S", + "description": "A family of open-source models trained on a wide variety of data, surpassing ChatGPT on various benchmarks. Updated to version 3.5-0106.", + "size": "3.2GB", + "digest": "4a07652bf006", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openchat:7b-v3.5-1210-q4_0", + "name": "openchat:7b-v3.5-1210-q4_0", + "description": "A family of open-source models trained on a wide variety of data, surpassing ChatGPT on various benchmarks. Updated to version 3.5-0106.", + "size": "4.1GB", + "digest": "aa6d10add428", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openchat:7b-v3.5-1210-q4_1", + "name": "openchat:7b-v3.5-1210-q4_1", + "description": "A family of open-source models trained on a wide variety of data, surpassing ChatGPT on various benchmarks. Updated to version 3.5-0106.", + "size": "4.6GB", + "digest": "525ce9ede1d8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openchat:7b-v3.5-1210-q4_K_M", + "name": "openchat:7b-v3.5-1210-q4_K_M", + "description": "A family of open-source models trained on a wide variety of data, surpassing ChatGPT on various benchmarks. Updated to version 3.5-0106.", + "size": "4.4GB", + "digest": "c0f6439075b8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openchat:7b-v3.5-1210-q4_K_S", + "name": "openchat:7b-v3.5-1210-q4_K_S", + "description": "A family of open-source models trained on a wide variety of data, surpassing ChatGPT on various benchmarks. Updated to version 3.5-0106.", + "size": "4.1GB", + "digest": "8d50e6d40482", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openchat:7b-v3.5-1210-q5_0", + "name": "openchat:7b-v3.5-1210-q5_0", + "description": "A family of open-source models trained on a wide variety of data, surpassing ChatGPT on various benchmarks. Updated to version 3.5-0106.", + "size": "5.0GB", + "digest": "4c6db90c2db0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openchat:7b-v3.5-1210-q5_1", + "name": "openchat:7b-v3.5-1210-q5_1", + "description": "A family of open-source models trained on a wide variety of data, surpassing ChatGPT on various benchmarks. Updated to version 3.5-0106.", + "size": "5.4GB", + "digest": "2185cdd08ed8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openchat:7b-v3.5-1210-q5_K_M", + "name": "openchat:7b-v3.5-1210-q5_K_M", + "description": "A family of open-source models trained on a wide variety of data, surpassing ChatGPT on various benchmarks. Updated to version 3.5-0106.", + "size": "5.1GB", + "digest": "64e4cb9bb506", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openchat:7b-v3.5-1210-q5_K_S", + "name": "openchat:7b-v3.5-1210-q5_K_S", + "description": "A family of open-source models trained on a wide variety of data, surpassing ChatGPT on various benchmarks. Updated to version 3.5-0106.", + "size": "5.0GB", + "digest": "f78feecd69cf", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openchat:7b-v3.5-1210-q6_K", + "name": "openchat:7b-v3.5-1210-q6_K", + "description": "A family of open-source models trained on a wide variety of data, surpassing ChatGPT on various benchmarks. Updated to version 3.5-0106.", + "size": "5.9GB", + "digest": "2f844aee86ba", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openchat:7b-v3.5-1210-q8_0", + "name": "openchat:7b-v3.5-1210-q8_0", + "description": "A family of open-source models trained on a wide variety of data, surpassing ChatGPT on various benchmarks. Updated to version 3.5-0106.", + "size": "7.7GB", + "digest": "2911bfb27389", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openchat:7b-v3.5-fp16", + "name": "openchat:7b-v3.5-fp16", + "description": "A family of open-source models trained on a wide variety of data, surpassing ChatGPT on various benchmarks. Updated to version 3.5-0106.", + "size": "14GB", + "digest": "b2cb2e8359a3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openchat:7b-v3.5-q2_K", + "name": "openchat:7b-v3.5-q2_K", + "description": "A family of open-source models trained on a wide variety of data, surpassing ChatGPT on various benchmarks. Updated to version 3.5-0106.", + "size": "3.1GB", + "digest": "c8a422048247", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openchat:7b-v3.5-q3_K_L", + "name": "openchat:7b-v3.5-q3_K_L", + "description": "A family of open-source models trained on a wide variety of data, surpassing ChatGPT on various benchmarks. Updated to version 3.5-0106.", + "size": "3.8GB", + "digest": "cce7d2d85cc1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openchat:7b-v3.5-q3_K_M", + "name": "openchat:7b-v3.5-q3_K_M", + "description": "A family of open-source models trained on a wide variety of data, surpassing ChatGPT on various benchmarks. Updated to version 3.5-0106.", + "size": "3.5GB", + "digest": "bb9a71d66b29", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openchat:7b-v3.5-q3_K_S", + "name": "openchat:7b-v3.5-q3_K_S", + "description": "A family of open-source models trained on a wide variety of data, surpassing ChatGPT on various benchmarks. Updated to version 3.5-0106.", + "size": "3.2GB", + "digest": "961a8432de51", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openchat:7b-v3.5-q4_0", + "name": "openchat:7b-v3.5-q4_0", + "description": "A family of open-source models trained on a wide variety of data, surpassing ChatGPT on various benchmarks. Updated to version 3.5-0106.", + "size": "4.1GB", + "digest": "980eba937c08", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openchat:7b-v3.5-q4_1", + "name": "openchat:7b-v3.5-q4_1", + "description": "A family of open-source models trained on a wide variety of data, surpassing ChatGPT on various benchmarks. Updated to version 3.5-0106.", + "size": "4.6GB", + "digest": "2d59d300369b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openchat:7b-v3.5-q4_K_M", + "name": "openchat:7b-v3.5-q4_K_M", + "description": "A family of open-source models trained on a wide variety of data, surpassing ChatGPT on various benchmarks. Updated to version 3.5-0106.", + "size": "4.4GB", + "digest": "f7d0a07c2357", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openchat:7b-v3.5-q4_K_S", + "name": "openchat:7b-v3.5-q4_K_S", + "description": "A family of open-source models trained on a wide variety of data, surpassing ChatGPT on various benchmarks. Updated to version 3.5-0106.", + "size": "4.1GB", + "digest": "99507f29347f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openchat:7b-v3.5-q5_0", + "name": "openchat:7b-v3.5-q5_0", + "description": "A family of open-source models trained on a wide variety of data, surpassing ChatGPT on various benchmarks. Updated to version 3.5-0106.", + "size": "5.0GB", + "digest": "311f9cb4a2f3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openchat:7b-v3.5-q5_1", + "name": "openchat:7b-v3.5-q5_1", + "description": "A family of open-source models trained on a wide variety of data, surpassing ChatGPT on various benchmarks. Updated to version 3.5-0106.", + "size": "5.4GB", + "digest": "bf4eb0e1d37f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openchat:7b-v3.5-q5_K_M", + "name": "openchat:7b-v3.5-q5_K_M", + "description": "A family of open-source models trained on a wide variety of data, surpassing ChatGPT on various benchmarks. Updated to version 3.5-0106.", + "size": "5.1GB", + "digest": "6b9271b7e00e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openchat:7b-v3.5-q5_K_S", + "name": "openchat:7b-v3.5-q5_K_S", + "description": "A family of open-source models trained on a wide variety of data, surpassing ChatGPT on various benchmarks. Updated to version 3.5-0106.", + "size": "5.0GB", + "digest": "213e534d3f58", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openchat:7b-v3.5-q6_K", + "name": "openchat:7b-v3.5-q6_K", + "description": "A family of open-source models trained on a wide variety of data, surpassing ChatGPT on various benchmarks. Updated to version 3.5-0106.", + "size": "5.9GB", + "digest": "95a82d202137", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openchat:7b-v3.5-q8_0", + "name": "openchat:7b-v3.5-q8_0", + "description": "A family of open-source models trained on a wide variety of data, surpassing ChatGPT on various benchmarks. Updated to version 3.5-0106.", + "size": "7.7GB", + "digest": "663a54b072bf", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-small", + "name": "mistral-small", + "description": "Mistral Small 3 sets a new benchmark in the “small” Large Language Models category below 70B.", + "size": "14GB", + "digest": "8039dd90c113", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "mistral-small:22b", + "name": "mistral-small:22b", + "description": "Mistral Small 3 sets a new benchmark in the “small” Large Language Models category below 70B.", + "size": "13GB", + "digest": "d095cd553b04", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-small:24b", + "name": "mistral-small:24b", + "description": "Mistral Small 3 sets a new benchmark in the “small” Large Language Models category below 70B.", + "size": "14GB", + "digest": "8039dd90c113", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-small:22b-instruct-2409-fp16", + "name": "mistral-small:22b-instruct-2409-fp16", + "description": "Mistral Small 3 sets a new benchmark in the “small” Large Language Models category below 70B.", + "size": "44GB", + "digest": "28fc9c710e5f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-small:22b-instruct-2409-q2_K", + "name": "mistral-small:22b-instruct-2409-q2_K", + "description": "Mistral Small 3 sets a new benchmark in the “small” Large Language Models category below 70B.", + "size": "8.3GB", + "digest": "8ec9babc3847", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-small:22b-instruct-2409-q3_K_L", + "name": "mistral-small:22b-instruct-2409-q3_K_L", + "description": "Mistral Small 3 sets a new benchmark in the “small” Large Language Models category below 70B.", + "size": "12GB", + "digest": "fe81dad8bbb0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-small:22b-instruct-2409-q3_K_M", + "name": "mistral-small:22b-instruct-2409-q3_K_M", + "description": "Mistral Small 3 sets a new benchmark in the “small” Large Language Models category below 70B.", + "size": "11GB", + "digest": "eaa764a8f77f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-small:22b-instruct-2409-q3_K_S", + "name": "mistral-small:22b-instruct-2409-q3_K_S", + "description": "Mistral Small 3 sets a new benchmark in the “small” Large Language Models category below 70B.", + "size": "9.6GB", + "digest": "dfaf3aefa53f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-small:22b-instruct-2409-q4_0", + "name": "mistral-small:22b-instruct-2409-q4_0", + "description": "Mistral Small 3 sets a new benchmark in the “small” Large Language Models category below 70B.", + "size": "13GB", + "digest": "d095cd553b04", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-small:22b-instruct-2409-q4_1", + "name": "mistral-small:22b-instruct-2409-q4_1", + "description": "Mistral Small 3 sets a new benchmark in the “small” Large Language Models category below 70B.", + "size": "14GB", + "digest": "565c78387545", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-small:22b-instruct-2409-q4_K_M", + "name": "mistral-small:22b-instruct-2409-q4_K_M", + "description": "Mistral Small 3 sets a new benchmark in the “small” Large Language Models category below 70B.", + "size": "13GB", + "digest": "9f552ae9b883", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-small:22b-instruct-2409-q4_K_S", + "name": "mistral-small:22b-instruct-2409-q4_K_S", + "description": "Mistral Small 3 sets a new benchmark in the “small” Large Language Models category below 70B.", + "size": "13GB", + "digest": "9b3a8280f0c7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-small:22b-instruct-2409-q5_0", + "name": "mistral-small:22b-instruct-2409-q5_0", + "description": "Mistral Small 3 sets a new benchmark in the “small” Large Language Models category below 70B.", + "size": "15GB", + "digest": "04c315f44b8c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-small:22b-instruct-2409-q5_1", + "name": "mistral-small:22b-instruct-2409-q5_1", + "description": "Mistral Small 3 sets a new benchmark in the “small” Large Language Models category below 70B.", + "size": "17GB", + "digest": "5bd49ef5756a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-small:22b-instruct-2409-q5_K_M", + "name": "mistral-small:22b-instruct-2409-q5_K_M", + "description": "Mistral Small 3 sets a new benchmark in the “small” Large Language Models category below 70B.", + "size": "16GB", + "digest": "eec48ef9afdc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-small:22b-instruct-2409-q5_K_S", + "name": "mistral-small:22b-instruct-2409-q5_K_S", + "description": "Mistral Small 3 sets a new benchmark in the “small” Large Language Models category below 70B.", + "size": "15GB", + "digest": "5b4d9855bfa5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-small:22b-instruct-2409-q6_K", + "name": "mistral-small:22b-instruct-2409-q6_K", + "description": "Mistral Small 3 sets a new benchmark in the “small” Large Language Models category below 70B.", + "size": "18GB", + "digest": "5113380707de", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-small:22b-instruct-2409-q8_0", + "name": "mistral-small:22b-instruct-2409-q8_0", + "description": "Mistral Small 3 sets a new benchmark in the “small” Large Language Models category below 70B.", + "size": "24GB", + "digest": "ebe30125ec3c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-small:24b-instruct-2501-fp16", + "name": "mistral-small:24b-instruct-2501-fp16", + "description": "Mistral Small 3 sets a new benchmark in the “small” Large Language Models category below 70B.", + "size": "47GB", + "digest": "6134e1a7e2c8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-small:24b-instruct-2501-q4_K_M", + "name": "mistral-small:24b-instruct-2501-q4_K_M", + "description": "Mistral Small 3 sets a new benchmark in the “small” Large Language Models category below 70B.", + "size": "14GB", + "digest": "8039dd90c113", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-small:24b-instruct-2501-q8_0", + "name": "mistral-small:24b-instruct-2501-q8_0", + "description": "Mistral Small 3 sets a new benchmark in the “small” Large Language Models category below 70B.", + "size": "25GB", + "digest": "20ffe5db0161", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegeex4", + "name": "codegeex4", + "description": "A versatile model for AI software development scenarios, including code completion.", + "size": "5.5GB", + "digest": "867b8e81d038", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "codegeex4:9b", + "name": "codegeex4:9b", + "description": "A versatile model for AI software development scenarios, including code completion.", + "size": "5.5GB", + "digest": "867b8e81d038", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegeex4:9b-all-fp16", + "name": "codegeex4:9b-all-fp16", + "description": "A versatile model for AI software development scenarios, including code completion.", + "size": "19GB", + "digest": "c3cd6eb1916f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegeex4:9b-all-q2_K", + "name": "codegeex4:9b-all-q2_K", + "description": "A versatile model for AI software development scenarios, including code completion.", + "size": "4.0GB", + "digest": "08e724852cef", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegeex4:9b-all-q3_K_L", + "name": "codegeex4:9b-all-q3_K_L", + "description": "A versatile model for AI software development scenarios, including code completion.", + "size": "5.3GB", + "digest": "5529f06b3407", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegeex4:9b-all-q3_K_M", + "name": "codegeex4:9b-all-q3_K_M", + "description": "A versatile model for AI software development scenarios, including code completion.", + "size": "5.1GB", + "digest": "5d8b91ce8944", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegeex4:9b-all-q3_K_S", + "name": "codegeex4:9b-all-q3_K_S", + "description": "A versatile model for AI software development scenarios, including code completion.", + "size": "4.6GB", + "digest": "286fdd19497a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegeex4:9b-all-q4_0", + "name": "codegeex4:9b-all-q4_0", + "description": "A versatile model for AI software development scenarios, including code completion.", + "size": "5.5GB", + "digest": "867b8e81d038", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegeex4:9b-all-q4_1", + "name": "codegeex4:9b-all-q4_1", + "description": "A versatile model for AI software development scenarios, including code completion.", + "size": "6.0GB", + "digest": "5e5c2f0ff466", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegeex4:9b-all-q4_K_M", + "name": "codegeex4:9b-all-q4_K_M", + "description": "A versatile model for AI software development scenarios, including code completion.", + "size": "6.3GB", + "digest": "c3a3c43c51c6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegeex4:9b-all-q4_K_S", + "name": "codegeex4:9b-all-q4_K_S", + "description": "A versatile model for AI software development scenarios, including code completion.", + "size": "5.8GB", + "digest": "857f132f3bf8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegeex4:9b-all-q5_0", + "name": "codegeex4:9b-all-q5_0", + "description": "A versatile model for AI software development scenarios, including code completion.", + "size": "6.6GB", + "digest": "3093b05b4012", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegeex4:9b-all-q5_1", + "name": "codegeex4:9b-all-q5_1", + "description": "A versatile model for AI software development scenarios, including code completion.", + "size": "7.1GB", + "digest": "7986c322f712", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegeex4:9b-all-q5_K_M", + "name": "codegeex4:9b-all-q5_K_M", + "description": "A versatile model for AI software development scenarios, including code completion.", + "size": "7.1GB", + "digest": "3ea52dda9b15", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegeex4:9b-all-q5_K_S", + "name": "codegeex4:9b-all-q5_K_S", + "description": "A versatile model for AI software development scenarios, including code completion.", + "size": "6.7GB", + "digest": "02d16c426451", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegeex4:9b-all-q6_K", + "name": "codegeex4:9b-all-q6_K", + "description": "A versatile model for AI software development scenarios, including code completion.", + "size": "8.3GB", + "digest": "eb3d51289271", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codegeex4:9b-all-q8_0", + "name": "codegeex4:9b-all-q8_0", + "description": "A versatile model for AI software development scenarios, including code completion.", + "size": "10.0GB", + "digest": "9e5f03438298", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya", + "name": "aya", + "description": "Aya 23, released by Cohere, is a new family of state-of-the-art, multilingual models that support 23 languages.", + "size": "4.8GB", + "digest": "7ef8c4942023", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "aya:8b", + "name": "aya:8b", + "description": "Aya 23, released by Cohere, is a new family of state-of-the-art, multilingual models that support 23 languages.", + "size": "4.8GB", + "digest": "7ef8c4942023", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya:35b", + "name": "aya:35b", + "description": "Aya 23, released by Cohere, is a new family of state-of-the-art, multilingual models that support 23 languages.", + "size": "20GB", + "digest": "bab44e009440", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya:35b-23", + "name": "aya:35b-23", + "description": "Aya 23, released by Cohere, is a new family of state-of-the-art, multilingual models that support 23 languages.", + "size": "20GB", + "digest": "bab44e009440", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya:35b-23-q2_K", + "name": "aya:35b-23-q2_K", + "description": "Aya 23, released by Cohere, is a new family of state-of-the-art, multilingual models that support 23 languages.", + "size": "14GB", + "digest": "a977233d8c88", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya:35b-23-q3_K_L", + "name": "aya:35b-23-q3_K_L", + "description": "Aya 23, released by Cohere, is a new family of state-of-the-art, multilingual models that support 23 languages.", + "size": "19GB", + "digest": "ad7893ddae83", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya:35b-23-q3_K_M", + "name": "aya:35b-23-q3_K_M", + "description": "Aya 23, released by Cohere, is a new family of state-of-the-art, multilingual models that support 23 languages.", + "size": "18GB", + "digest": "e68ea34078f1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya:35b-23-q3_K_S", + "name": "aya:35b-23-q3_K_S", + "description": "Aya 23, released by Cohere, is a new family of state-of-the-art, multilingual models that support 23 languages.", + "size": "16GB", + "digest": "6a7a6d7a4bab", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya:35b-23-q4_0", + "name": "aya:35b-23-q4_0", + "description": "Aya 23, released by Cohere, is a new family of state-of-the-art, multilingual models that support 23 languages.", + "size": "20GB", + "digest": "bab44e009440", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya:35b-23-q4_1", + "name": "aya:35b-23-q4_1", + "description": "Aya 23, released by Cohere, is a new family of state-of-the-art, multilingual models that support 23 languages.", + "size": "22GB", + "digest": "14508b481fcd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya:35b-23-q4_K_M", + "name": "aya:35b-23-q4_K_M", + "description": "Aya 23, released by Cohere, is a new family of state-of-the-art, multilingual models that support 23 languages.", + "size": "22GB", + "digest": "f13547fef6c4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya:35b-23-q4_K_S", + "name": "aya:35b-23-q4_K_S", + "description": "Aya 23, released by Cohere, is a new family of state-of-the-art, multilingual models that support 23 languages.", + "size": "20GB", + "digest": "0bdc7e9883d8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya:35b-23-q5_0", + "name": "aya:35b-23-q5_0", + "description": "Aya 23, released by Cohere, is a new family of state-of-the-art, multilingual models that support 23 languages.", + "size": "24GB", + "digest": "9f223e28a5ce", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya:35b-23-q5_1", + "name": "aya:35b-23-q5_1", + "description": "Aya 23, released by Cohere, is a new family of state-of-the-art, multilingual models that support 23 languages.", + "size": "26GB", + "digest": "29ff5b76e4c6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya:35b-23-q5_K_M", + "name": "aya:35b-23-q5_K_M", + "description": "Aya 23, released by Cohere, is a new family of state-of-the-art, multilingual models that support 23 languages.", + "size": "25GB", + "digest": "8abb1cf0ec39", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya:35b-23-q5_K_S", + "name": "aya:35b-23-q5_K_S", + "description": "Aya 23, released by Cohere, is a new family of state-of-the-art, multilingual models that support 23 languages.", + "size": "24GB", + "digest": "95a2413ef0d9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya:35b-23-q6_K", + "name": "aya:35b-23-q6_K", + "description": "Aya 23, released by Cohere, is a new family of state-of-the-art, multilingual models that support 23 languages.", + "size": "29GB", + "digest": "1341e2a8f9bb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya:35b-23-q8_0", + "name": "aya:35b-23-q8_0", + "description": "Aya 23, released by Cohere, is a new family of state-of-the-art, multilingual models that support 23 languages.", + "size": "37GB", + "digest": "b8e160cc05cd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya:8b-23", + "name": "aya:8b-23", + "description": "Aya 23, released by Cohere, is a new family of state-of-the-art, multilingual models that support 23 languages.", + "size": "4.8GB", + "digest": "7ef8c4942023", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya:8b-23-q2_K", + "name": "aya:8b-23-q2_K", + "description": "Aya 23, released by Cohere, is a new family of state-of-the-art, multilingual models that support 23 languages.", + "size": "3.4GB", + "digest": "bcf9b7a0c6f6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya:8b-23-q3_K_L", + "name": "aya:8b-23-q3_K_L", + "description": "Aya 23, released by Cohere, is a new family of state-of-the-art, multilingual models that support 23 languages.", + "size": "4.5GB", + "digest": "2b7af207d37e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya:8b-23-q3_K_M", + "name": "aya:8b-23-q3_K_M", + "description": "Aya 23, released by Cohere, is a new family of state-of-the-art, multilingual models that support 23 languages.", + "size": "4.2GB", + "digest": "dccbf85c4f87", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya:8b-23-q3_K_S", + "name": "aya:8b-23-q3_K_S", + "description": "Aya 23, released by Cohere, is a new family of state-of-the-art, multilingual models that support 23 languages.", + "size": "3.9GB", + "digest": "7e92eeb33618", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya:8b-23-q4_0", + "name": "aya:8b-23-q4_0", + "description": "Aya 23, released by Cohere, is a new family of state-of-the-art, multilingual models that support 23 languages.", + "size": "4.8GB", + "digest": "7ef8c4942023", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya:8b-23-q4_1", + "name": "aya:8b-23-q4_1", + "description": "Aya 23, released by Cohere, is a new family of state-of-the-art, multilingual models that support 23 languages.", + "size": "5.2GB", + "digest": "7862f7de92b6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya:8b-23-q4_K_M", + "name": "aya:8b-23-q4_K_M", + "description": "Aya 23, released by Cohere, is a new family of state-of-the-art, multilingual models that support 23 languages.", + "size": "5.1GB", + "digest": "c757782816f1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya:8b-23-q4_K_S", + "name": "aya:8b-23-q4_K_S", + "description": "Aya 23, released by Cohere, is a new family of state-of-the-art, multilingual models that support 23 languages.", + "size": "4.8GB", + "digest": "ff78907d6f9c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya:8b-23-q5_0", + "name": "aya:8b-23-q5_0", + "description": "Aya 23, released by Cohere, is a new family of state-of-the-art, multilingual models that support 23 languages.", + "size": "5.7GB", + "digest": "60bbff214ada", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya:8b-23-q5_1", + "name": "aya:8b-23-q5_1", + "description": "Aya 23, released by Cohere, is a new family of state-of-the-art, multilingual models that support 23 languages.", + "size": "6.1GB", + "digest": "cc568f2e5986", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya:8b-23-q5_K_M", + "name": "aya:8b-23-q5_K_M", + "description": "Aya 23, released by Cohere, is a new family of state-of-the-art, multilingual models that support 23 languages.", + "size": "5.8GB", + "digest": "27ee23d58abb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya:8b-23-q5_K_S", + "name": "aya:8b-23-q5_K_S", + "description": "Aya 23, released by Cohere, is a new family of state-of-the-art, multilingual models that support 23 languages.", + "size": "5.7GB", + "digest": "0a0efe7ad5f0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya:8b-23-q6_K", + "name": "aya:8b-23-q6_K", + "description": "Aya 23, released by Cohere, is a new family of state-of-the-art, multilingual models that support 23 languages.", + "size": "6.6GB", + "digest": "604b8547e79a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya:8b-23-q8_0", + "name": "aya:8b-23-q8_0", + "description": "Aya 23, released by Cohere, is a new family of state-of-the-art, multilingual models that support 23 languages.", + "size": "8.5GB", + "digest": "100c4889f503", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codeqwen", + "name": "codeqwen", + "description": "CodeQwen1.5 is a large language model pretrained on a large amount of code data.", + "size": "4.2GB", + "digest": "df352abf55b1", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "codeqwen:7b", + "name": "codeqwen:7b", + "description": "CodeQwen1.5 is a large language model pretrained on a large amount of code data.", + "size": "4.2GB", + "digest": "df352abf55b1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codeqwen:7b-chat", + "name": "codeqwen:7b-chat", + "description": "CodeQwen1.5 is a large language model pretrained on a large amount of code data.", + "size": "4.2GB", + "digest": "df352abf55b1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codeqwen:7b-chat-v1.5-fp16", + "name": "codeqwen:7b-chat-v1.5-fp16", + "description": "CodeQwen1.5 is a large language model pretrained on a large amount of code data.", + "size": "15GB", + "digest": "f1b41fd8b5cc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codeqwen:7b-chat-v1.5-q2_K", + "name": "codeqwen:7b-chat-v1.5-q2_K", + "description": "CodeQwen1.5 is a large language model pretrained on a large amount of code data.", + "size": "3.1GB", + "digest": "58bf9e268b33", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codeqwen:7b-chat-v1.5-q3_K_L", + "name": "codeqwen:7b-chat-v1.5-q3_K_L", + "description": "CodeQwen1.5 is a large language model pretrained on a large amount of code data.", + "size": "4.0GB", + "digest": "3dc83ecb767e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codeqwen:7b-chat-v1.5-q3_K_M", + "name": "codeqwen:7b-chat-v1.5-q3_K_M", + "description": "CodeQwen1.5 is a large language model pretrained on a large amount of code data.", + "size": "3.8GB", + "digest": "60e192727d09", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codeqwen:7b-chat-v1.5-q3_K_S", + "name": "codeqwen:7b-chat-v1.5-q3_K_S", + "description": "CodeQwen1.5 is a large language model pretrained on a large amount of code data.", + "size": "3.5GB", + "digest": "8ac6e4f8622c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codeqwen:7b-chat-v1.5-q4_0", + "name": "codeqwen:7b-chat-v1.5-q4_0", + "description": "CodeQwen1.5 is a large language model pretrained on a large amount of code data.", + "size": "4.2GB", + "digest": "df352abf55b1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codeqwen:7b-chat-v1.5-q4_1", + "name": "codeqwen:7b-chat-v1.5-q4_1", + "description": "CodeQwen1.5 is a large language model pretrained on a large amount of code data.", + "size": "4.6GB", + "digest": "659a8d7026c9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codeqwen:7b-chat-v1.5-q4_K_M", + "name": "codeqwen:7b-chat-v1.5-q4_K_M", + "description": "CodeQwen1.5 is a large language model pretrained on a large amount of code data.", + "size": "4.7GB", + "digest": "9cb4225e1c5d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codeqwen:7b-chat-v1.5-q4_K_S", + "name": "codeqwen:7b-chat-v1.5-q4_K_S", + "description": "CodeQwen1.5 is a large language model pretrained on a large amount of code data.", + "size": "4.4GB", + "digest": "bafc9e528fc3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codeqwen:7b-chat-v1.5-q5_0", + "name": "codeqwen:7b-chat-v1.5-q5_0", + "description": "CodeQwen1.5 is a large language model pretrained on a large amount of code data.", + "size": "5.0GB", + "digest": "5fa058937b9d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codeqwen:7b-chat-v1.5-q5_1", + "name": "codeqwen:7b-chat-v1.5-q5_1", + "description": "CodeQwen1.5 is a large language model pretrained on a large amount of code data.", + "size": "5.5GB", + "digest": "656f0c7923b8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codeqwen:7b-chat-v1.5-q5_K_M", + "name": "codeqwen:7b-chat-v1.5-q5_K_M", + "description": "CodeQwen1.5 is a large language model pretrained on a large amount of code data.", + "size": "5.4GB", + "digest": "1e38f440836a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codeqwen:7b-chat-v1.5-q5_K_S", + "name": "codeqwen:7b-chat-v1.5-q5_K_S", + "description": "CodeQwen1.5 is a large language model pretrained on a large amount of code data.", + "size": "5.1GB", + "digest": "353c5070c5db", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codeqwen:7b-chat-v1.5-q6_K", + "name": "codeqwen:7b-chat-v1.5-q6_K", + "description": "CodeQwen1.5 is a large language model pretrained on a large amount of code data.", + "size": "6.4GB", + "digest": "1140b50f25a0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codeqwen:7b-chat-v1.5-q8_0", + "name": "codeqwen:7b-chat-v1.5-q8_0", + "description": "CodeQwen1.5 is a large language model pretrained on a large amount of code data.", + "size": "7.7GB", + "digest": "19343b80cbc6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codeqwen:7b-code", + "name": "codeqwen:7b-code", + "description": "CodeQwen1.5 is a large language model pretrained on a large amount of code data.", + "size": "4.2GB", + "digest": "d469cddb7d04", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codeqwen:7b-code-v1.5-fp16", + "name": "codeqwen:7b-code-v1.5-fp16", + "description": "CodeQwen1.5 is a large language model pretrained on a large amount of code data.", + "size": "15GB", + "digest": "18f779849b86", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codeqwen:7b-code-v1.5-q4_0", + "name": "codeqwen:7b-code-v1.5-q4_0", + "description": "CodeQwen1.5 is a large language model pretrained on a large amount of code data.", + "size": "4.2GB", + "digest": "d469cddb7d04", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codeqwen:7b-code-v1.5-q4_1", + "name": "codeqwen:7b-code-v1.5-q4_1", + "description": "CodeQwen1.5 is a large language model pretrained on a large amount of code data.", + "size": "4.6GB", + "digest": "1054e6ce1430", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codeqwen:7b-code-v1.5-q5_0", + "name": "codeqwen:7b-code-v1.5-q5_0", + "description": "CodeQwen1.5 is a large language model pretrained on a large amount of code data.", + "size": "5.0GB", + "digest": "df00ae037785", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codeqwen:7b-code-v1.5-q5_1", + "name": "codeqwen:7b-code-v1.5-q5_1", + "description": "CodeQwen1.5 is a large language model pretrained on a large amount of code data.", + "size": "5.5GB", + "digest": "f9f1cdb01bda", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codeqwen:7b-code-v1.5-q8_0", + "name": "codeqwen:7b-code-v1.5-q8_0", + "description": "CodeQwen1.5 is a large language model pretrained on a large amount of code data.", + "size": "7.7GB", + "digest": "f076b41b0d2e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codeqwen:chat", + "name": "codeqwen:chat", + "description": "CodeQwen1.5 is a large language model pretrained on a large amount of code data.", + "size": "4.2GB", + "digest": "df352abf55b1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codeqwen:code", + "name": "codeqwen:code", + "description": "CodeQwen1.5 is a large language model pretrained on a large amount of code data.", + "size": "4.2GB", + "digest": "d469cddb7d04", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codeqwen:v1.5", + "name": "codeqwen:v1.5", + "description": "CodeQwen1.5 is a large language model pretrained on a large amount of code data.", + "size": "4.2GB", + "digest": "df352abf55b1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codeqwen:v1.5-chat", + "name": "codeqwen:v1.5-chat", + "description": "CodeQwen1.5 is a large language model pretrained on a large amount of code data.", + "size": "4.2GB", + "digest": "df352abf55b1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codeqwen:v1.5-code", + "name": "codeqwen:v1.5-code", + "description": "CodeQwen1.5 is a large language model pretrained on a large amount of code data.", + "size": "4.2GB", + "digest": "d469cddb7d04", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm", + "name": "deepseek-llm", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "4.0GB", + "digest": "9aab369a853b", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "deepseek-llm:7b", + "name": "deepseek-llm:7b", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "4.0GB", + "digest": "9aab369a853b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:67b", + "name": "deepseek-llm:67b", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "38GB", + "digest": "52e3a994907e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:67b-base", + "name": "deepseek-llm:67b-base", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "38GB", + "digest": "812fa9900ddf", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:67b-base-fp16", + "name": "deepseek-llm:67b-base-fp16", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "135GB", + "digest": "e6df5550194c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:67b-base-q2_K", + "name": "deepseek-llm:67b-base-q2_K", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "28GB", + "digest": "e825785a2f93", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:67b-base-q3_K_L", + "name": "deepseek-llm:67b-base-q3_K_L", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "36GB", + "digest": "5732c7a17baf", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:67b-base-q3_K_M", + "name": "deepseek-llm:67b-base-q3_K_M", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "33GB", + "digest": "528e5a0d9578", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:67b-base-q3_K_S", + "name": "deepseek-llm:67b-base-q3_K_S", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "29GB", + "digest": "408a98a3aa39", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:67b-base-q4_0", + "name": "deepseek-llm:67b-base-q4_0", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "38GB", + "digest": "e0030d0a130c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:67b-base-q4_1", + "name": "deepseek-llm:67b-base-q4_1", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "42GB", + "digest": "edfd62087900", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:67b-base-q4_K_M", + "name": "deepseek-llm:67b-base-q4_K_M", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "40GB", + "digest": "2e28115fbaa2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:67b-base-q4_K_S", + "name": "deepseek-llm:67b-base-q4_K_S", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "38GB", + "digest": "54fcea7dbb8c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:67b-base-q5_0", + "name": "deepseek-llm:67b-base-q5_0", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "46GB", + "digest": "17e77ba3d4e0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:67b-base-q5_1", + "name": "deepseek-llm:67b-base-q5_1", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "51GB", + "digest": "f53172d11749", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:67b-base-q5_K_M", + "name": "deepseek-llm:67b-base-q5_K_M", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "48GB", + "digest": "eb54db87f46b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:67b-base-q5_K_S", + "name": "deepseek-llm:67b-base-q5_K_S", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "46GB", + "digest": "7520f31e16ab", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:67b-base-q6_K", + "name": "deepseek-llm:67b-base-q6_K", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "55GB", + "digest": "e3c177377638", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:67b-base-q8_0", + "name": "deepseek-llm:67b-base-q8_0", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "72GB", + "digest": "a761daaf2ef3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:67b-chat", + "name": "deepseek-llm:67b-chat", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "38GB", + "digest": "52e3a994907e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:67b-chat-fp16", + "name": "deepseek-llm:67b-chat-fp16", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "135GB", + "digest": "d6b76eec8c4d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:67b-chat-q2_K", + "name": "deepseek-llm:67b-chat-q2_K", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "28GB", + "digest": "c3ed3a6823d9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:67b-chat-q3_K_L", + "name": "deepseek-llm:67b-chat-q3_K_L", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "36GB", + "digest": "a3c982459f4b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:67b-chat-q3_K_M", + "name": "deepseek-llm:67b-chat-q3_K_M", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "33GB", + "digest": "b1b9aa6f99e5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:67b-chat-q3_K_S", + "name": "deepseek-llm:67b-chat-q3_K_S", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "29GB", + "digest": "c895ed448eb0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:67b-chat-q4_0", + "name": "deepseek-llm:67b-chat-q4_0", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "38GB", + "digest": "52e3a994907e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:67b-chat-q4_1", + "name": "deepseek-llm:67b-chat-q4_1", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "42GB", + "digest": "40876e9c44d1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:67b-chat-q4_K_M", + "name": "deepseek-llm:67b-chat-q4_K_M", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "40GB", + "digest": "725af9db4539", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:67b-chat-q4_K_S", + "name": "deepseek-llm:67b-chat-q4_K_S", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "38GB", + "digest": "423d421ad0d5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:67b-chat-q5_0", + "name": "deepseek-llm:67b-chat-q5_0", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "46GB", + "digest": "1c18f10ba2e4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:67b-chat-q5_1", + "name": "deepseek-llm:67b-chat-q5_1", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "51GB", + "digest": "b8d2c6772755", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:67b-chat-q5_K_S", + "name": "deepseek-llm:67b-chat-q5_K_S", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "46GB", + "digest": "b36dd4fb3d5e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:7b-base", + "name": "deepseek-llm:7b-base", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "4.0GB", + "digest": "4203036ff5c6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:7b-base-fp16", + "name": "deepseek-llm:7b-base-fp16", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "14GB", + "digest": "9734e95557cb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:7b-base-q2_K", + "name": "deepseek-llm:7b-base-q2_K", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "3.0GB", + "digest": "f60ec77b8e40", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:7b-base-q3_K_L", + "name": "deepseek-llm:7b-base-q3_K_L", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "3.7GB", + "digest": "5cfddffa852a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:7b-base-q3_K_M", + "name": "deepseek-llm:7b-base-q3_K_M", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "3.5GB", + "digest": "103a0ee8b936", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:7b-base-q3_K_S", + "name": "deepseek-llm:7b-base-q3_K_S", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "3.1GB", + "digest": "1cb2f80e4f56", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:7b-base-q4_0", + "name": "deepseek-llm:7b-base-q4_0", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "4.0GB", + "digest": "4203036ff5c6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:7b-base-q4_1", + "name": "deepseek-llm:7b-base-q4_1", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "4.4GB", + "digest": "46f074d9e65d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:7b-base-q4_K_M", + "name": "deepseek-llm:7b-base-q4_K_M", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "4.2GB", + "digest": "5642a7c42df6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:7b-base-q4_K_S", + "name": "deepseek-llm:7b-base-q4_K_S", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "4.0GB", + "digest": "533d51f259e0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:7b-base-q5_0", + "name": "deepseek-llm:7b-base-q5_0", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "4.8GB", + "digest": "f80b2a0aafa3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:7b-base-q5_1", + "name": "deepseek-llm:7b-base-q5_1", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "5.2GB", + "digest": "a4945c0aad33", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:7b-base-q5_K_M", + "name": "deepseek-llm:7b-base-q5_K_M", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "4.9GB", + "digest": "947b7d710d2a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:7b-base-q5_K_S", + "name": "deepseek-llm:7b-base-q5_K_S", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "4.8GB", + "digest": "752d030cca1f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:7b-base-q6_K", + "name": "deepseek-llm:7b-base-q6_K", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "5.7GB", + "digest": "5aa79848f58a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:7b-base-q8_0", + "name": "deepseek-llm:7b-base-q8_0", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "7.3GB", + "digest": "290d6e4a492a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:7b-chat", + "name": "deepseek-llm:7b-chat", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "4.0GB", + "digest": "9aab369a853b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:7b-chat-fp16", + "name": "deepseek-llm:7b-chat-fp16", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "14GB", + "digest": "ae8dc23002ea", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:7b-chat-q2_K", + "name": "deepseek-llm:7b-chat-q2_K", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "3.0GB", + "digest": "a4b98c76e2cb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:7b-chat-q3_K_L", + "name": "deepseek-llm:7b-chat-q3_K_L", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "3.7GB", + "digest": "c673aa801a81", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:7b-chat-q3_K_M", + "name": "deepseek-llm:7b-chat-q3_K_M", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "3.5GB", + "digest": "04a0bfbcef69", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:7b-chat-q3_K_S", + "name": "deepseek-llm:7b-chat-q3_K_S", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "3.1GB", + "digest": "a9871e41151d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:7b-chat-q4_0", + "name": "deepseek-llm:7b-chat-q4_0", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "4.0GB", + "digest": "9aab369a853b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:7b-chat-q4_1", + "name": "deepseek-llm:7b-chat-q4_1", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "4.4GB", + "digest": "dbbe28577e21", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:7b-chat-q4_K_M", + "name": "deepseek-llm:7b-chat-q4_K_M", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "4.2GB", + "digest": "72299d61ee1d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:7b-chat-q4_K_S", + "name": "deepseek-llm:7b-chat-q4_K_S", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "4.0GB", + "digest": "bc8345b3132d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:7b-chat-q5_0", + "name": "deepseek-llm:7b-chat-q5_0", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "4.8GB", + "digest": "ce25c228f6ca", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:7b-chat-q5_1", + "name": "deepseek-llm:7b-chat-q5_1", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "5.2GB", + "digest": "20fda1383308", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:7b-chat-q5_K_M", + "name": "deepseek-llm:7b-chat-q5_K_M", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "4.9GB", + "digest": "1d4fc287cd19", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:7b-chat-q5_K_S", + "name": "deepseek-llm:7b-chat-q5_K_S", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "4.8GB", + "digest": "babfe64fb008", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:7b-chat-q6_K", + "name": "deepseek-llm:7b-chat-q6_K", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "5.7GB", + "digest": "057c2c5300aa", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-llm:7b-chat-q8_0", + "name": "deepseek-llm:7b-chat-q8_0", + "description": "An advanced language model crafted with 2 trillion bilingual tokens.", + "size": "7.3GB", + "digest": "83e5a9a28d09", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-large", + "name": "mistral-large", + "description": "Mistral Large 2 is Mistral's new flagship model that is significantly more capable in code generation, mathematics, and reasoning with 128k context window and support for dozens of languages.", + "size": "73GB", + "digest": "bbcf36dc47ad", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "mistral-large:123b", + "name": "mistral-large:123b", + "description": "Mistral Large 2 is Mistral's new flagship model that is significantly more capable in code generation, mathematics, and reasoning with 128k context window and support for dozens of languages.", + "size": "73GB", + "digest": "bbcf36dc47ad", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-large:123b-instruct-2407-fp16", + "name": "mistral-large:123b-instruct-2407-fp16", + "description": "Mistral Large 2 is Mistral's new flagship model that is significantly more capable in code generation, mathematics, and reasoning with 128k context window and support for dozens of languages.", + "size": "245GB", + "digest": "0bfa947cf7ef", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-large:123b-instruct-2407-q2_K", + "name": "mistral-large:123b-instruct-2407-q2_K", + "description": "Mistral Large 2 is Mistral's new flagship model that is significantly more capable in code generation, mathematics, and reasoning with 128k context window and support for dozens of languages.", + "size": "45GB", + "digest": "244e8ac47150", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-large:123b-instruct-2407-q3_K_L", + "name": "mistral-large:123b-instruct-2407-q3_K_L", + "description": "Mistral Large 2 is Mistral's new flagship model that is significantly more capable in code generation, mathematics, and reasoning with 128k context window and support for dozens of languages.", + "size": "65GB", + "digest": "47437a8d48aa", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-large:123b-instruct-2407-q3_K_M", + "name": "mistral-large:123b-instruct-2407-q3_K_M", + "description": "Mistral Large 2 is Mistral's new flagship model that is significantly more capable in code generation, mathematics, and reasoning with 128k context window and support for dozens of languages.", + "size": "59GB", + "digest": "5c3ac28dddb6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-large:123b-instruct-2407-q3_K_S", + "name": "mistral-large:123b-instruct-2407-q3_K_S", + "description": "Mistral Large 2 is Mistral's new flagship model that is significantly more capable in code generation, mathematics, and reasoning with 128k context window and support for dozens of languages.", + "size": "53GB", + "digest": "0a5d6df9d7af", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-large:123b-instruct-2407-q4_0", + "name": "mistral-large:123b-instruct-2407-q4_0", + "description": "Mistral Large 2 is Mistral's new flagship model that is significantly more capable in code generation, mathematics, and reasoning with 128k context window and support for dozens of languages.", + "size": "69GB", + "digest": "0ca7dfa0bf06", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-large:123b-instruct-2407-q4_1", + "name": "mistral-large:123b-instruct-2407-q4_1", + "description": "Mistral Large 2 is Mistral's new flagship model that is significantly more capable in code generation, mathematics, and reasoning with 128k context window and support for dozens of languages.", + "size": "77GB", + "digest": "19d48e361da3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-large:123b-instruct-2407-q4_K_M", + "name": "mistral-large:123b-instruct-2407-q4_K_M", + "description": "Mistral Large 2 is Mistral's new flagship model that is significantly more capable in code generation, mathematics, and reasoning with 128k context window and support for dozens of languages.", + "size": "73GB", + "digest": "7d1a7425167f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-large:123b-instruct-2407-q4_K_S", + "name": "mistral-large:123b-instruct-2407-q4_K_S", + "description": "Mistral Large 2 is Mistral's new flagship model that is significantly more capable in code generation, mathematics, and reasoning with 128k context window and support for dozens of languages.", + "size": "70GB", + "digest": "b06bbbd76af1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-large:123b-instruct-2407-q5_0", + "name": "mistral-large:123b-instruct-2407-q5_0", + "description": "Mistral Large 2 is Mistral's new flagship model that is significantly more capable in code generation, mathematics, and reasoning with 128k context window and support for dozens of languages.", + "size": "84GB", + "digest": "9972842fc4d6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-large:123b-instruct-2407-q5_1", + "name": "mistral-large:123b-instruct-2407-q5_1", + "description": "Mistral Large 2 is Mistral's new flagship model that is significantly more capable in code generation, mathematics, and reasoning with 128k context window and support for dozens of languages.", + "size": "92GB", + "digest": "0025c4e39412", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-large:123b-instruct-2407-q5_K_M", + "name": "mistral-large:123b-instruct-2407-q5_K_M", + "description": "Mistral Large 2 is Mistral's new flagship model that is significantly more capable in code generation, mathematics, and reasoning with 128k context window and support for dozens of languages.", + "size": "86GB", + "digest": "0583f89aa7d1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-large:123b-instruct-2407-q5_K_S", + "name": "mistral-large:123b-instruct-2407-q5_K_S", + "description": "Mistral Large 2 is Mistral's new flagship model that is significantly more capable in code generation, mathematics, and reasoning with 128k context window and support for dozens of languages.", + "size": "84GB", + "digest": "d4525515e89a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-large:123b-instruct-2407-q6_K", + "name": "mistral-large:123b-instruct-2407-q6_K", + "description": "Mistral Large 2 is Mistral's new flagship model that is significantly more capable in code generation, mathematics, and reasoning with 128k context window and support for dozens of languages.", + "size": "101GB", + "digest": "5e4615a812a8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-large:123b-instruct-2407-q8_0", + "name": "mistral-large:123b-instruct-2407-q8_0", + "description": "Mistral Large 2 is Mistral's new flagship model that is significantly more capable in code generation, mathematics, and reasoning with 128k context window and support for dozens of languages.", + "size": "130GB", + "digest": "20d741bc6d75", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-large:123b-instruct-2411-fp16", + "name": "mistral-large:123b-instruct-2411-fp16", + "description": "Mistral Large 2 is Mistral's new flagship model that is significantly more capable in code generation, mathematics, and reasoning with 128k context window and support for dozens of languages.", + "size": "245GB", + "digest": "2b810c3ba71a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-large:123b-instruct-2411-q2_K", + "name": "mistral-large:123b-instruct-2411-q2_K", + "description": "Mistral Large 2 is Mistral's new flagship model that is significantly more capable in code generation, mathematics, and reasoning with 128k context window and support for dozens of languages.", + "size": "45GB", + "digest": "16fda14b30f0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-large:123b-instruct-2411-q3_K_L", + "name": "mistral-large:123b-instruct-2411-q3_K_L", + "description": "Mistral Large 2 is Mistral's new flagship model that is significantly more capable in code generation, mathematics, and reasoning with 128k context window and support for dozens of languages.", + "size": "65GB", + "digest": "e18a67d80ee4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-large:123b-instruct-2411-q3_K_M", + "name": "mistral-large:123b-instruct-2411-q3_K_M", + "description": "Mistral Large 2 is Mistral's new flagship model that is significantly more capable in code generation, mathematics, and reasoning with 128k context window and support for dozens of languages.", + "size": "59GB", + "digest": "69b0928bdc0d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-large:123b-instruct-2411-q3_K_S", + "name": "mistral-large:123b-instruct-2411-q3_K_S", + "description": "Mistral Large 2 is Mistral's new flagship model that is significantly more capable in code generation, mathematics, and reasoning with 128k context window and support for dozens of languages.", + "size": "53GB", + "digest": "e6c6ff175cc0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-large:123b-instruct-2411-q4_0", + "name": "mistral-large:123b-instruct-2411-q4_0", + "description": "Mistral Large 2 is Mistral's new flagship model that is significantly more capable in code generation, mathematics, and reasoning with 128k context window and support for dozens of languages.", + "size": "69GB", + "digest": "1e4807d65914", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-large:123b-instruct-2411-q4_1", + "name": "mistral-large:123b-instruct-2411-q4_1", + "description": "Mistral Large 2 is Mistral's new flagship model that is significantly more capable in code generation, mathematics, and reasoning with 128k context window and support for dozens of languages.", + "size": "77GB", + "digest": "7dea3bd9090c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-large:123b-instruct-2411-q4_K_M", + "name": "mistral-large:123b-instruct-2411-q4_K_M", + "description": "Mistral Large 2 is Mistral's new flagship model that is significantly more capable in code generation, mathematics, and reasoning with 128k context window and support for dozens of languages.", + "size": "73GB", + "digest": "bbcf36dc47ad", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-large:123b-instruct-2411-q4_K_S", + "name": "mistral-large:123b-instruct-2411-q4_K_S", + "description": "Mistral Large 2 is Mistral's new flagship model that is significantly more capable in code generation, mathematics, and reasoning with 128k context window and support for dozens of languages.", + "size": "70GB", + "digest": "66a1fdacc93b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-large:123b-instruct-2411-q5_0", + "name": "mistral-large:123b-instruct-2411-q5_0", + "description": "Mistral Large 2 is Mistral's new flagship model that is significantly more capable in code generation, mathematics, and reasoning with 128k context window and support for dozens of languages.", + "size": "84GB", + "digest": "9cad9ed23f22", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-large:123b-instruct-2411-q5_1", + "name": "mistral-large:123b-instruct-2411-q5_1", + "description": "Mistral Large 2 is Mistral's new flagship model that is significantly more capable in code generation, mathematics, and reasoning with 128k context window and support for dozens of languages.", + "size": "92GB", + "digest": "feda4f519c21", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-large:123b-instruct-2411-q5_K_M", + "name": "mistral-large:123b-instruct-2411-q5_K_M", + "description": "Mistral Large 2 is Mistral's new flagship model that is significantly more capable in code generation, mathematics, and reasoning with 128k context window and support for dozens of languages.", + "size": "86GB", + "digest": "72f20cdebd72", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-large:123b-instruct-2411-q5_K_S", + "name": "mistral-large:123b-instruct-2411-q5_K_S", + "description": "Mistral Large 2 is Mistral's new flagship model that is significantly more capable in code generation, mathematics, and reasoning with 128k context window and support for dozens of languages.", + "size": "84GB", + "digest": "a36515217259", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-large:123b-instruct-2411-q6_K", + "name": "mistral-large:123b-instruct-2411-q6_K", + "description": "Mistral Large 2 is Mistral's new flagship model that is significantly more capable in code generation, mathematics, and reasoning with 128k context window and support for dozens of languages.", + "size": "101GB", + "digest": "17a9a92108df", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistral-large:123b-instruct-2411-q8_0", + "name": "mistral-large:123b-instruct-2411-q8_0", + "description": "Mistral Large 2 is Mistral's new flagship model that is significantly more capable in code generation, mathematics, and reasoning with 128k context window and support for dozens of languages.", + "size": "130GB", + "digest": "fc9b9f119292", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes2", + "name": "nous-hermes2", + "description": "The powerful family of models by Nous Research that excels at scientific discussion and coding tasks.", + "size": "6.1GB", + "digest": "d50977d0b36a", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "nous-hermes2:10.7b", + "name": "nous-hermes2:10.7b", + "description": "The powerful family of models by Nous Research that excels at scientific discussion and coding tasks.", + "size": "6.1GB", + "digest": "d50977d0b36a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes2:34b", + "name": "nous-hermes2:34b", + "description": "The powerful family of models by Nous Research that excels at scientific discussion and coding tasks.", + "size": "19GB", + "digest": "1fbb49caabbd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes2:10.7b-solar-fp16", + "name": "nous-hermes2:10.7b-solar-fp16", + "description": "The powerful family of models by Nous Research that excels at scientific discussion and coding tasks.", + "size": "21GB", + "digest": "d1a6005a734e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes2:10.7b-solar-q2_K", + "name": "nous-hermes2:10.7b-solar-q2_K", + "description": "The powerful family of models by Nous Research that excels at scientific discussion and coding tasks.", + "size": "4.5GB", + "digest": "2931d5c846b2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes2:10.7b-solar-q3_K_L", + "name": "nous-hermes2:10.7b-solar-q3_K_L", + "description": "The powerful family of models by Nous Research that excels at scientific discussion and coding tasks.", + "size": "5.7GB", + "digest": "36b57986a223", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes2:10.7b-solar-q3_K_M", + "name": "nous-hermes2:10.7b-solar-q3_K_M", + "description": "The powerful family of models by Nous Research that excels at scientific discussion and coding tasks.", + "size": "5.2GB", + "digest": "20bed3473bc5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes2:10.7b-solar-q3_K_S", + "name": "nous-hermes2:10.7b-solar-q3_K_S", + "description": "The powerful family of models by Nous Research that excels at scientific discussion and coding tasks.", + "size": "4.7GB", + "digest": "5b55664515d5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes2:10.7b-solar-q4_0", + "name": "nous-hermes2:10.7b-solar-q4_0", + "description": "The powerful family of models by Nous Research that excels at scientific discussion and coding tasks.", + "size": "6.1GB", + "digest": "d50977d0b36a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes2:10.7b-solar-q4_1", + "name": "nous-hermes2:10.7b-solar-q4_1", + "description": "The powerful family of models by Nous Research that excels at scientific discussion and coding tasks.", + "size": "6.7GB", + "digest": "7486b76cccbc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes2:10.7b-solar-q4_K_M", + "name": "nous-hermes2:10.7b-solar-q4_K_M", + "description": "The powerful family of models by Nous Research that excels at scientific discussion and coding tasks.", + "size": "6.5GB", + "digest": "3901698f9529", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes2:10.7b-solar-q4_K_S", + "name": "nous-hermes2:10.7b-solar-q4_K_S", + "description": "The powerful family of models by Nous Research that excels at scientific discussion and coding tasks.", + "size": "6.1GB", + "digest": "674107bfb50e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes2:10.7b-solar-q5_0", + "name": "nous-hermes2:10.7b-solar-q5_0", + "description": "The powerful family of models by Nous Research that excels at scientific discussion and coding tasks.", + "size": "7.4GB", + "digest": "9b7a0ddf5539", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes2:10.7b-solar-q5_1", + "name": "nous-hermes2:10.7b-solar-q5_1", + "description": "The powerful family of models by Nous Research that excels at scientific discussion and coding tasks.", + "size": "8.1GB", + "digest": "ade17e89ce44", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes2:10.7b-solar-q5_K_M", + "name": "nous-hermes2:10.7b-solar-q5_K_M", + "description": "The powerful family of models by Nous Research that excels at scientific discussion and coding tasks.", + "size": "7.6GB", + "digest": "c21ad0ffb1e8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes2:10.7b-solar-q5_K_S", + "name": "nous-hermes2:10.7b-solar-q5_K_S", + "description": "The powerful family of models by Nous Research that excels at scientific discussion and coding tasks.", + "size": "7.4GB", + "digest": "b0a593650c5a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes2:10.7b-solar-q6_K", + "name": "nous-hermes2:10.7b-solar-q6_K", + "description": "The powerful family of models by Nous Research that excels at scientific discussion and coding tasks.", + "size": "8.8GB", + "digest": "46a4c005c00c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes2:10.7b-solar-q8_0", + "name": "nous-hermes2:10.7b-solar-q8_0", + "description": "The powerful family of models by Nous Research that excels at scientific discussion and coding tasks.", + "size": "11GB", + "digest": "04509546373b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes2:34b-yi-fp16", + "name": "nous-hermes2:34b-yi-fp16", + "description": "The powerful family of models by Nous Research that excels at scientific discussion and coding tasks.", + "size": "69GB", + "digest": "ba6742bba2e3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes2:34b-yi-q2_K", + "name": "nous-hermes2:34b-yi-q2_K", + "description": "The powerful family of models by Nous Research that excels at scientific discussion and coding tasks.", + "size": "15GB", + "digest": "5880153d6216", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes2:34b-yi-q3_K_L", + "name": "nous-hermes2:34b-yi-q3_K_L", + "description": "The powerful family of models by Nous Research that excels at scientific discussion and coding tasks.", + "size": "18GB", + "digest": "d9e569fe62f4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes2:34b-yi-q3_K_M", + "name": "nous-hermes2:34b-yi-q3_K_M", + "description": "The powerful family of models by Nous Research that excels at scientific discussion and coding tasks.", + "size": "17GB", + "digest": "f2531c88caf1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes2:34b-yi-q3_K_S", + "name": "nous-hermes2:34b-yi-q3_K_S", + "description": "The powerful family of models by Nous Research that excels at scientific discussion and coding tasks.", + "size": "15GB", + "digest": "0bc80f2f5fd8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes2:34b-yi-q4_0", + "name": "nous-hermes2:34b-yi-q4_0", + "description": "The powerful family of models by Nous Research that excels at scientific discussion and coding tasks.", + "size": "19GB", + "digest": "1fbb49caabbd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes2:34b-yi-q4_1", + "name": "nous-hermes2:34b-yi-q4_1", + "description": "The powerful family of models by Nous Research that excels at scientific discussion and coding tasks.", + "size": "22GB", + "digest": "692a7d97562c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes2:34b-yi-q4_K_M", + "name": "nous-hermes2:34b-yi-q4_K_M", + "description": "The powerful family of models by Nous Research that excels at scientific discussion and coding tasks.", + "size": "21GB", + "digest": "d0e1b2a20bbd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes2:34b-yi-q4_K_S", + "name": "nous-hermes2:34b-yi-q4_K_S", + "description": "The powerful family of models by Nous Research that excels at scientific discussion and coding tasks.", + "size": "20GB", + "digest": "83c068cc2a03", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes2:34b-yi-q5_0", + "name": "nous-hermes2:34b-yi-q5_0", + "description": "The powerful family of models by Nous Research that excels at scientific discussion and coding tasks.", + "size": "24GB", + "digest": "b3a3236a26f1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes2:34b-yi-q5_1", + "name": "nous-hermes2:34b-yi-q5_1", + "description": "The powerful family of models by Nous Research that excels at scientific discussion and coding tasks.", + "size": "26GB", + "digest": "9a77070e0a87", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes2:34b-yi-q5_K_M", + "name": "nous-hermes2:34b-yi-q5_K_M", + "description": "The powerful family of models by Nous Research that excels at scientific discussion and coding tasks.", + "size": "24GB", + "digest": "9f0dea62722f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes2:34b-yi-q5_K_S", + "name": "nous-hermes2:34b-yi-q5_K_S", + "description": "The powerful family of models by Nous Research that excels at scientific discussion and coding tasks.", + "size": "24GB", + "digest": "8f6909b8327b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes2:34b-yi-q6_K", + "name": "nous-hermes2:34b-yi-q6_K", + "description": "The powerful family of models by Nous Research that excels at scientific discussion and coding tasks.", + "size": "28GB", + "digest": "2e9855cc9f21", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes2:34b-yi-q8_0", + "name": "nous-hermes2:34b-yi-q8_0", + "description": "The powerful family of models by Nous Research that excels at scientific discussion and coding tasks.", + "size": "37GB", + "digest": "a1e70aa6a163", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "glm4", + "name": "glm4", + "description": "A strong multi-lingual general language model with competitive performance to Llama 3.", + "size": "5.5GB", + "digest": "5b699761eca5", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "glm4:9b", + "name": "glm4:9b", + "description": "A strong multi-lingual general language model with competitive performance to Llama 3.", + "size": "5.5GB", + "digest": "5b699761eca5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "glm4:9b-chat-fp16", + "name": "glm4:9b-chat-fp16", + "description": "A strong multi-lingual general language model with competitive performance to Llama 3.", + "size": "19GB", + "digest": "ad156a261bc3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "glm4:9b-chat-q2_K", + "name": "glm4:9b-chat-q2_K", + "description": "A strong multi-lingual general language model with competitive performance to Llama 3.", + "size": "4.0GB", + "digest": "bbe0e76cf843", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "glm4:9b-chat-q3_K_L", + "name": "glm4:9b-chat-q3_K_L", + "description": "A strong multi-lingual general language model with competitive performance to Llama 3.", + "size": "5.3GB", + "digest": "d23a4b4fe901", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "glm4:9b-chat-q3_K_M", + "name": "glm4:9b-chat-q3_K_M", + "description": "A strong multi-lingual general language model with competitive performance to Llama 3.", + "size": "5.1GB", + "digest": "f61310a4c544", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "glm4:9b-chat-q3_K_S", + "name": "glm4:9b-chat-q3_K_S", + "description": "A strong multi-lingual general language model with competitive performance to Llama 3.", + "size": "4.6GB", + "digest": "66782e7923d1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "glm4:9b-chat-q4_0", + "name": "glm4:9b-chat-q4_0", + "description": "A strong multi-lingual general language model with competitive performance to Llama 3.", + "size": "5.5GB", + "digest": "5b699761eca5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "glm4:9b-chat-q4_1", + "name": "glm4:9b-chat-q4_1", + "description": "A strong multi-lingual general language model with competitive performance to Llama 3.", + "size": "6.0GB", + "digest": "967152b38bf8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "glm4:9b-chat-q4_K_M", + "name": "glm4:9b-chat-q4_K_M", + "description": "A strong multi-lingual general language model with competitive performance to Llama 3.", + "size": "6.3GB", + "digest": "f17dc1ac3c7c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "glm4:9b-chat-q4_K_S", + "name": "glm4:9b-chat-q4_K_S", + "description": "A strong multi-lingual general language model with competitive performance to Llama 3.", + "size": "5.8GB", + "digest": "79891546fa17", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "glm4:9b-chat-q5_0", + "name": "glm4:9b-chat-q5_0", + "description": "A strong multi-lingual general language model with competitive performance to Llama 3.", + "size": "6.6GB", + "digest": "4dcb586331cf", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "glm4:9b-chat-q5_1", + "name": "glm4:9b-chat-q5_1", + "description": "A strong multi-lingual general language model with competitive performance to Llama 3.", + "size": "7.1GB", + "digest": "54371ffa93d0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "glm4:9b-chat-q5_K_M", + "name": "glm4:9b-chat-q5_K_M", + "description": "A strong multi-lingual general language model with competitive performance to Llama 3.", + "size": "7.1GB", + "digest": "5941ffc5bb51", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "glm4:9b-chat-q5_K_S", + "name": "glm4:9b-chat-q5_K_S", + "description": "A strong multi-lingual general language model with competitive performance to Llama 3.", + "size": "6.7GB", + "digest": "aabc884c70dc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "glm4:9b-chat-q6_K", + "name": "glm4:9b-chat-q6_K", + "description": "A strong multi-lingual general language model with competitive performance to Llama 3.", + "size": "8.3GB", + "digest": "d07e84c2d2c0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "glm4:9b-chat-q8_0", + "name": "glm4:9b-chat-q8_0", + "description": "A strong multi-lingual general language model with competitive performance to Llama 3.", + "size": "10.0GB", + "digest": "baba010b3c85", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "glm4:9b-text-fp16", + "name": "glm4:9b-text-fp16", + "description": "A strong multi-lingual general language model with competitive performance to Llama 3.", + "size": "19GB", + "digest": "b13433ce1abf", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "glm4:9b-text-q2_K", + "name": "glm4:9b-text-q2_K", + "description": "A strong multi-lingual general language model with competitive performance to Llama 3.", + "size": "4.0GB", + "digest": "b65ac9535530", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "glm4:9b-text-q3_K_L", + "name": "glm4:9b-text-q3_K_L", + "description": "A strong multi-lingual general language model with competitive performance to Llama 3.", + "size": "5.3GB", + "digest": "2afe10412d1b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "glm4:9b-text-q3_K_M", + "name": "glm4:9b-text-q3_K_M", + "description": "A strong multi-lingual general language model with competitive performance to Llama 3.", + "size": "5.1GB", + "digest": "3b09bb5cbf2f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "glm4:9b-text-q3_K_S", + "name": "glm4:9b-text-q3_K_S", + "description": "A strong multi-lingual general language model with competitive performance to Llama 3.", + "size": "4.6GB", + "digest": "cbec5dd85da6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "glm4:9b-text-q4_0", + "name": "glm4:9b-text-q4_0", + "description": "A strong multi-lingual general language model with competitive performance to Llama 3.", + "size": "5.5GB", + "digest": "e3c1f63d31e9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "glm4:9b-text-q4_1", + "name": "glm4:9b-text-q4_1", + "description": "A strong multi-lingual general language model with competitive performance to Llama 3.", + "size": "6.0GB", + "digest": "2e39b551484c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "glm4:9b-text-q4_K_M", + "name": "glm4:9b-text-q4_K_M", + "description": "A strong multi-lingual general language model with competitive performance to Llama 3.", + "size": "6.3GB", + "digest": "ace9d7a1ccd5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "glm4:9b-text-q4_K_S", + "name": "glm4:9b-text-q4_K_S", + "description": "A strong multi-lingual general language model with competitive performance to Llama 3.", + "size": "5.8GB", + "digest": "fcde2d2e22d3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "glm4:9b-text-q5_0", + "name": "glm4:9b-text-q5_0", + "description": "A strong multi-lingual general language model with competitive performance to Llama 3.", + "size": "6.6GB", + "digest": "0947f646d91e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "glm4:9b-text-q5_1", + "name": "glm4:9b-text-q5_1", + "description": "A strong multi-lingual general language model with competitive performance to Llama 3.", + "size": "7.1GB", + "digest": "e25548487e3b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "glm4:9b-text-q5_K_M", + "name": "glm4:9b-text-q5_K_M", + "description": "A strong multi-lingual general language model with competitive performance to Llama 3.", + "size": "7.1GB", + "digest": "37732fa96c34", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "glm4:9b-text-q5_K_S", + "name": "glm4:9b-text-q5_K_S", + "description": "A strong multi-lingual general language model with competitive performance to Llama 3.", + "size": "6.7GB", + "digest": "4e4e04bfbfab", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "glm4:9b-text-q6_K", + "name": "glm4:9b-text-q6_K", + "description": "A strong multi-lingual general language model with competitive performance to Llama 3.", + "size": "8.3GB", + "digest": "0bd4f59e5f72", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "glm4:9b-text-q8_0", + "name": "glm4:9b-text-q8_0", + "description": "A strong multi-lingual general language model with competitive performance to Llama 3.", + "size": "10.0GB", + "digest": "f3282b3b2ab9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-code", + "name": "stable-code", + "description": "Stable Code 3B is a coding model with instruct and code completion variants on par with models such as Code Llama 7B that are 2.5x larger.", + "size": "1.6GB", + "digest": "37681d29a55a", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "stable-code:3b", + "name": "stable-code:3b", + "description": "Stable Code 3B is a coding model with instruct and code completion variants on par with models such as Code Llama 7B that are 2.5x larger.", + "size": "1.6GB", + "digest": "37681d29a55a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-code:3b-code", + "name": "stable-code:3b-code", + "description": "Stable Code 3B is a coding model with instruct and code completion variants on par with models such as Code Llama 7B that are 2.5x larger.", + "size": "1.6GB", + "digest": "e6b8d206c668", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-code:3b-code-fp16", + "name": "stable-code:3b-code-fp16", + "description": "Stable Code 3B is a coding model with instruct and code completion variants on par with models such as Code Llama 7B that are 2.5x larger.", + "size": "5.6GB", + "digest": "c1c46342f980", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-code:3b-code-q2_K", + "name": "stable-code:3b-code-q2_K", + "description": "Stable Code 3B is a coding model with instruct and code completion variants on par with models such as Code Llama 7B that are 2.5x larger.", + "size": "1.1GB", + "digest": "61aee905b748", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-code:3b-code-q3_K_L", + "name": "stable-code:3b-code-q3_K_L", + "description": "Stable Code 3B is a coding model with instruct and code completion variants on par with models such as Code Llama 7B that are 2.5x larger.", + "size": "1.5GB", + "digest": "bf58a9ca5804", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-code:3b-code-q3_K_M", + "name": "stable-code:3b-code-q3_K_M", + "description": "Stable Code 3B is a coding model with instruct and code completion variants on par with models such as Code Llama 7B that are 2.5x larger.", + "size": "1.4GB", + "digest": "c244b95d1c91", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-code:3b-code-q3_K_S", + "name": "stable-code:3b-code-q3_K_S", + "description": "Stable Code 3B is a coding model with instruct and code completion variants on par with models such as Code Llama 7B that are 2.5x larger.", + "size": "1.3GB", + "digest": "da0a6ba4897a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-code:3b-code-q4_0", + "name": "stable-code:3b-code-q4_0", + "description": "Stable Code 3B is a coding model with instruct and code completion variants on par with models such as Code Llama 7B that are 2.5x larger.", + "size": "1.6GB", + "digest": "e6b8d206c668", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-code:3b-code-q4_1", + "name": "stable-code:3b-code-q4_1", + "description": "Stable Code 3B is a coding model with instruct and code completion variants on par with models such as Code Llama 7B that are 2.5x larger.", + "size": "1.8GB", + "digest": "5460be3e5e37", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-code:3b-code-q4_K_M", + "name": "stable-code:3b-code-q4_K_M", + "description": "Stable Code 3B is a coding model with instruct and code completion variants on par with models such as Code Llama 7B that are 2.5x larger.", + "size": "1.7GB", + "digest": "993cac4ed3be", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-code:3b-code-q4_K_S", + "name": "stable-code:3b-code-q4_K_S", + "description": "Stable Code 3B is a coding model with instruct and code completion variants on par with models such as Code Llama 7B that are 2.5x larger.", + "size": "1.6GB", + "digest": "4522000738fc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-code:3b-code-q5_0", + "name": "stable-code:3b-code-q5_0", + "description": "Stable Code 3B is a coding model with instruct and code completion variants on par with models such as Code Llama 7B that are 2.5x larger.", + "size": "1.9GB", + "digest": "0aea2c757271", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-code:3b-code-q5_1", + "name": "stable-code:3b-code-q5_1", + "description": "Stable Code 3B is a coding model with instruct and code completion variants on par with models such as Code Llama 7B that are 2.5x larger.", + "size": "2.1GB", + "digest": "dcb2c1120b3e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-code:3b-code-q5_K_M", + "name": "stable-code:3b-code-q5_K_M", + "description": "Stable Code 3B is a coding model with instruct and code completion variants on par with models such as Code Llama 7B that are 2.5x larger.", + "size": "2.0GB", + "digest": "dc47b3aafe13", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-code:3b-code-q5_K_S", + "name": "stable-code:3b-code-q5_K_S", + "description": "Stable Code 3B is a coding model with instruct and code completion variants on par with models such as Code Llama 7B that are 2.5x larger.", + "size": "1.9GB", + "digest": "675f978a6c8b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-code:3b-code-q6_K", + "name": "stable-code:3b-code-q6_K", + "description": "Stable Code 3B is a coding model with instruct and code completion variants on par with models such as Code Llama 7B that are 2.5x larger.", + "size": "2.3GB", + "digest": "76c902d40f56", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-code:3b-code-q8_0", + "name": "stable-code:3b-code-q8_0", + "description": "Stable Code 3B is a coding model with instruct and code completion variants on par with models such as Code Llama 7B that are 2.5x larger.", + "size": "3.0GB", + "digest": "01d2c901e1a1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-code:3b-instruct", + "name": "stable-code:3b-instruct", + "description": "Stable Code 3B is a coding model with instruct and code completion variants on par with models such as Code Llama 7B that are 2.5x larger.", + "size": "1.6GB", + "digest": "37681d29a55a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-code:3b-instruct-fp16", + "name": "stable-code:3b-instruct-fp16", + "description": "Stable Code 3B is a coding model with instruct and code completion variants on par with models such as Code Llama 7B that are 2.5x larger.", + "size": "5.6GB", + "digest": "3358af90609f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-code:3b-instruct-q2_K", + "name": "stable-code:3b-instruct-q2_K", + "description": "Stable Code 3B is a coding model with instruct and code completion variants on par with models such as Code Llama 7B that are 2.5x larger.", + "size": "1.1GB", + "digest": "ebb5c4cc1b09", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-code:3b-instruct-q3_K_L", + "name": "stable-code:3b-instruct-q3_K_L", + "description": "Stable Code 3B is a coding model with instruct and code completion variants on par with models such as Code Llama 7B that are 2.5x larger.", + "size": "1.5GB", + "digest": "4726b8267519", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-code:3b-instruct-q3_K_M", + "name": "stable-code:3b-instruct-q3_K_M", + "description": "Stable Code 3B is a coding model with instruct and code completion variants on par with models such as Code Llama 7B that are 2.5x larger.", + "size": "1.4GB", + "digest": "d7e1f3aa3424", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-code:3b-instruct-q3_K_S", + "name": "stable-code:3b-instruct-q3_K_S", + "description": "Stable Code 3B is a coding model with instruct and code completion variants on par with models such as Code Llama 7B that are 2.5x larger.", + "size": "1.3GB", + "digest": "baf5b20e1f8f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-code:3b-instruct-q4_0", + "name": "stable-code:3b-instruct-q4_0", + "description": "Stable Code 3B is a coding model with instruct and code completion variants on par with models such as Code Llama 7B that are 2.5x larger.", + "size": "1.6GB", + "digest": "37681d29a55a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-code:3b-instruct-q4_1", + "name": "stable-code:3b-instruct-q4_1", + "description": "Stable Code 3B is a coding model with instruct and code completion variants on par with models such as Code Llama 7B that are 2.5x larger.", + "size": "1.8GB", + "digest": "65893a7812e6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-code:3b-instruct-q4_K_M", + "name": "stable-code:3b-instruct-q4_K_M", + "description": "Stable Code 3B is a coding model with instruct and code completion variants on par with models such as Code Llama 7B that are 2.5x larger.", + "size": "1.7GB", + "digest": "f9cbce651928", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-code:3b-instruct-q4_K_S", + "name": "stable-code:3b-instruct-q4_K_S", + "description": "Stable Code 3B is a coding model with instruct and code completion variants on par with models such as Code Llama 7B that are 2.5x larger.", + "size": "1.6GB", + "digest": "8ffb00693783", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-code:3b-instruct-q5_0", + "name": "stable-code:3b-instruct-q5_0", + "description": "Stable Code 3B is a coding model with instruct and code completion variants on par with models such as Code Llama 7B that are 2.5x larger.", + "size": "1.9GB", + "digest": "19bcacd78858", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-code:3b-instruct-q5_1", + "name": "stable-code:3b-instruct-q5_1", + "description": "Stable Code 3B is a coding model with instruct and code completion variants on par with models such as Code Llama 7B that are 2.5x larger.", + "size": "2.1GB", + "digest": "42aca1b5e927", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-code:3b-instruct-q5_K_M", + "name": "stable-code:3b-instruct-q5_K_M", + "description": "Stable Code 3B is a coding model with instruct and code completion variants on par with models such as Code Llama 7B that are 2.5x larger.", + "size": "2.0GB", + "digest": "4deb76630153", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-code:3b-instruct-q5_K_S", + "name": "stable-code:3b-instruct-q5_K_S", + "description": "Stable Code 3B is a coding model with instruct and code completion variants on par with models such as Code Llama 7B that are 2.5x larger.", + "size": "1.9GB", + "digest": "db7ae191d748", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-code:3b-instruct-q6_K", + "name": "stable-code:3b-instruct-q6_K", + "description": "Stable Code 3B is a coding model with instruct and code completion variants on par with models such as Code Llama 7B that are 2.5x larger.", + "size": "2.3GB", + "digest": "2438f92771a2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-code:3b-instruct-q8_0", + "name": "stable-code:3b-instruct-q8_0", + "description": "Stable Code 3B is a coding model with instruct and code completion variants on par with models such as Code Llama 7B that are 2.5x larger.", + "size": "3.0GB", + "digest": "60b6d8e288cb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-code:code", + "name": "stable-code:code", + "description": "Stable Code 3B is a coding model with instruct and code completion variants on par with models such as Code Llama 7B that are 2.5x larger.", + "size": "1.6GB", + "digest": "e6b8d206c668", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-code:instruct", + "name": "stable-code:instruct", + "description": "Stable Code 3B is a coding model with instruct and code completion variants on par with models such as Code Llama 7B that are 2.5x larger.", + "size": "1.6GB", + "digest": "37681d29a55a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openhermes", + "name": "openhermes", + "description": "OpenHermes 2.5 is a 7B model fine-tuned by Teknium on Mistral with fully open datasets.", + "size": "4.1GB", + "digest": "95477a2659b7", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "openhermes:7b-mistral-v2-fp16", + "name": "openhermes:7b-mistral-v2-fp16", + "description": "OpenHermes 2.5 is a 7B model fine-tuned by Teknium on Mistral with fully open datasets.", + "size": "14GB", + "digest": "7363c7974aad", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openhermes:7b-mistral-v2-q2_K", + "name": "openhermes:7b-mistral-v2-q2_K", + "description": "OpenHermes 2.5 is a 7B model fine-tuned by Teknium on Mistral with fully open datasets.", + "size": "3.1GB", + "digest": "7382e175bc40", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openhermes:7b-mistral-v2-q3_K_L", + "name": "openhermes:7b-mistral-v2-q3_K_L", + "description": "OpenHermes 2.5 is a 7B model fine-tuned by Teknium on Mistral with fully open datasets.", + "size": "3.8GB", + "digest": "92639a59090e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openhermes:7b-mistral-v2-q3_K_M", + "name": "openhermes:7b-mistral-v2-q3_K_M", + "description": "OpenHermes 2.5 is a 7B model fine-tuned by Teknium on Mistral with fully open datasets.", + "size": "3.5GB", + "digest": "943cbcfdf34c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openhermes:7b-mistral-v2-q3_K_S", + "name": "openhermes:7b-mistral-v2-q3_K_S", + "description": "OpenHermes 2.5 is a 7B model fine-tuned by Teknium on Mistral with fully open datasets.", + "size": "3.2GB", + "digest": "9293e87ebeee", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openhermes:7b-mistral-v2-q4_0", + "name": "openhermes:7b-mistral-v2-q4_0", + "description": "OpenHermes 2.5 is a 7B model fine-tuned by Teknium on Mistral with fully open datasets.", + "size": "4.1GB", + "digest": "f04d5fa80594", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openhermes:7b-mistral-v2-q4_1", + "name": "openhermes:7b-mistral-v2-q4_1", + "description": "OpenHermes 2.5 is a 7B model fine-tuned by Teknium on Mistral with fully open datasets.", + "size": "4.6GB", + "digest": "578862b7c2c4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openhermes:7b-mistral-v2-q4_K_M", + "name": "openhermes:7b-mistral-v2-q4_K_M", + "description": "OpenHermes 2.5 is a 7B model fine-tuned by Teknium on Mistral with fully open datasets.", + "size": "4.4GB", + "digest": "c834aea088da", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openhermes:7b-mistral-v2-q4_K_S", + "name": "openhermes:7b-mistral-v2-q4_K_S", + "description": "OpenHermes 2.5 is a 7B model fine-tuned by Teknium on Mistral with fully open datasets.", + "size": "4.1GB", + "digest": "2b693162c0b1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openhermes:7b-mistral-v2-q5_0", + "name": "openhermes:7b-mistral-v2-q5_0", + "description": "OpenHermes 2.5 is a 7B model fine-tuned by Teknium on Mistral with fully open datasets.", + "size": "5.0GB", + "digest": "c7ee3129a817", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openhermes:7b-mistral-v2-q5_1", + "name": "openhermes:7b-mistral-v2-q5_1", + "description": "OpenHermes 2.5 is a 7B model fine-tuned by Teknium on Mistral with fully open datasets.", + "size": "5.4GB", + "digest": "6c0627dce78f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openhermes:7b-mistral-v2-q5_K_M", + "name": "openhermes:7b-mistral-v2-q5_K_M", + "description": "OpenHermes 2.5 is a 7B model fine-tuned by Teknium on Mistral with fully open datasets.", + "size": "5.1GB", + "digest": "d021fbb0cb08", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openhermes:7b-mistral-v2-q5_K_S", + "name": "openhermes:7b-mistral-v2-q5_K_S", + "description": "OpenHermes 2.5 is a 7B model fine-tuned by Teknium on Mistral with fully open datasets.", + "size": "5.0GB", + "digest": "0e5722600e00", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openhermes:7b-mistral-v2-q6_K", + "name": "openhermes:7b-mistral-v2-q6_K", + "description": "OpenHermes 2.5 is a 7B model fine-tuned by Teknium on Mistral with fully open datasets.", + "size": "5.9GB", + "digest": "cfc008d96677", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openhermes:7b-mistral-v2-q8_0", + "name": "openhermes:7b-mistral-v2-q8_0", + "description": "OpenHermes 2.5 is a 7B model fine-tuned by Teknium on Mistral with fully open datasets.", + "size": "7.7GB", + "digest": "911a100c0637", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openhermes:7b-mistral-v2.5-fp16", + "name": "openhermes:7b-mistral-v2.5-fp16", + "description": "OpenHermes 2.5 is a 7B model fine-tuned by Teknium on Mistral with fully open datasets.", + "size": "14GB", + "digest": "579d40574c77", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openhermes:7b-mistral-v2.5-q2_K", + "name": "openhermes:7b-mistral-v2.5-q2_K", + "description": "OpenHermes 2.5 is a 7B model fine-tuned by Teknium on Mistral with fully open datasets.", + "size": "3.1GB", + "digest": "44645d418862", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openhermes:7b-mistral-v2.5-q3_K_L", + "name": "openhermes:7b-mistral-v2.5-q3_K_L", + "description": "OpenHermes 2.5 is a 7B model fine-tuned by Teknium on Mistral with fully open datasets.", + "size": "3.8GB", + "digest": "4d3c347d9140", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openhermes:7b-mistral-v2.5-q3_K_M", + "name": "openhermes:7b-mistral-v2.5-q3_K_M", + "description": "OpenHermes 2.5 is a 7B model fine-tuned by Teknium on Mistral with fully open datasets.", + "size": "3.5GB", + "digest": "2356b5964d77", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openhermes:7b-mistral-v2.5-q3_K_S", + "name": "openhermes:7b-mistral-v2.5-q3_K_S", + "description": "OpenHermes 2.5 is a 7B model fine-tuned by Teknium on Mistral with fully open datasets.", + "size": "3.2GB", + "digest": "e7a7de3e60a0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openhermes:7b-mistral-v2.5-q4_0", + "name": "openhermes:7b-mistral-v2.5-q4_0", + "description": "OpenHermes 2.5 is a 7B model fine-tuned by Teknium on Mistral with fully open datasets.", + "size": "4.1GB", + "digest": "95477a2659b7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openhermes:7b-mistral-v2.5-q4_1", + "name": "openhermes:7b-mistral-v2.5-q4_1", + "description": "OpenHermes 2.5 is a 7B model fine-tuned by Teknium on Mistral with fully open datasets.", + "size": "4.6GB", + "digest": "c8ceb7530412", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openhermes:7b-mistral-v2.5-q4_K_M", + "name": "openhermes:7b-mistral-v2.5-q4_K_M", + "description": "OpenHermes 2.5 is a 7B model fine-tuned by Teknium on Mistral with fully open datasets.", + "size": "4.4GB", + "digest": "e898ef9a562f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openhermes:7b-mistral-v2.5-q4_K_S", + "name": "openhermes:7b-mistral-v2.5-q4_K_S", + "description": "OpenHermes 2.5 is a 7B model fine-tuned by Teknium on Mistral with fully open datasets.", + "size": "4.1GB", + "digest": "2528f369c9e5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openhermes:7b-mistral-v2.5-q5_0", + "name": "openhermes:7b-mistral-v2.5-q5_0", + "description": "OpenHermes 2.5 is a 7B model fine-tuned by Teknium on Mistral with fully open datasets.", + "size": "5.0GB", + "digest": "67bd911a9e96", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openhermes:7b-mistral-v2.5-q5_1", + "name": "openhermes:7b-mistral-v2.5-q5_1", + "description": "OpenHermes 2.5 is a 7B model fine-tuned by Teknium on Mistral with fully open datasets.", + "size": "5.4GB", + "digest": "1e67d8f3ad40", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openhermes:7b-mistral-v2.5-q5_K_M", + "name": "openhermes:7b-mistral-v2.5-q5_K_M", + "description": "OpenHermes 2.5 is a 7B model fine-tuned by Teknium on Mistral with fully open datasets.", + "size": "5.1GB", + "digest": "16eab97b0cd1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openhermes:7b-mistral-v2.5-q5_K_S", + "name": "openhermes:7b-mistral-v2.5-q5_K_S", + "description": "OpenHermes 2.5 is a 7B model fine-tuned by Teknium on Mistral with fully open datasets.", + "size": "5.0GB", + "digest": "90f1eb6110b6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openhermes:7b-mistral-v2.5-q6_K", + "name": "openhermes:7b-mistral-v2.5-q6_K", + "description": "OpenHermes 2.5 is a 7B model fine-tuned by Teknium on Mistral with fully open datasets.", + "size": "5.9GB", + "digest": "a63bb944ae62", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openhermes:7b-mistral-v2.5-q8_0", + "name": "openhermes:7b-mistral-v2.5-q8_0", + "description": "OpenHermes 2.5 is a 7B model fine-tuned by Teknium on Mistral with fully open datasets.", + "size": "7.7GB", + "digest": "1617b8a38b70", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openhermes:7b-v2", + "name": "openhermes:7b-v2", + "description": "OpenHermes 2.5 is a 7B model fine-tuned by Teknium on Mistral with fully open datasets.", + "size": "4.1GB", + "digest": "f04d5fa80594", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openhermes:7b-v2.5", + "name": "openhermes:7b-v2.5", + "description": "OpenHermes 2.5 is a 7B model fine-tuned by Teknium on Mistral with fully open datasets.", + "size": "4.1GB", + "digest": "95477a2659b7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openhermes:v2", + "name": "openhermes:v2", + "description": "OpenHermes 2.5 is a 7B model fine-tuned by Teknium on Mistral with fully open datasets.", + "size": "4.1GB", + "digest": "f04d5fa80594", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openhermes:v2.5", + "name": "openhermes:v2.5", + "description": "OpenHermes 2.5 is a 7B model fine-tuned by Teknium on Mistral with fully open datasets.", + "size": "4.1GB", + "digest": "95477a2659b7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "command-r-plus", + "name": "command-r-plus", + "description": "Command R+ is a powerful, scalable large language model purpose-built to excel at real-world enterprise use cases.", + "size": "59GB", + "digest": "e61b6b184f38", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "command-r-plus:104b", + "name": "command-r-plus:104b", + "description": "Command R+ is a powerful, scalable large language model purpose-built to excel at real-world enterprise use cases.", + "size": "59GB", + "digest": "e61b6b184f38", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "command-r-plus:104b-08-2024-fp16", + "name": "command-r-plus:104b-08-2024-fp16", + "description": "Command R+ is a powerful, scalable large language model purpose-built to excel at real-world enterprise use cases.", + "size": "208GB", + "digest": "cda5cd5d6fd5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "command-r-plus:104b-08-2024-q2_K", + "name": "command-r-plus:104b-08-2024-q2_K", + "description": "Command R+ is a powerful, scalable large language model purpose-built to excel at real-world enterprise use cases.", + "size": "39GB", + "digest": "d6cf75a11d66", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "command-r-plus:104b-08-2024-q3_K_L", + "name": "command-r-plus:104b-08-2024-q3_K_L", + "description": "Command R+ is a powerful, scalable large language model purpose-built to excel at real-world enterprise use cases.", + "size": "55GB", + "digest": "69b2a8dc30e2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "command-r-plus:104b-08-2024-q3_K_M", + "name": "command-r-plus:104b-08-2024-q3_K_M", + "description": "Command R+ is a powerful, scalable large language model purpose-built to excel at real-world enterprise use cases.", + "size": "51GB", + "digest": "37e325ccbcf7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "command-r-plus:104b-08-2024-q3_K_S", + "name": "command-r-plus:104b-08-2024-q3_K_S", + "description": "Command R+ is a powerful, scalable large language model purpose-built to excel at real-world enterprise use cases.", + "size": "46GB", + "digest": "5d852f83f3fa", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "command-r-plus:104b-08-2024-q4_0", + "name": "command-r-plus:104b-08-2024-q4_0", + "description": "Command R+ is a powerful, scalable large language model purpose-built to excel at real-world enterprise use cases.", + "size": "59GB", + "digest": "e61b6b184f38", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "command-r-plus:104b-08-2024-q4_1", + "name": "command-r-plus:104b-08-2024-q4_1", + "description": "Command R+ is a powerful, scalable large language model purpose-built to excel at real-world enterprise use cases.", + "size": "66GB", + "digest": "ec1c87fb5362", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "command-r-plus:104b-08-2024-q4_K_M", + "name": "command-r-plus:104b-08-2024-q4_K_M", + "description": "Command R+ is a powerful, scalable large language model purpose-built to excel at real-world enterprise use cases.", + "size": "63GB", + "digest": "59dddc7baffa", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "command-r-plus:104b-08-2024-q4_K_S", + "name": "command-r-plus:104b-08-2024-q4_K_S", + "description": "Command R+ is a powerful, scalable large language model purpose-built to excel at real-world enterprise use cases.", + "size": "60GB", + "digest": "6adaf0700006", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "command-r-plus:104b-08-2024-q5_0", + "name": "command-r-plus:104b-08-2024-q5_0", + "description": "Command R+ is a powerful, scalable large language model purpose-built to excel at real-world enterprise use cases.", + "size": "72GB", + "digest": "02138d04c7e4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "command-r-plus:104b-08-2024-q5_1", + "name": "command-r-plus:104b-08-2024-q5_1", + "description": "Command R+ is a powerful, scalable large language model purpose-built to excel at real-world enterprise use cases.", + "size": "78GB", + "digest": "639beb4e35ac", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "command-r-plus:104b-08-2024-q5_K_M", + "name": "command-r-plus:104b-08-2024-q5_K_M", + "description": "Command R+ is a powerful, scalable large language model purpose-built to excel at real-world enterprise use cases.", + "size": "74GB", + "digest": "28170cce6eed", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "command-r-plus:104b-08-2024-q5_K_S", + "name": "command-r-plus:104b-08-2024-q5_K_S", + "description": "Command R+ is a powerful, scalable large language model purpose-built to excel at real-world enterprise use cases.", + "size": "72GB", + "digest": "8a3814835aeb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "command-r-plus:104b-08-2024-q6_K", + "name": "command-r-plus:104b-08-2024-q6_K", + "description": "Command R+ is a powerful, scalable large language model purpose-built to excel at real-world enterprise use cases.", + "size": "85GB", + "digest": "3344fa938c4a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "command-r-plus:104b-08-2024-q8_0", + "name": "command-r-plus:104b-08-2024-q8_0", + "description": "Command R+ is a powerful, scalable large language model purpose-built to excel at real-world enterprise use cases.", + "size": "110GB", + "digest": "4b4c4bed64da", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "command-r-plus:104b-fp16", + "name": "command-r-plus:104b-fp16", + "description": "Command R+ is a powerful, scalable large language model purpose-built to excel at real-world enterprise use cases.", + "size": "208GB", + "digest": "2e7483530ced", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "command-r-plus:104b-q2_K", + "name": "command-r-plus:104b-q2_K", + "description": "Command R+ is a powerful, scalable large language model purpose-built to excel at real-world enterprise use cases.", + "size": "39GB", + "digest": "d29d312b25b7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "command-r-plus:104b-q4_0", + "name": "command-r-plus:104b-q4_0", + "description": "Command R+ is a powerful, scalable large language model purpose-built to excel at real-world enterprise use cases.", + "size": "59GB", + "digest": "777d41fdcb0e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "command-r-plus:104b-q8_0", + "name": "command-r-plus:104b-q8_0", + "description": "Command R+ is a powerful, scalable large language model purpose-built to excel at real-world enterprise use cases.", + "size": "110GB", + "digest": "420967de8a12", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tinydolphin", + "name": "tinydolphin", + "description": "An experimental 1.1B parameter model trained on the new Dolphin 2.8 dataset by Eric Hartford and based on TinyLlama.", + "size": "637MB", + "digest": "0f9dd11f824c", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "tinydolphin:1.1b", + "name": "tinydolphin:1.1b", + "description": "An experimental 1.1B parameter model trained on the new Dolphin 2.8 dataset by Eric Hartford and based on TinyLlama.", + "size": "637MB", + "digest": "0f9dd11f824c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tinydolphin:1.1b-v2.8-fp16", + "name": "tinydolphin:1.1b-v2.8-fp16", + "description": "An experimental 1.1B parameter model trained on the new Dolphin 2.8 dataset by Eric Hartford and based on TinyLlama.", + "size": "2.2GB", + "digest": "adb3e462abb8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tinydolphin:1.1b-v2.8-q2_K", + "name": "tinydolphin:1.1b-v2.8-q2_K", + "description": "An experimental 1.1B parameter model trained on the new Dolphin 2.8 dataset by Eric Hartford and based on TinyLlama.", + "size": "432MB", + "digest": "053ceac566b6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tinydolphin:1.1b-v2.8-q3_K_L", + "name": "tinydolphin:1.1b-v2.8-q3_K_L", + "description": "An experimental 1.1B parameter model trained on the new Dolphin 2.8 dataset by Eric Hartford and based on TinyLlama.", + "size": "592MB", + "digest": "d744f6260a5a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tinydolphin:1.1b-v2.8-q3_K_M", + "name": "tinydolphin:1.1b-v2.8-q3_K_M", + "description": "An experimental 1.1B parameter model trained on the new Dolphin 2.8 dataset by Eric Hartford and based on TinyLlama.", + "size": "548MB", + "digest": "a269253dc7d8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tinydolphin:1.1b-v2.8-q3_K_S", + "name": "tinydolphin:1.1b-v2.8-q3_K_S", + "description": "An experimental 1.1B parameter model trained on the new Dolphin 2.8 dataset by Eric Hartford and based on TinyLlama.", + "size": "499MB", + "digest": "1334375595f1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tinydolphin:1.1b-v2.8-q4_0", + "name": "tinydolphin:1.1b-v2.8-q4_0", + "description": "An experimental 1.1B parameter model trained on the new Dolphin 2.8 dataset by Eric Hartford and based on TinyLlama.", + "size": "637MB", + "digest": "0f9dd11f824c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tinydolphin:1.1b-v2.8-q4_1", + "name": "tinydolphin:1.1b-v2.8-q4_1", + "description": "An experimental 1.1B parameter model trained on the new Dolphin 2.8 dataset by Eric Hartford and based on TinyLlama.", + "size": "701MB", + "digest": "3775322fd876", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tinydolphin:1.1b-v2.8-q4_K_M", + "name": "tinydolphin:1.1b-v2.8-q4_K_M", + "description": "An experimental 1.1B parameter model trained on the new Dolphin 2.8 dataset by Eric Hartford and based on TinyLlama.", + "size": "668MB", + "digest": "0cf10b4bfdca", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tinydolphin:1.1b-v2.8-q4_K_S", + "name": "tinydolphin:1.1b-v2.8-q4_K_S", + "description": "An experimental 1.1B parameter model trained on the new Dolphin 2.8 dataset by Eric Hartford and based on TinyLlama.", + "size": "640MB", + "digest": "47eefa638255", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tinydolphin:1.1b-v2.8-q5_0", + "name": "tinydolphin:1.1b-v2.8-q5_0", + "description": "An experimental 1.1B parameter model trained on the new Dolphin 2.8 dataset by Eric Hartford and based on TinyLlama.", + "size": "766MB", + "digest": "bd9464ab8450", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tinydolphin:1.1b-v2.8-q5_1", + "name": "tinydolphin:1.1b-v2.8-q5_1", + "description": "An experimental 1.1B parameter model trained on the new Dolphin 2.8 dataset by Eric Hartford and based on TinyLlama.", + "size": "831MB", + "digest": "2a519cd98a34", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tinydolphin:1.1b-v2.8-q5_K_M", + "name": "tinydolphin:1.1b-v2.8-q5_K_M", + "description": "An experimental 1.1B parameter model trained on the new Dolphin 2.8 dataset by Eric Hartford and based on TinyLlama.", + "size": "782MB", + "digest": "4a56f53dcad5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tinydolphin:1.1b-v2.8-q5_K_S", + "name": "tinydolphin:1.1b-v2.8-q5_K_S", + "description": "An experimental 1.1B parameter model trained on the new Dolphin 2.8 dataset by Eric Hartford and based on TinyLlama.", + "size": "766MB", + "digest": "635e25aae973", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tinydolphin:1.1b-v2.8-q6_K", + "name": "tinydolphin:1.1b-v2.8-q6_K", + "description": "An experimental 1.1B parameter model trained on the new Dolphin 2.8 dataset by Eric Hartford and based on TinyLlama.", + "size": "903MB", + "digest": "014f5ec4120f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tinydolphin:1.1b-v2.8-q8_0", + "name": "tinydolphin:1.1b-v2.8-q8_0", + "description": "An experimental 1.1B parameter model trained on the new Dolphin 2.8 dataset by Eric Hartford and based on TinyLlama.", + "size": "1.2GB", + "digest": "852afb95a69e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tinydolphin:v2.8", + "name": "tinydolphin:v2.8", + "description": "An experimental 1.1B parameter model trained on the new Dolphin 2.8 dataset by Eric Hartford and based on TinyLlama.", + "size": "637MB", + "digest": "0f9dd11f824c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2-math", + "name": "qwen2-math", + "description": "Qwen2 Math is a series of specialized math language models built upon the Qwen2 LLMs, which significantly outperforms the mathematical capabilities of open-source models and even closed-source models (e.g., GPT4o).", + "size": "4.4GB", + "digest": "28cc3a337734", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "qwen2-math:1.5b", + "name": "qwen2-math:1.5b", + "description": "Qwen2 Math is a series of specialized math language models built upon the Qwen2 LLMs, which significantly outperforms the mathematical capabilities of open-source models and even closed-source models (e.g., GPT4o).", + "size": "935MB", + "digest": "a4fdda0c6cc5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2-math:7b", + "name": "qwen2-math:7b", + "description": "Qwen2 Math is a series of specialized math language models built upon the Qwen2 LLMs, which significantly outperforms the mathematical capabilities of open-source models and even closed-source models (e.g., GPT4o).", + "size": "4.4GB", + "digest": "28cc3a337734", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2-math:72b", + "name": "qwen2-math:72b", + "description": "Qwen2 Math is a series of specialized math language models built upon the Qwen2 LLMs, which significantly outperforms the mathematical capabilities of open-source models and even closed-source models (e.g., GPT4o).", + "size": "41GB", + "digest": "9cf426342464", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2-math:1.5b-instruct", + "name": "qwen2-math:1.5b-instruct", + "description": "Qwen2 Math is a series of specialized math language models built upon the Qwen2 LLMs, which significantly outperforms the mathematical capabilities of open-source models and even closed-source models (e.g., GPT4o).", + "size": "935MB", + "digest": "a4fdda0c6cc5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2-math:1.5b-instruct-fp16", + "name": "qwen2-math:1.5b-instruct-fp16", + "description": "Qwen2 Math is a series of specialized math language models built upon the Qwen2 LLMs, which significantly outperforms the mathematical capabilities of open-source models and even closed-source models (e.g., GPT4o).", + "size": "3.1GB", + "digest": "d8dc2e83f294", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2-math:1.5b-instruct-q2_K", + "name": "qwen2-math:1.5b-instruct-q2_K", + "description": "Qwen2 Math is a series of specialized math language models built upon the Qwen2 LLMs, which significantly outperforms the mathematical capabilities of open-source models and even closed-source models (e.g., GPT4o).", + "size": "676MB", + "digest": "7a8feb441528", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2-math:1.5b-instruct-q3_K_L", + "name": "qwen2-math:1.5b-instruct-q3_K_L", + "description": "Qwen2 Math is a series of specialized math language models built upon the Qwen2 LLMs, which significantly outperforms the mathematical capabilities of open-source models and even closed-source models (e.g., GPT4o).", + "size": "880MB", + "digest": "8db3e0ee180a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2-math:1.5b-instruct-q3_K_M", + "name": "qwen2-math:1.5b-instruct-q3_K_M", + "description": "Qwen2 Math is a series of specialized math language models built upon the Qwen2 LLMs, which significantly outperforms the mathematical capabilities of open-source models and even closed-source models (e.g., GPT4o).", + "size": "824MB", + "digest": "edd19aa7dc5c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2-math:1.5b-instruct-q3_K_S", + "name": "qwen2-math:1.5b-instruct-q3_K_S", + "description": "Qwen2 Math is a series of specialized math language models built upon the Qwen2 LLMs, which significantly outperforms the mathematical capabilities of open-source models and even closed-source models (e.g., GPT4o).", + "size": "761MB", + "digest": "2944d4047629", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2-math:1.5b-instruct-q4_0", + "name": "qwen2-math:1.5b-instruct-q4_0", + "description": "Qwen2 Math is a series of specialized math language models built upon the Qwen2 LLMs, which significantly outperforms the mathematical capabilities of open-source models and even closed-source models (e.g., GPT4o).", + "size": "935MB", + "digest": "a4fdda0c6cc5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2-math:1.5b-instruct-q4_1", + "name": "qwen2-math:1.5b-instruct-q4_1", + "description": "Qwen2 Math is a series of specialized math language models built upon the Qwen2 LLMs, which significantly outperforms the mathematical capabilities of open-source models and even closed-source models (e.g., GPT4o).", + "size": "1.0GB", + "digest": "0df8170c4293", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2-math:1.5b-instruct-q4_K_M", + "name": "qwen2-math:1.5b-instruct-q4_K_M", + "description": "Qwen2 Math is a series of specialized math language models built upon the Qwen2 LLMs, which significantly outperforms the mathematical capabilities of open-source models and even closed-source models (e.g., GPT4o).", + "size": "986MB", + "digest": "2cf0b27c20c4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2-math:1.5b-instruct-q4_K_S", + "name": "qwen2-math:1.5b-instruct-q4_K_S", + "description": "Qwen2 Math is a series of specialized math language models built upon the Qwen2 LLMs, which significantly outperforms the mathematical capabilities of open-source models and even closed-source models (e.g., GPT4o).", + "size": "940MB", + "digest": "bf98cc10ea89", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2-math:1.5b-instruct-q5_0", + "name": "qwen2-math:1.5b-instruct-q5_0", + "description": "Qwen2 Math is a series of specialized math language models built upon the Qwen2 LLMs, which significantly outperforms the mathematical capabilities of open-source models and even closed-source models (e.g., GPT4o).", + "size": "1.1GB", + "digest": "6458bd105c38", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2-math:1.5b-instruct-q5_1", + "name": "qwen2-math:1.5b-instruct-q5_1", + "description": "Qwen2 Math is a series of specialized math language models built upon the Qwen2 LLMs, which significantly outperforms the mathematical capabilities of open-source models and even closed-source models (e.g., GPT4o).", + "size": "1.2GB", + "digest": "a6c823420573", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2-math:1.5b-instruct-q5_K_M", + "name": "qwen2-math:1.5b-instruct-q5_K_M", + "description": "Qwen2 Math is a series of specialized math language models built upon the Qwen2 LLMs, which significantly outperforms the mathematical capabilities of open-source models and even closed-source models (e.g., GPT4o).", + "size": "1.1GB", + "digest": "041636d78c2d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2-math:1.5b-instruct-q5_K_S", + "name": "qwen2-math:1.5b-instruct-q5_K_S", + "description": "Qwen2 Math is a series of specialized math language models built upon the Qwen2 LLMs, which significantly outperforms the mathematical capabilities of open-source models and even closed-source models (e.g., GPT4o).", + "size": "1.1GB", + "digest": "de1d907e050a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2-math:1.5b-instruct-q6_K", + "name": "qwen2-math:1.5b-instruct-q6_K", + "description": "Qwen2 Math is a series of specialized math language models built upon the Qwen2 LLMs, which significantly outperforms the mathematical capabilities of open-source models and even closed-source models (e.g., GPT4o).", + "size": "1.3GB", + "digest": "bef4dcb32ea5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2-math:1.5b-instruct-q8_0", + "name": "qwen2-math:1.5b-instruct-q8_0", + "description": "Qwen2 Math is a series of specialized math language models built upon the Qwen2 LLMs, which significantly outperforms the mathematical capabilities of open-source models and even closed-source models (e.g., GPT4o).", + "size": "1.6GB", + "digest": "ad817da24abc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2-math:72b-instruct", + "name": "qwen2-math:72b-instruct", + "description": "Qwen2 Math is a series of specialized math language models built upon the Qwen2 LLMs, which significantly outperforms the mathematical capabilities of open-source models and even closed-source models (e.g., GPT4o).", + "size": "41GB", + "digest": "9cf426342464", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2-math:72b-instruct-fp16", + "name": "qwen2-math:72b-instruct-fp16", + "description": "Qwen2 Math is a series of specialized math language models built upon the Qwen2 LLMs, which significantly outperforms the mathematical capabilities of open-source models and even closed-source models (e.g., GPT4o).", + "size": "145GB", + "digest": "119fdb055da9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2-math:72b-instruct-q2_K", + "name": "qwen2-math:72b-instruct-q2_K", + "description": "Qwen2 Math is a series of specialized math language models built upon the Qwen2 LLMs, which significantly outperforms the mathematical capabilities of open-source models and even closed-source models (e.g., GPT4o).", + "size": "30GB", + "digest": "e756083b2ef3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2-math:72b-instruct-q3_K_L", + "name": "qwen2-math:72b-instruct-q3_K_L", + "description": "Qwen2 Math is a series of specialized math language models built upon the Qwen2 LLMs, which significantly outperforms the mathematical capabilities of open-source models and even closed-source models (e.g., GPT4o).", + "size": "40GB", + "digest": "9b0ee46ebbb0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2-math:72b-instruct-q3_K_M", + "name": "qwen2-math:72b-instruct-q3_K_M", + "description": "Qwen2 Math is a series of specialized math language models built upon the Qwen2 LLMs, which significantly outperforms the mathematical capabilities of open-source models and even closed-source models (e.g., GPT4o).", + "size": "38GB", + "digest": "39f518ee780a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2-math:72b-instruct-q3_K_S", + "name": "qwen2-math:72b-instruct-q3_K_S", + "description": "Qwen2 Math is a series of specialized math language models built upon the Qwen2 LLMs, which significantly outperforms the mathematical capabilities of open-source models and even closed-source models (e.g., GPT4o).", + "size": "34GB", + "digest": "8300d30bce4d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2-math:72b-instruct-q4_0", + "name": "qwen2-math:72b-instruct-q4_0", + "description": "Qwen2 Math is a series of specialized math language models built upon the Qwen2 LLMs, which significantly outperforms the mathematical capabilities of open-source models and even closed-source models (e.g., GPT4o).", + "size": "41GB", + "digest": "9cf426342464", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2-math:72b-instruct-q4_1", + "name": "qwen2-math:72b-instruct-q4_1", + "description": "Qwen2 Math is a series of specialized math language models built upon the Qwen2 LLMs, which significantly outperforms the mathematical capabilities of open-source models and even closed-source models (e.g., GPT4o).", + "size": "46GB", + "digest": "92742f4e5a3c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2-math:72b-instruct-q4_K_M", + "name": "qwen2-math:72b-instruct-q4_K_M", + "description": "Qwen2 Math is a series of specialized math language models built upon the Qwen2 LLMs, which significantly outperforms the mathematical capabilities of open-source models and even closed-source models (e.g., GPT4o).", + "size": "47GB", + "digest": "4607ef31652a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2-math:72b-instruct-q4_K_S", + "name": "qwen2-math:72b-instruct-q4_K_S", + "description": "Qwen2 Math is a series of specialized math language models built upon the Qwen2 LLMs, which significantly outperforms the mathematical capabilities of open-source models and even closed-source models (e.g., GPT4o).", + "size": "44GB", + "digest": "7fdab978b506", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2-math:72b-instruct-q5_0", + "name": "qwen2-math:72b-instruct-q5_0", + "description": "Qwen2 Math is a series of specialized math language models built upon the Qwen2 LLMs, which significantly outperforms the mathematical capabilities of open-source models and even closed-source models (e.g., GPT4o).", + "size": "50GB", + "digest": "08ba2da5a4db", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2-math:72b-instruct-q5_1", + "name": "qwen2-math:72b-instruct-q5_1", + "description": "Qwen2 Math is a series of specialized math language models built upon the Qwen2 LLMs, which significantly outperforms the mathematical capabilities of open-source models and even closed-source models (e.g., GPT4o).", + "size": "55GB", + "digest": "6ae803c94afe", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2-math:72b-instruct-q5_K_M", + "name": "qwen2-math:72b-instruct-q5_K_M", + "description": "Qwen2 Math is a series of specialized math language models built upon the Qwen2 LLMs, which significantly outperforms the mathematical capabilities of open-source models and even closed-source models (e.g., GPT4o).", + "size": "54GB", + "digest": "ad3afa8c1764", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2-math:72b-instruct-q5_K_S", + "name": "qwen2-math:72b-instruct-q5_K_S", + "description": "Qwen2 Math is a series of specialized math language models built upon the Qwen2 LLMs, which significantly outperforms the mathematical capabilities of open-source models and even closed-source models (e.g., GPT4o).", + "size": "51GB", + "digest": "84fadf091d81", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2-math:72b-instruct-q6_K", + "name": "qwen2-math:72b-instruct-q6_K", + "description": "Qwen2 Math is a series of specialized math language models built upon the Qwen2 LLMs, which significantly outperforms the mathematical capabilities of open-source models and even closed-source models (e.g., GPT4o).", + "size": "64GB", + "digest": "0357576f1f45", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2-math:72b-instruct-q8_0", + "name": "qwen2-math:72b-instruct-q8_0", + "description": "Qwen2 Math is a series of specialized math language models built upon the Qwen2 LLMs, which significantly outperforms the mathematical capabilities of open-source models and even closed-source models (e.g., GPT4o).", + "size": "77GB", + "digest": "4a5f8f66cc3b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2-math:7b-instruct", + "name": "qwen2-math:7b-instruct", + "description": "Qwen2 Math is a series of specialized math language models built upon the Qwen2 LLMs, which significantly outperforms the mathematical capabilities of open-source models and even closed-source models (e.g., GPT4o).", + "size": "4.4GB", + "digest": "28cc3a337734", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2-math:7b-instruct-fp16", + "name": "qwen2-math:7b-instruct-fp16", + "description": "Qwen2 Math is a series of specialized math language models built upon the Qwen2 LLMs, which significantly outperforms the mathematical capabilities of open-source models and even closed-source models (e.g., GPT4o).", + "size": "15GB", + "digest": "2ff60f753a04", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2-math:7b-instruct-q2_K", + "name": "qwen2-math:7b-instruct-q2_K", + "description": "Qwen2 Math is a series of specialized math language models built upon the Qwen2 LLMs, which significantly outperforms the mathematical capabilities of open-source models and even closed-source models (e.g., GPT4o).", + "size": "3.0GB", + "digest": "4ed0c248a5bf", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2-math:7b-instruct-q3_K_L", + "name": "qwen2-math:7b-instruct-q3_K_L", + "description": "Qwen2 Math is a series of specialized math language models built upon the Qwen2 LLMs, which significantly outperforms the mathematical capabilities of open-source models and even closed-source models (e.g., GPT4o).", + "size": "4.1GB", + "digest": "7e37bb4b4a7a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2-math:7b-instruct-q3_K_M", + "name": "qwen2-math:7b-instruct-q3_K_M", + "description": "Qwen2 Math is a series of specialized math language models built upon the Qwen2 LLMs, which significantly outperforms the mathematical capabilities of open-source models and even closed-source models (e.g., GPT4o).", + "size": "3.8GB", + "digest": "4454608bd85e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2-math:7b-instruct-q3_K_S", + "name": "qwen2-math:7b-instruct-q3_K_S", + "description": "Qwen2 Math is a series of specialized math language models built upon the Qwen2 LLMs, which significantly outperforms the mathematical capabilities of open-source models and even closed-source models (e.g., GPT4o).", + "size": "3.5GB", + "digest": "d53bb5d1bf39", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2-math:7b-instruct-q4_0", + "name": "qwen2-math:7b-instruct-q4_0", + "description": "Qwen2 Math is a series of specialized math language models built upon the Qwen2 LLMs, which significantly outperforms the mathematical capabilities of open-source models and even closed-source models (e.g., GPT4o).", + "size": "4.4GB", + "digest": "28cc3a337734", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2-math:7b-instruct-q4_1", + "name": "qwen2-math:7b-instruct-q4_1", + "description": "Qwen2 Math is a series of specialized math language models built upon the Qwen2 LLMs, which significantly outperforms the mathematical capabilities of open-source models and even closed-source models (e.g., GPT4o).", + "size": "4.9GB", + "digest": "53ddcc942030", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2-math:7b-instruct-q4_K_M", + "name": "qwen2-math:7b-instruct-q4_K_M", + "description": "Qwen2 Math is a series of specialized math language models built upon the Qwen2 LLMs, which significantly outperforms the mathematical capabilities of open-source models and even closed-source models (e.g., GPT4o).", + "size": "4.7GB", + "digest": "bade12dad269", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2-math:7b-instruct-q4_K_S", + "name": "qwen2-math:7b-instruct-q4_K_S", + "description": "Qwen2 Math is a series of specialized math language models built upon the Qwen2 LLMs, which significantly outperforms the mathematical capabilities of open-source models and even closed-source models (e.g., GPT4o).", + "size": "4.5GB", + "digest": "ed3fc5765c47", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2-math:7b-instruct-q5_0", + "name": "qwen2-math:7b-instruct-q5_0", + "description": "Qwen2 Math is a series of specialized math language models built upon the Qwen2 LLMs, which significantly outperforms the mathematical capabilities of open-source models and even closed-source models (e.g., GPT4o).", + "size": "5.3GB", + "digest": "8538649897c5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2-math:7b-instruct-q5_1", + "name": "qwen2-math:7b-instruct-q5_1", + "description": "Qwen2 Math is a series of specialized math language models built upon the Qwen2 LLMs, which significantly outperforms the mathematical capabilities of open-source models and even closed-source models (e.g., GPT4o).", + "size": "5.8GB", + "digest": "d428300aab38", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2-math:7b-instruct-q5_K_M", + "name": "qwen2-math:7b-instruct-q5_K_M", + "description": "Qwen2 Math is a series of specialized math language models built upon the Qwen2 LLMs, which significantly outperforms the mathematical capabilities of open-source models and even closed-source models (e.g., GPT4o).", + "size": "5.4GB", + "digest": "b49686d392f7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2-math:7b-instruct-q5_K_S", + "name": "qwen2-math:7b-instruct-q5_K_S", + "description": "Qwen2 Math is a series of specialized math language models built upon the Qwen2 LLMs, which significantly outperforms the mathematical capabilities of open-source models and even closed-source models (e.g., GPT4o).", + "size": "5.3GB", + "digest": "1b0fe2e02e2c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2-math:7b-instruct-q6_K", + "name": "qwen2-math:7b-instruct-q6_K", + "description": "Qwen2 Math is a series of specialized math language models built upon the Qwen2 LLMs, which significantly outperforms the mathematical capabilities of open-source models and even closed-source models (e.g., GPT4o).", + "size": "6.3GB", + "digest": "e387e8c7e4de", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "qwen2-math:7b-instruct-q8_0", + "name": "qwen2-math:7b-instruct-q8_0", + "description": "Qwen2 Math is a series of specialized math language models built upon the Qwen2 LLMs, which significantly outperforms the mathematical capabilities of open-source models and even closed-source models (e.g., GPT4o).", + "size": "8.1GB", + "digest": "628f28555c4e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder", + "name": "wizardcoder", + "description": "State-of-the-art code generation model", + "size": "3.8GB", + "digest": "de9d848c1323", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "wizardcoder:33b", + "name": "wizardcoder:33b", + "description": "State-of-the-art code generation model", + "size": "19GB", + "digest": "5b944d3546ee", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:13b-python", + "name": "wizardcoder:13b-python", + "description": "State-of-the-art code generation model", + "size": "7.4GB", + "digest": "d7a182d30037", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:13b-python-fp16", + "name": "wizardcoder:13b-python-fp16", + "description": "State-of-the-art code generation model", + "size": "26GB", + "digest": "b680f30d4604", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:13b-python-q2_K", + "name": "wizardcoder:13b-python-q2_K", + "description": "State-of-the-art code generation model", + "size": "5.4GB", + "digest": "9d08f09f5a11", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:13b-python-q3_K_L", + "name": "wizardcoder:13b-python-q3_K_L", + "description": "State-of-the-art code generation model", + "size": "6.9GB", + "digest": "80d029502a71", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:13b-python-q3_K_M", + "name": "wizardcoder:13b-python-q3_K_M", + "description": "State-of-the-art code generation model", + "size": "6.3GB", + "digest": "879ce164f5d6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:13b-python-q3_K_S", + "name": "wizardcoder:13b-python-q3_K_S", + "description": "State-of-the-art code generation model", + "size": "5.7GB", + "digest": "d37ae23270d6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:13b-python-q4_0", + "name": "wizardcoder:13b-python-q4_0", + "description": "State-of-the-art code generation model", + "size": "7.4GB", + "digest": "d7a182d30037", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:13b-python-q4_1", + "name": "wizardcoder:13b-python-q4_1", + "description": "State-of-the-art code generation model", + "size": "8.2GB", + "digest": "b28d73532f80", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:13b-python-q4_K_M", + "name": "wizardcoder:13b-python-q4_K_M", + "description": "State-of-the-art code generation model", + "size": "7.9GB", + "digest": "4bd69e8c1d54", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:13b-python-q4_K_S", + "name": "wizardcoder:13b-python-q4_K_S", + "description": "State-of-the-art code generation model", + "size": "7.4GB", + "digest": "1e0d5d8584b7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:13b-python-q5_0", + "name": "wizardcoder:13b-python-q5_0", + "description": "State-of-the-art code generation model", + "size": "9.0GB", + "digest": "5535a0b027bf", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:13b-python-q5_1", + "name": "wizardcoder:13b-python-q5_1", + "description": "State-of-the-art code generation model", + "size": "9.8GB", + "digest": "ca2dfb0ddeef", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:13b-python-q5_K_M", + "name": "wizardcoder:13b-python-q5_K_M", + "description": "State-of-the-art code generation model", + "size": "9.2GB", + "digest": "e48f7ff9a44a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:13b-python-q5_K_S", + "name": "wizardcoder:13b-python-q5_K_S", + "description": "State-of-the-art code generation model", + "size": "9.0GB", + "digest": "984be9aee8bb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:13b-python-q6_K", + "name": "wizardcoder:13b-python-q6_K", + "description": "State-of-the-art code generation model", + "size": "11GB", + "digest": "3b010d19b3a9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:13b-python-q8_0", + "name": "wizardcoder:13b-python-q8_0", + "description": "State-of-the-art code generation model", + "size": "14GB", + "digest": "486974de5d6c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:33b-v1.1", + "name": "wizardcoder:33b-v1.1", + "description": "State-of-the-art code generation model", + "size": "19GB", + "digest": "5b944d3546ee", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:33b-v1.1-fp16", + "name": "wizardcoder:33b-v1.1-fp16", + "description": "State-of-the-art code generation model", + "size": "67GB", + "digest": "a56de4864c5f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:33b-v1.1-q2_K", + "name": "wizardcoder:33b-v1.1-q2_K", + "description": "State-of-the-art code generation model", + "size": "14GB", + "digest": "cac60354d59f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:33b-v1.1-q3_K_L", + "name": "wizardcoder:33b-v1.1-q3_K_L", + "description": "State-of-the-art code generation model", + "size": "18GB", + "digest": "b31ccebc7f39", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:33b-v1.1-q3_K_M", + "name": "wizardcoder:33b-v1.1-q3_K_M", + "description": "State-of-the-art code generation model", + "size": "16GB", + "digest": "a10f6bc2ea74", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:33b-v1.1-q3_K_S", + "name": "wizardcoder:33b-v1.1-q3_K_S", + "description": "State-of-the-art code generation model", + "size": "14GB", + "digest": "4449975a9912", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:33b-v1.1-q4_0", + "name": "wizardcoder:33b-v1.1-q4_0", + "description": "State-of-the-art code generation model", + "size": "19GB", + "digest": "5b944d3546ee", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:33b-v1.1-q4_1", + "name": "wizardcoder:33b-v1.1-q4_1", + "description": "State-of-the-art code generation model", + "size": "21GB", + "digest": "d487355ac46a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:33b-v1.1-q4_K_M", + "name": "wizardcoder:33b-v1.1-q4_K_M", + "description": "State-of-the-art code generation model", + "size": "20GB", + "digest": "48cc48a16966", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:33b-v1.1-q4_K_S", + "name": "wizardcoder:33b-v1.1-q4_K_S", + "description": "State-of-the-art code generation model", + "size": "19GB", + "digest": "7e44c2801867", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:33b-v1.1-q5_0", + "name": "wizardcoder:33b-v1.1-q5_0", + "description": "State-of-the-art code generation model", + "size": "23GB", + "digest": "01d68c42eb7a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:33b-v1.1-q5_1", + "name": "wizardcoder:33b-v1.1-q5_1", + "description": "State-of-the-art code generation model", + "size": "25GB", + "digest": "a7061aa66c60", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:33b-v1.1-q5_K_M", + "name": "wizardcoder:33b-v1.1-q5_K_M", + "description": "State-of-the-art code generation model", + "size": "24GB", + "digest": "c54e9691c0e5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:33b-v1.1-q5_K_S", + "name": "wizardcoder:33b-v1.1-q5_K_S", + "description": "State-of-the-art code generation model", + "size": "23GB", + "digest": "d2b35a494eb7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:33b-v1.1-q6_K", + "name": "wizardcoder:33b-v1.1-q6_K", + "description": "State-of-the-art code generation model", + "size": "27GB", + "digest": "3b8ff92e2c36", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:33b-v1.1-q8_0", + "name": "wizardcoder:33b-v1.1-q8_0", + "description": "State-of-the-art code generation model", + "size": "35GB", + "digest": "e40b547ccf3c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:34b-python", + "name": "wizardcoder:34b-python", + "description": "State-of-the-art code generation model", + "size": "19GB", + "digest": "94b069a3c250", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:34b-python-fp16", + "name": "wizardcoder:34b-python-fp16", + "description": "State-of-the-art code generation model", + "size": "67GB", + "digest": "06ce62e380d8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:34b-python-q2_K", + "name": "wizardcoder:34b-python-q2_K", + "description": "State-of-the-art code generation model", + "size": "14GB", + "digest": "a66fc80190bc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:34b-python-q3_K_L", + "name": "wizardcoder:34b-python-q3_K_L", + "description": "State-of-the-art code generation model", + "size": "18GB", + "digest": "89b75137872a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:34b-python-q3_K_M", + "name": "wizardcoder:34b-python-q3_K_M", + "description": "State-of-the-art code generation model", + "size": "16GB", + "digest": "20d614b143fc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:34b-python-q3_K_S", + "name": "wizardcoder:34b-python-q3_K_S", + "description": "State-of-the-art code generation model", + "size": "15GB", + "digest": "5e0df15140c3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:34b-python-q4_0", + "name": "wizardcoder:34b-python-q4_0", + "description": "State-of-the-art code generation model", + "size": "19GB", + "digest": "94b069a3c250", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:34b-python-q4_1", + "name": "wizardcoder:34b-python-q4_1", + "description": "State-of-the-art code generation model", + "size": "21GB", + "digest": "a3dcf8f5f9f4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:34b-python-q4_K_M", + "name": "wizardcoder:34b-python-q4_K_M", + "description": "State-of-the-art code generation model", + "size": "20GB", + "digest": "d9be0b235c1a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:34b-python-q4_K_S", + "name": "wizardcoder:34b-python-q4_K_S", + "description": "State-of-the-art code generation model", + "size": "19GB", + "digest": "f040233a2069", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:34b-python-q5_0", + "name": "wizardcoder:34b-python-q5_0", + "description": "State-of-the-art code generation model", + "size": "23GB", + "digest": "919631f57df4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:34b-python-q5_1", + "name": "wizardcoder:34b-python-q5_1", + "description": "State-of-the-art code generation model", + "size": "25GB", + "digest": "3a87a5cc556c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:34b-python-q5_K_M", + "name": "wizardcoder:34b-python-q5_K_M", + "description": "State-of-the-art code generation model", + "size": "24GB", + "digest": "a1e91b87cba7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:34b-python-q5_K_S", + "name": "wizardcoder:34b-python-q5_K_S", + "description": "State-of-the-art code generation model", + "size": "23GB", + "digest": "53e9b8e3838c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:34b-python-q6_K", + "name": "wizardcoder:34b-python-q6_K", + "description": "State-of-the-art code generation model", + "size": "28GB", + "digest": "7bd078e389d6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:34b-python-q8_0", + "name": "wizardcoder:34b-python-q8_0", + "description": "State-of-the-art code generation model", + "size": "36GB", + "digest": "4175ea9836f7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:7b-python", + "name": "wizardcoder:7b-python", + "description": "State-of-the-art code generation model", + "size": "3.8GB", + "digest": "de9d848c1323", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:7b-python-fp16", + "name": "wizardcoder:7b-python-fp16", + "description": "State-of-the-art code generation model", + "size": "13GB", + "digest": "c7922dcf56f4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:7b-python-q2_K", + "name": "wizardcoder:7b-python-q2_K", + "description": "State-of-the-art code generation model", + "size": "2.8GB", + "digest": "d644137a0ac3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:7b-python-q3_K_L", + "name": "wizardcoder:7b-python-q3_K_L", + "description": "State-of-the-art code generation model", + "size": "3.6GB", + "digest": "679d81a8f5ac", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:7b-python-q3_K_M", + "name": "wizardcoder:7b-python-q3_K_M", + "description": "State-of-the-art code generation model", + "size": "3.3GB", + "digest": "aa045df3991e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:7b-python-q3_K_S", + "name": "wizardcoder:7b-python-q3_K_S", + "description": "State-of-the-art code generation model", + "size": "2.9GB", + "digest": "708bb076c986", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:7b-python-q4_0", + "name": "wizardcoder:7b-python-q4_0", + "description": "State-of-the-art code generation model", + "size": "3.8GB", + "digest": "de9d848c1323", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:7b-python-q4_1", + "name": "wizardcoder:7b-python-q4_1", + "description": "State-of-the-art code generation model", + "size": "4.2GB", + "digest": "e2860acf8d17", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:7b-python-q4_K_M", + "name": "wizardcoder:7b-python-q4_K_M", + "description": "State-of-the-art code generation model", + "size": "4.1GB", + "digest": "3e02fecbaa9a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:7b-python-q4_K_S", + "name": "wizardcoder:7b-python-q4_K_S", + "description": "State-of-the-art code generation model", + "size": "3.9GB", + "digest": "366cbd3b76e0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:7b-python-q5_0", + "name": "wizardcoder:7b-python-q5_0", + "description": "State-of-the-art code generation model", + "size": "4.7GB", + "digest": "b0eab9a46be4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:7b-python-q5_1", + "name": "wizardcoder:7b-python-q5_1", + "description": "State-of-the-art code generation model", + "size": "5.1GB", + "digest": "07ea37319f2b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:7b-python-q5_K_M", + "name": "wizardcoder:7b-python-q5_K_M", + "description": "State-of-the-art code generation model", + "size": "4.8GB", + "digest": "6e7969881169", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:7b-python-q5_K_S", + "name": "wizardcoder:7b-python-q5_K_S", + "description": "State-of-the-art code generation model", + "size": "4.7GB", + "digest": "04130203ceb8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:7b-python-q6_K", + "name": "wizardcoder:7b-python-q6_K", + "description": "State-of-the-art code generation model", + "size": "5.5GB", + "digest": "2d3281c4b417", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:7b-python-q8_0", + "name": "wizardcoder:7b-python-q8_0", + "description": "State-of-the-art code generation model", + "size": "7.2GB", + "digest": "711202346249", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardcoder:python", + "name": "wizardcoder:python", + "description": "State-of-the-art code generation model", + "size": "3.8GB", + "digest": "de9d848c1323", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-v2", + "name": "deepseek-v2", + "description": "A strong, economical, and efficient Mixture-of-Experts language model.", + "size": "8.9GB", + "digest": "7c8c332f2df7", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "deepseek-v2:16b", + "name": "deepseek-v2:16b", + "description": "A strong, economical, and efficient Mixture-of-Experts language model.", + "size": "8.9GB", + "digest": "7c8c332f2df7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-v2:236b", + "name": "deepseek-v2:236b", + "description": "A strong, economical, and efficient Mixture-of-Experts language model.", + "size": "133GB", + "digest": "459de16b5a9e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-v2:16b-lite-chat-fp16", + "name": "deepseek-v2:16b-lite-chat-fp16", + "description": "A strong, economical, and efficient Mixture-of-Experts language model.", + "size": "31GB", + "digest": "15c96490eeee", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-v2:16b-lite-chat-q2_K", + "name": "deepseek-v2:16b-lite-chat-q2_K", + "description": "A strong, economical, and efficient Mixture-of-Experts language model.", + "size": "6.4GB", + "digest": "5868c72b4e1f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-v2:16b-lite-chat-q3_K_L", + "name": "deepseek-v2:16b-lite-chat-q3_K_L", + "description": "A strong, economical, and efficient Mixture-of-Experts language model.", + "size": "8.5GB", + "digest": "c8183500d92e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-v2:16b-lite-chat-q3_K_M", + "name": "deepseek-v2:16b-lite-chat-q3_K_M", + "description": "A strong, economical, and efficient Mixture-of-Experts language model.", + "size": "8.1GB", + "digest": "f6da52f6d22c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-v2:16b-lite-chat-q3_K_S", + "name": "deepseek-v2:16b-lite-chat-q3_K_S", + "description": "A strong, economical, and efficient Mixture-of-Experts language model.", + "size": "7.5GB", + "digest": "d36b0e4f46c1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-v2:16b-lite-chat-q4_0", + "name": "deepseek-v2:16b-lite-chat-q4_0", + "description": "A strong, economical, and efficient Mixture-of-Experts language model.", + "size": "8.9GB", + "digest": "7c8c332f2df7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-v2:16b-lite-chat-q4_1", + "name": "deepseek-v2:16b-lite-chat-q4_1", + "description": "A strong, economical, and efficient Mixture-of-Experts language model.", + "size": "9.9GB", + "digest": "af64dfc98c26", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-v2:16b-lite-chat-q4_K_M", + "name": "deepseek-v2:16b-lite-chat-q4_K_M", + "description": "A strong, economical, and efficient Mixture-of-Experts language model.", + "size": "10GB", + "digest": "52fe6d77050a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-v2:16b-lite-chat-q4_K_S", + "name": "deepseek-v2:16b-lite-chat-q4_K_S", + "description": "A strong, economical, and efficient Mixture-of-Experts language model.", + "size": "9.5GB", + "digest": "f605f2eeaf9e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-v2:16b-lite-chat-q5_0", + "name": "deepseek-v2:16b-lite-chat-q5_0", + "description": "A strong, economical, and efficient Mixture-of-Experts language model.", + "size": "11GB", + "digest": "b01c353f491f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-v2:16b-lite-chat-q5_1", + "name": "deepseek-v2:16b-lite-chat-q5_1", + "description": "A strong, economical, and efficient Mixture-of-Experts language model.", + "size": "12GB", + "digest": "9cd31f73558a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-v2:16b-lite-chat-q5_K_M", + "name": "deepseek-v2:16b-lite-chat-q5_K_M", + "description": "A strong, economical, and efficient Mixture-of-Experts language model.", + "size": "12GB", + "digest": "597226602255", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-v2:16b-lite-chat-q5_K_S", + "name": "deepseek-v2:16b-lite-chat-q5_K_S", + "description": "A strong, economical, and efficient Mixture-of-Experts language model.", + "size": "11GB", + "digest": "d904df1d3b59", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-v2:16b-lite-chat-q6_K", + "name": "deepseek-v2:16b-lite-chat-q6_K", + "description": "A strong, economical, and efficient Mixture-of-Experts language model.", + "size": "14GB", + "digest": "94a6c57d6c9d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-v2:16b-lite-chat-q8_0", + "name": "deepseek-v2:16b-lite-chat-q8_0", + "description": "A strong, economical, and efficient Mixture-of-Experts language model.", + "size": "17GB", + "digest": "1d62ef756269", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-v2:236b-chat-fp16", + "name": "deepseek-v2:236b-chat-fp16", + "description": "A strong, economical, and efficient Mixture-of-Experts language model.", + "size": "472GB", + "digest": "190dd01cb12e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-v2:236b-chat-q2_K", + "name": "deepseek-v2:236b-chat-q2_K", + "description": "A strong, economical, and efficient Mixture-of-Experts language model.", + "size": "86GB", + "digest": "ab49a8da3233", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-v2:236b-chat-q3_K_L", + "name": "deepseek-v2:236b-chat-q3_K_L", + "description": "A strong, economical, and efficient Mixture-of-Experts language model.", + "size": "122GB", + "digest": "8b50480a0f69", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-v2:236b-chat-q3_K_M", + "name": "deepseek-v2:236b-chat-q3_K_M", + "description": "A strong, economical, and efficient Mixture-of-Experts language model.", + "size": "113GB", + "digest": "ed3e5b18dfdf", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-v2:236b-chat-q3_K_S", + "name": "deepseek-v2:236b-chat-q3_K_S", + "description": "A strong, economical, and efficient Mixture-of-Experts language model.", + "size": "102GB", + "digest": "0f85c13f95a5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-v2:236b-chat-q4_0", + "name": "deepseek-v2:236b-chat-q4_0", + "description": "A strong, economical, and efficient Mixture-of-Experts language model.", + "size": "133GB", + "digest": "459de16b5a9e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-v2:236b-chat-q4_1", + "name": "deepseek-v2:236b-chat-q4_1", + "description": "A strong, economical, and efficient Mixture-of-Experts language model.", + "size": "148GB", + "digest": "8ba51e080b59", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-v2:236b-chat-q4_K_M", + "name": "deepseek-v2:236b-chat-q4_K_M", + "description": "A strong, economical, and efficient Mixture-of-Experts language model.", + "size": "142GB", + "digest": "dc16a9f67701", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-v2:236b-chat-q4_K_S", + "name": "deepseek-v2:236b-chat-q4_K_S", + "description": "A strong, economical, and efficient Mixture-of-Experts language model.", + "size": "134GB", + "digest": "89b6c7579a77", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-v2:236b-chat-q5_0", + "name": "deepseek-v2:236b-chat-q5_0", + "description": "A strong, economical, and efficient Mixture-of-Experts language model.", + "size": "162GB", + "digest": "d0c79ad6c4d8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-v2:236b-chat-q5_1", + "name": "deepseek-v2:236b-chat-q5_1", + "description": "A strong, economical, and efficient Mixture-of-Experts language model.", + "size": "177GB", + "digest": "bd9e0b0c8aa1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-v2:236b-chat-q5_K_M", + "name": "deepseek-v2:236b-chat-q5_K_M", + "description": "A strong, economical, and efficient Mixture-of-Experts language model.", + "size": "167GB", + "digest": "baeb44164dcf", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-v2:236b-chat-q5_K_S", + "name": "deepseek-v2:236b-chat-q5_K_S", + "description": "A strong, economical, and efficient Mixture-of-Experts language model.", + "size": "162GB", + "digest": "26f0f5933712", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-v2:236b-chat-q6_K", + "name": "deepseek-v2:236b-chat-q6_K", + "description": "A strong, economical, and efficient Mixture-of-Experts language model.", + "size": "194GB", + "digest": "40e1adc07959", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-v2:236b-chat-q8_0", + "name": "deepseek-v2:236b-chat-q8_0", + "description": "A strong, economical, and efficient Mixture-of-Experts language model.", + "size": "251GB", + "digest": "e0ae3350cb1a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-v2:lite", + "name": "deepseek-v2:lite", + "description": "A strong, economical, and efficient Mixture-of-Experts language model.", + "size": "8.9GB", + "digest": "7c8c332f2df7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin3", + "name": "dolphin3", + "description": "Dolphin 3.0 Llama 3.1 8B 🐬 is the next generation of the Dolphin series of instruct-tuned models designed to be the ultimate general purpose local model, enabling coding, math, agentic, function calling, and general use cases.", + "size": "4.9GB", + "digest": "d5ab9ae8e1f2", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "dolphin3:8b", + "name": "dolphin3:8b", + "description": "Dolphin 3.0 Llama 3.1 8B 🐬 is the next generation of the Dolphin series of instruct-tuned models designed to be the ultimate general purpose local model, enabling coding, math, agentic, function calling, and general use cases.", + "size": "4.9GB", + "digest": "d5ab9ae8e1f2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin3:8b-llama3.1-fp16", + "name": "dolphin3:8b-llama3.1-fp16", + "description": "Dolphin 3.0 Llama 3.1 8B 🐬 is the next generation of the Dolphin series of instruct-tuned models designed to be the ultimate general purpose local model, enabling coding, math, agentic, function calling, and general use cases.", + "size": "16GB", + "digest": "b0941c6f3226", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin3:8b-llama3.1-q4_K_M", + "name": "dolphin3:8b-llama3.1-q4_K_M", + "description": "Dolphin 3.0 Llama 3.1 8B 🐬 is the next generation of the Dolphin series of instruct-tuned models designed to be the ultimate general purpose local model, enabling coding, math, agentic, function calling, and general use cases.", + "size": "4.9GB", + "digest": "d5ab9ae8e1f2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin3:8b-llama3.1-q8_0", + "name": "dolphin3:8b-llama3.1-q8_0", + "description": "Dolphin 3.0 Llama 3.1 8B 🐬 is the next generation of the Dolphin series of instruct-tuned models designed to be the ultimate general purpose local model, enabling coding, math, agentic, function calling, and general use cases.", + "size": "8.5GB", + "digest": "e3310b61ffdb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "bakllava", + "name": "bakllava", + "description": "BakLLaVA is a multimodal model consisting of the Mistral 7B base model augmented with the LLaVA architecture.", + "size": "4.7GB", + "digest": "3dd68bd4447c", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "bakllava:7b", + "name": "bakllava:7b", + "description": "BakLLaVA is a multimodal model consisting of the Mistral 7B base model augmented with the LLaVA architecture.", + "size": "4.7GB", + "digest": "3dd68bd4447c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "bakllava:7b-v1-fp16", + "name": "bakllava:7b-v1-fp16", + "description": "BakLLaVA is a multimodal model consisting of the Mistral 7B base model augmented with the LLaVA architecture.", + "size": "15GB", + "digest": "ad44fb2047c1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "bakllava:7b-v1-q2_K", + "name": "bakllava:7b-v1-q2_K", + "description": "BakLLaVA is a multimodal model consisting of the Mistral 7B base model augmented with the LLaVA architecture.", + "size": "3.7GB", + "digest": "2b262088f95e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "bakllava:7b-v1-q3_K_L", + "name": "bakllava:7b-v1-q3_K_L", + "description": "BakLLaVA is a multimodal model consisting of the Mistral 7B base model augmented with the LLaVA architecture.", + "size": "4.4GB", + "digest": "1c83e7ae2916", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "bakllava:7b-v1-q3_K_M", + "name": "bakllava:7b-v1-q3_K_M", + "description": "BakLLaVA is a multimodal model consisting of the Mistral 7B base model augmented with the LLaVA architecture.", + "size": "4.1GB", + "digest": "76ddbf1eee47", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "bakllava:7b-v1-q3_K_S", + "name": "bakllava:7b-v1-q3_K_S", + "description": "BakLLaVA is a multimodal model consisting of the Mistral 7B base model augmented with the LLaVA architecture.", + "size": "3.8GB", + "digest": "58c3c55e353b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "bakllava:7b-v1-q4_0", + "name": "bakllava:7b-v1-q4_0", + "description": "BakLLaVA is a multimodal model consisting of the Mistral 7B base model augmented with the LLaVA architecture.", + "size": "4.7GB", + "digest": "3dd68bd4447c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "bakllava:7b-v1-q4_1", + "name": "bakllava:7b-v1-q4_1", + "description": "BakLLaVA is a multimodal model consisting of the Mistral 7B base model augmented with the LLaVA architecture.", + "size": "5.2GB", + "digest": "5661864b39bf", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "bakllava:7b-v1-q4_K_M", + "name": "bakllava:7b-v1-q4_K_M", + "description": "BakLLaVA is a multimodal model consisting of the Mistral 7B base model augmented with the LLaVA architecture.", + "size": "5.0GB", + "digest": "18f34660c11c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "bakllava:7b-v1-q4_K_S", + "name": "bakllava:7b-v1-q4_K_S", + "description": "BakLLaVA is a multimodal model consisting of the Mistral 7B base model augmented with the LLaVA architecture.", + "size": "4.8GB", + "digest": "7bde2065bef9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "bakllava:7b-v1-q5_0", + "name": "bakllava:7b-v1-q5_0", + "description": "BakLLaVA is a multimodal model consisting of the Mistral 7B base model augmented with the LLaVA architecture.", + "size": "5.6GB", + "digest": "e1ec8078f994", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "bakllava:7b-v1-q5_1", + "name": "bakllava:7b-v1-q5_1", + "description": "BakLLaVA is a multimodal model consisting of the Mistral 7B base model augmented with the LLaVA architecture.", + "size": "6.1GB", + "digest": "2ecc0da390e6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "bakllava:7b-v1-q5_K_M", + "name": "bakllava:7b-v1-q5_K_M", + "description": "BakLLaVA is a multimodal model consisting of the Mistral 7B base model augmented with the LLaVA architecture.", + "size": "5.8GB", + "digest": "701ad599d4e8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "bakllava:7b-v1-q5_K_S", + "name": "bakllava:7b-v1-q5_K_S", + "description": "BakLLaVA is a multimodal model consisting of the Mistral 7B base model augmented with the LLaVA architecture.", + "size": "5.6GB", + "digest": "b3495a4598af", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "bakllava:7b-v1-q6_K", + "name": "bakllava:7b-v1-q6_K", + "description": "BakLLaVA is a multimodal model consisting of the Mistral 7B base model augmented with the LLaVA architecture.", + "size": "6.6GB", + "digest": "c338a33fa0f7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "bakllava:7b-v1-q8_0", + "name": "bakllava:7b-v1-q8_0", + "description": "BakLLaVA is a multimodal model consisting of the Mistral 7B base model augmented with the LLaVA architecture.", + "size": "8.3GB", + "digest": "52bc26311d1a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2", + "name": "stablelm2", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "983MB", + "digest": "714a6116cffa", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "stablelm2:1.6b", + "name": "stablelm2:1.6b", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "983MB", + "digest": "714a6116cffa", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:12b", + "name": "stablelm2:12b", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "7.0GB", + "digest": "34b434945650", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:1.6b-chat", + "name": "stablelm2:1.6b-chat", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "983MB", + "digest": "714a6116cffa", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:1.6b-chat-fp16", + "name": "stablelm2:1.6b-chat-fp16", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "3.3GB", + "digest": "341cf2da5cb2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:1.6b-chat-q2_K", + "name": "stablelm2:1.6b-chat-q2_K", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "694MB", + "digest": "78f4c3eff377", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:1.6b-chat-q3_K_L", + "name": "stablelm2:1.6b-chat-q3_K_L", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "915MB", + "digest": "620c26dd9a2b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:1.6b-chat-q3_K_M", + "name": "stablelm2:1.6b-chat-q3_K_M", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "858MB", + "digest": "e1f3e5051e53", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:1.6b-chat-q3_K_S", + "name": "stablelm2:1.6b-chat-q3_K_S", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "792MB", + "digest": "cfcbd43623df", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:1.6b-chat-q4_0", + "name": "stablelm2:1.6b-chat-q4_0", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "983MB", + "digest": "714a6116cffa", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:1.6b-chat-q4_1", + "name": "stablelm2:1.6b-chat-q4_1", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "1.1GB", + "digest": "7e806e51ba84", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:1.6b-chat-q4_K_M", + "name": "stablelm2:1.6b-chat-q4_K_M", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "1.0GB", + "digest": "76c778222622", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:1.6b-chat-q4_K_S", + "name": "stablelm2:1.6b-chat-q4_K_S", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "989MB", + "digest": "c9f7fd5b8270", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:1.6b-chat-q5_0", + "name": "stablelm2:1.6b-chat-q5_0", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "1.2GB", + "digest": "abb100f0b7c9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:1.6b-chat-q5_1", + "name": "stablelm2:1.6b-chat-q5_1", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "1.3GB", + "digest": "42dd11c7cb70", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:1.6b-chat-q5_K_M", + "name": "stablelm2:1.6b-chat-q5_K_M", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "1.2GB", + "digest": "0ffa9bed24a8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:1.6b-chat-q5_K_S", + "name": "stablelm2:1.6b-chat-q5_K_S", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "1.2GB", + "digest": "d2b7e535bad6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:1.6b-chat-q6_K", + "name": "stablelm2:1.6b-chat-q6_K", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "1.4GB", + "digest": "18d985708c14", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:1.6b-chat-q8_0", + "name": "stablelm2:1.6b-chat-q8_0", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "1.8GB", + "digest": "6cb988cfb148", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:1.6b-fp16", + "name": "stablelm2:1.6b-fp16", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "3.3GB", + "digest": "59751c842430", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:1.6b-q2_K", + "name": "stablelm2:1.6b-q2_K", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "694MB", + "digest": "3b575a87a913", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:1.6b-q3_K_L", + "name": "stablelm2:1.6b-q3_K_L", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "915MB", + "digest": "e10024b219b0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:1.6b-q3_K_M", + "name": "stablelm2:1.6b-q3_K_M", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "858MB", + "digest": "7db1f01eeb28", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:1.6b-q3_K_S", + "name": "stablelm2:1.6b-q3_K_S", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "792MB", + "digest": "067975f6b1c7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:1.6b-q4_0", + "name": "stablelm2:1.6b-q4_0", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "983MB", + "digest": "be79737556df", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:1.6b-q4_1", + "name": "stablelm2:1.6b-q4_1", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "1.1GB", + "digest": "1c1ef2dae7d9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:1.6b-q4_K_M", + "name": "stablelm2:1.6b-q4_K_M", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "1.0GB", + "digest": "3eb0d616668e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:1.6b-q4_K_S", + "name": "stablelm2:1.6b-q4_K_S", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "989MB", + "digest": "a9e787fc2a0c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:1.6b-q5_0", + "name": "stablelm2:1.6b-q5_0", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "1.2GB", + "digest": "31085b8af897", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:1.6b-q5_1", + "name": "stablelm2:1.6b-q5_1", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "1.3GB", + "digest": "dd3bae8dbffd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:1.6b-q5_K_M", + "name": "stablelm2:1.6b-q5_K_M", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "1.2GB", + "digest": "f354c769a33a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:1.6b-q5_K_S", + "name": "stablelm2:1.6b-q5_K_S", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "1.2GB", + "digest": "de87d68a582a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:1.6b-q6_K", + "name": "stablelm2:1.6b-q6_K", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "1.4GB", + "digest": "376ed8ad2809", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:1.6b-q8_0", + "name": "stablelm2:1.6b-q8_0", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "1.8GB", + "digest": "bdc6441fbef4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:1.6b-zephyr", + "name": "stablelm2:1.6b-zephyr", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "983MB", + "digest": "1b81980a10e6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:1.6b-zephyr-fp16", + "name": "stablelm2:1.6b-zephyr-fp16", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "3.3GB", + "digest": "9c7225243279", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:1.6b-zephyr-q2_K", + "name": "stablelm2:1.6b-zephyr-q2_K", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "694MB", + "digest": "c408bb796cad", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:1.6b-zephyr-q3_K_L", + "name": "stablelm2:1.6b-zephyr-q3_K_L", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "915MB", + "digest": "5b4670930e20", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:1.6b-zephyr-q3_K_M", + "name": "stablelm2:1.6b-zephyr-q3_K_M", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "858MB", + "digest": "16082bda3ea8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:1.6b-zephyr-q3_K_S", + "name": "stablelm2:1.6b-zephyr-q3_K_S", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "792MB", + "digest": "e023697f1087", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:1.6b-zephyr-q4_0", + "name": "stablelm2:1.6b-zephyr-q4_0", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "983MB", + "digest": "1b81980a10e6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:1.6b-zephyr-q4_1", + "name": "stablelm2:1.6b-zephyr-q4_1", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "1.1GB", + "digest": "32c909836b8a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:1.6b-zephyr-q4_K_M", + "name": "stablelm2:1.6b-zephyr-q4_K_M", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "1.0GB", + "digest": "2f41c2ec1f16", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:1.6b-zephyr-q4_K_S", + "name": "stablelm2:1.6b-zephyr-q4_K_S", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "989MB", + "digest": "219c1d8bc5d0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:1.6b-zephyr-q5_0", + "name": "stablelm2:1.6b-zephyr-q5_0", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "1.2GB", + "digest": "37e439f3c088", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:1.6b-zephyr-q5_1", + "name": "stablelm2:1.6b-zephyr-q5_1", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "1.3GB", + "digest": "9216ba881c23", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:1.6b-zephyr-q5_K_M", + "name": "stablelm2:1.6b-zephyr-q5_K_M", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "1.2GB", + "digest": "2efb2e4e851d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:1.6b-zephyr-q5_K_S", + "name": "stablelm2:1.6b-zephyr-q5_K_S", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "1.2GB", + "digest": "ee2741791209", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:1.6b-zephyr-q6_K", + "name": "stablelm2:1.6b-zephyr-q6_K", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "1.4GB", + "digest": "dddb30e81cbd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:1.6b-zephyr-q8_0", + "name": "stablelm2:1.6b-zephyr-q8_0", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "1.8GB", + "digest": "9e11af0951d9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:12b-chat", + "name": "stablelm2:12b-chat", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "7.0GB", + "digest": "34b434945650", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:12b-chat-fp16", + "name": "stablelm2:12b-chat-fp16", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "24GB", + "digest": "13c47b3dfcbf", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:12b-chat-q2_K", + "name": "stablelm2:12b-chat-q2_K", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "4.7GB", + "digest": "60633e1e7e90", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:12b-chat-q3_K_L", + "name": "stablelm2:12b-chat-q3_K_L", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "6.5GB", + "digest": "5ccd09a01b76", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:12b-chat-q3_K_M", + "name": "stablelm2:12b-chat-q3_K_M", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "6.0GB", + "digest": "b7643e4111bf", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:12b-chat-q3_K_S", + "name": "stablelm2:12b-chat-q3_K_S", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "5.4GB", + "digest": "7047024d0f2e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:12b-chat-q4_0", + "name": "stablelm2:12b-chat-q4_0", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "7.0GB", + "digest": "34b434945650", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:12b-chat-q4_1", + "name": "stablelm2:12b-chat-q4_1", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "7.7GB", + "digest": "4fbe1f29b652", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:12b-chat-q4_K_M", + "name": "stablelm2:12b-chat-q4_K_M", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "7.4GB", + "digest": "5af5562f9d85", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:12b-chat-q4_K_S", + "name": "stablelm2:12b-chat-q4_K_S", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "7.0GB", + "digest": "83a2e3ff8abc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:12b-chat-q5_0", + "name": "stablelm2:12b-chat-q5_0", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "8.4GB", + "digest": "e5b04f432c7b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:12b-chat-q5_1", + "name": "stablelm2:12b-chat-q5_1", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "9.1GB", + "digest": "3645c5d94e18", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:12b-chat-q5_K_M", + "name": "stablelm2:12b-chat-q5_K_M", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "8.6GB", + "digest": "f44dc73dc6cd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:12b-chat-q5_K_S", + "name": "stablelm2:12b-chat-q5_K_S", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "8.4GB", + "digest": "446fbe890c8a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:12b-chat-q6_K", + "name": "stablelm2:12b-chat-q6_K", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "10.0GB", + "digest": "1d69a3e529a8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:12b-chat-q8_0", + "name": "stablelm2:12b-chat-q8_0", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "13GB", + "digest": "df16528fc283", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:12b-fp16", + "name": "stablelm2:12b-fp16", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "24GB", + "digest": "e24492cdd1f0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:12b-q2_K", + "name": "stablelm2:12b-q2_K", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "4.7GB", + "digest": "584ca182742f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:12b-q3_K_L", + "name": "stablelm2:12b-q3_K_L", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "6.5GB", + "digest": "700e8e1bc5df", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:12b-q3_K_M", + "name": "stablelm2:12b-q3_K_M", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "6.0GB", + "digest": "2f18605e62c1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:12b-q3_K_S", + "name": "stablelm2:12b-q3_K_S", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "5.4GB", + "digest": "793a219d183c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:12b-q4_0", + "name": "stablelm2:12b-q4_0", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "7.0GB", + "digest": "345b0d1ba424", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:12b-q4_1", + "name": "stablelm2:12b-q4_1", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "7.7GB", + "digest": "1c1fb0772461", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:12b-q4_K_M", + "name": "stablelm2:12b-q4_K_M", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "7.4GB", + "digest": "caa45d546ea8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:12b-q4_K_S", + "name": "stablelm2:12b-q4_K_S", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "7.0GB", + "digest": "ced8fb3048d7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:12b-q5_0", + "name": "stablelm2:12b-q5_0", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "8.4GB", + "digest": "c7af93fd855e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:12b-q5_1", + "name": "stablelm2:12b-q5_1", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "9.1GB", + "digest": "2b56d93c664f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:12b-q5_K_M", + "name": "stablelm2:12b-q5_K_M", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "8.6GB", + "digest": "f64999ce1c7d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:12b-q5_K_S", + "name": "stablelm2:12b-q5_K_S", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "8.4GB", + "digest": "4b2f83850196", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:12b-q6_K", + "name": "stablelm2:12b-q6_K", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "10.0GB", + "digest": "b289916cd903", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:12b-q8_0", + "name": "stablelm2:12b-q8_0", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "13GB", + "digest": "0d36ff686778", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:12b-text", + "name": "stablelm2:12b-text", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "7.0GB", + "digest": "345b0d1ba424", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:chat", + "name": "stablelm2:chat", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "983MB", + "digest": "714a6116cffa", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm2:zephyr", + "name": "stablelm2:zephyr", + "description": "Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained on multilingual data in English, Spanish, German, Italian, French, Portuguese, and Dutch.", + "size": "983MB", + "digest": "1b81980a10e6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "moondream", + "name": "moondream", + "description": "moondream2 is a small vision language model designed to run efficiently on edge devices.", + "size": "1.7GB", + "digest": "55fc3abd3867", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "moondream:1.8b", + "name": "moondream:1.8b", + "description": "moondream2 is a small vision language model designed to run efficiently on edge devices.", + "size": "1.7GB", + "digest": "55fc3abd3867", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "moondream:1.8b-v2-fp16", + "name": "moondream:1.8b-v2-fp16", + "description": "moondream2 is a small vision language model designed to run efficiently on edge devices.", + "size": "3.7GB", + "digest": "8921b6c3990a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "moondream:1.8b-v2-q2_K", + "name": "moondream:1.8b-v2-q2_K", + "description": "moondream2 is a small vision language model designed to run efficiently on edge devices.", + "size": "1.5GB", + "digest": "60a4fe10cc8b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "moondream:1.8b-v2-q3_K_L", + "name": "moondream:1.8b-v2-q3_K_L", + "description": "moondream2 is a small vision language model designed to run efficiently on edge devices.", + "size": "1.7GB", + "digest": "119dd8c33e4e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "moondream:1.8b-v2-q3_K_M", + "name": "moondream:1.8b-v2-q3_K_M", + "description": "moondream2 is a small vision language model designed to run efficiently on edge devices.", + "size": "1.7GB", + "digest": "b7ca95d4df05", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "moondream:1.8b-v2-q3_K_S", + "name": "moondream:1.8b-v2-q3_K_S", + "description": "moondream2 is a small vision language model designed to run efficiently on edge devices.", + "size": "1.6GB", + "digest": "c1f516864beb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "moondream:1.8b-v2-q4_0", + "name": "moondream:1.8b-v2-q4_0", + "description": "moondream2 is a small vision language model designed to run efficiently on edge devices.", + "size": "1.7GB", + "digest": "55fc3abd3867", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "moondream:1.8b-v2-q4_1", + "name": "moondream:1.8b-v2-q4_1", + "description": "moondream2 is a small vision language model designed to run efficiently on edge devices.", + "size": "1.8GB", + "digest": "d3555a3ddc4b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "moondream:1.8b-v2-q4_K_M", + "name": "moondream:1.8b-v2-q4_K_M", + "description": "moondream2 is a small vision language model designed to run efficiently on edge devices.", + "size": "1.8GB", + "digest": "c865c80afc38", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "moondream:1.8b-v2-q4_K_S", + "name": "moondream:1.8b-v2-q4_K_S", + "description": "moondream2 is a small vision language model designed to run efficiently on edge devices.", + "size": "1.7GB", + "digest": "6858752db2f4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "moondream:1.8b-v2-q5_0", + "name": "moondream:1.8b-v2-q5_0", + "description": "moondream2 is a small vision language model designed to run efficiently on edge devices.", + "size": "1.9GB", + "digest": "1d82a6c34daa", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "moondream:1.8b-v2-q5_1", + "name": "moondream:1.8b-v2-q5_1", + "description": "moondream2 is a small vision language model designed to run efficiently on edge devices.", + "size": "2.0GB", + "digest": "0bc271bb633d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "moondream:1.8b-v2-q5_K_M", + "name": "moondream:1.8b-v2-q5_K_M", + "description": "moondream2 is a small vision language model designed to run efficiently on edge devices.", + "size": "2.0GB", + "digest": "521316e36d6e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "moondream:1.8b-v2-q5_K_S", + "name": "moondream:1.8b-v2-q5_K_S", + "description": "moondream2 is a small vision language model designed to run efficiently on edge devices.", + "size": "1.9GB", + "digest": "85200c02ea40", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "moondream:1.8b-v2-q6_K", + "name": "moondream:1.8b-v2-q6_K", + "description": "moondream2 is a small vision language model designed to run efficiently on edge devices.", + "size": "2.1GB", + "digest": "5ff1472b766d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "moondream:1.8b-v2-q8_0", + "name": "moondream:1.8b-v2-q8_0", + "description": "moondream2 is a small vision language model designed to run efficiently on edge devices.", + "size": "2.4GB", + "digest": "0e65c7807dc3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "moondream:v2", + "name": "moondream:v2", + "description": "moondream2 is a small vision language model designed to run efficiently on edge devices.", + "size": "1.7GB", + "digest": "55fc3abd3867", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "reflection", + "name": "reflection", + "description": "A high-performing model trained with a new technique called Reflection-tuning that teaches a LLM to detect mistakes in its reasoning and correct course.", + "size": "40GB", + "digest": "5084e77c1e10", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "reflection:70b", + "name": "reflection:70b", + "description": "A high-performing model trained with a new technique called Reflection-tuning that teaches a LLM to detect mistakes in its reasoning and correct course.", + "size": "40GB", + "digest": "5084e77c1e10", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "reflection:70b-fp16", + "name": "reflection:70b-fp16", + "description": "A high-performing model trained with a new technique called Reflection-tuning that teaches a LLM to detect mistakes in its reasoning and correct course.", + "size": "141GB", + "digest": "e04ae4d96458", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "reflection:70b-q2_K", + "name": "reflection:70b-q2_K", + "description": "A high-performing model trained with a new technique called Reflection-tuning that teaches a LLM to detect mistakes in its reasoning and correct course.", + "size": "26GB", + "digest": "8fe3c853372c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "reflection:70b-q3_K_L", + "name": "reflection:70b-q3_K_L", + "description": "A high-performing model trained with a new technique called Reflection-tuning that teaches a LLM to detect mistakes in its reasoning and correct course.", + "size": "37GB", + "digest": "9c6705916e06", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "reflection:70b-q3_K_M", + "name": "reflection:70b-q3_K_M", + "description": "A high-performing model trained with a new technique called Reflection-tuning that teaches a LLM to detect mistakes in its reasoning and correct course.", + "size": "34GB", + "digest": "a6b22bd90923", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "reflection:70b-q3_K_S", + "name": "reflection:70b-q3_K_S", + "description": "A high-performing model trained with a new technique called Reflection-tuning that teaches a LLM to detect mistakes in its reasoning and correct course.", + "size": "31GB", + "digest": "21f651100031", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "reflection:70b-q4_0", + "name": "reflection:70b-q4_0", + "description": "A high-performing model trained with a new technique called Reflection-tuning that teaches a LLM to detect mistakes in its reasoning and correct course.", + "size": "40GB", + "digest": "5084e77c1e10", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "reflection:70b-q4_1", + "name": "reflection:70b-q4_1", + "description": "A high-performing model trained with a new technique called Reflection-tuning that teaches a LLM to detect mistakes in its reasoning and correct course.", + "size": "44GB", + "digest": "b72afde19a06", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "reflection:70b-q4_K_M", + "name": "reflection:70b-q4_K_M", + "description": "A high-performing model trained with a new technique called Reflection-tuning that teaches a LLM to detect mistakes in its reasoning and correct course.", + "size": "43GB", + "digest": "be39ad6154f4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "reflection:70b-q4_K_S", + "name": "reflection:70b-q4_K_S", + "description": "A high-performing model trained with a new technique called Reflection-tuning that teaches a LLM to detect mistakes in its reasoning and correct course.", + "size": "40GB", + "digest": "420791ca0c2a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "reflection:70b-q5_0", + "name": "reflection:70b-q5_0", + "description": "A high-performing model trained with a new technique called Reflection-tuning that teaches a LLM to detect mistakes in its reasoning and correct course.", + "size": "49GB", + "digest": "99e430b53c8b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "reflection:70b-q5_1", + "name": "reflection:70b-q5_1", + "description": "A high-performing model trained with a new technique called Reflection-tuning that teaches a LLM to detect mistakes in its reasoning and correct course.", + "size": "53GB", + "digest": "41bd1db0b708", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "reflection:70b-q5_K_M", + "name": "reflection:70b-q5_K_M", + "description": "A high-performing model trained with a new technique called Reflection-tuning that teaches a LLM to detect mistakes in its reasoning and correct course.", + "size": "50GB", + "digest": "f537d644476a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "reflection:70b-q5_K_S", + "name": "reflection:70b-q5_K_S", + "description": "A high-performing model trained with a new technique called Reflection-tuning that teaches a LLM to detect mistakes in its reasoning and correct course.", + "size": "49GB", + "digest": "84a4d89b332c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "reflection:70b-q6_K", + "name": "reflection:70b-q6_K", + "description": "A high-performing model trained with a new technique called Reflection-tuning that teaches a LLM to detect mistakes in its reasoning and correct course.", + "size": "58GB", + "digest": "77fecce26024", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "reflection:70b-q8_0", + "name": "reflection:70b-q8_0", + "description": "A high-performing model trained with a new technique called Reflection-tuning that teaches a LLM to detect mistakes in its reasoning and correct course.", + "size": "75GB", + "digest": "159e9e593c44", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "neural-chat", + "name": "neural-chat", + "description": "A fine-tuned model based on Mistral with good coverage of domain and language.", + "size": "4.1GB", + "digest": "89fa737d3b85", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "neural-chat:7b", + "name": "neural-chat:7b", + "description": "A fine-tuned model based on Mistral with good coverage of domain and language.", + "size": "4.1GB", + "digest": "89fa737d3b85", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "neural-chat:7b-v3.1", + "name": "neural-chat:7b-v3.1", + "description": "A fine-tuned model based on Mistral with good coverage of domain and language.", + "size": "4.1GB", + "digest": "73940af9fe02", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "neural-chat:7b-v3.1-fp16", + "name": "neural-chat:7b-v3.1-fp16", + "description": "A fine-tuned model based on Mistral with good coverage of domain and language.", + "size": "14GB", + "digest": "1b3251040972", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "neural-chat:7b-v3.1-q2_K", + "name": "neural-chat:7b-v3.1-q2_K", + "description": "A fine-tuned model based on Mistral with good coverage of domain and language.", + "size": "3.1GB", + "digest": "620f8a81424b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "neural-chat:7b-v3.1-q3_K_L", + "name": "neural-chat:7b-v3.1-q3_K_L", + "description": "A fine-tuned model based on Mistral with good coverage of domain and language.", + "size": "3.8GB", + "digest": "acf7b66e2aee", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "neural-chat:7b-v3.1-q3_K_M", + "name": "neural-chat:7b-v3.1-q3_K_M", + "description": "A fine-tuned model based on Mistral with good coverage of domain and language.", + "size": "3.5GB", + "digest": "cf3dc2d014a5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "neural-chat:7b-v3.1-q3_K_S", + "name": "neural-chat:7b-v3.1-q3_K_S", + "description": "A fine-tuned model based on Mistral with good coverage of domain and language.", + "size": "3.2GB", + "digest": "7825c6bd7656", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "neural-chat:7b-v3.1-q4_0", + "name": "neural-chat:7b-v3.1-q4_0", + "description": "A fine-tuned model based on Mistral with good coverage of domain and language.", + "size": "4.1GB", + "digest": "73940af9fe02", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "neural-chat:7b-v3.1-q4_1", + "name": "neural-chat:7b-v3.1-q4_1", + "description": "A fine-tuned model based on Mistral with good coverage of domain and language.", + "size": "4.6GB", + "digest": "e94062f979ad", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "neural-chat:7b-v3.1-q4_K_M", + "name": "neural-chat:7b-v3.1-q4_K_M", + "description": "A fine-tuned model based on Mistral with good coverage of domain and language.", + "size": "4.4GB", + "digest": "d2fbc68137fc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "neural-chat:7b-v3.1-q4_K_S", + "name": "neural-chat:7b-v3.1-q4_K_S", + "description": "A fine-tuned model based on Mistral with good coverage of domain and language.", + "size": "4.1GB", + "digest": "7d8b92a60fab", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "neural-chat:7b-v3.1-q5_0", + "name": "neural-chat:7b-v3.1-q5_0", + "description": "A fine-tuned model based on Mistral with good coverage of domain and language.", + "size": "5.0GB", + "digest": "b31c14a4bfcf", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "neural-chat:7b-v3.1-q5_1", + "name": "neural-chat:7b-v3.1-q5_1", + "description": "A fine-tuned model based on Mistral with good coverage of domain and language.", + "size": "5.4GB", + "digest": "874ed3640927", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "neural-chat:7b-v3.1-q5_K_M", + "name": "neural-chat:7b-v3.1-q5_K_M", + "description": "A fine-tuned model based on Mistral with good coverage of domain and language.", + "size": "5.1GB", + "digest": "f36c54b7e769", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "neural-chat:7b-v3.1-q5_K_S", + "name": "neural-chat:7b-v3.1-q5_K_S", + "description": "A fine-tuned model based on Mistral with good coverage of domain and language.", + "size": "5.0GB", + "digest": "d2c083566569", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "neural-chat:7b-v3.1-q6_K", + "name": "neural-chat:7b-v3.1-q6_K", + "description": "A fine-tuned model based on Mistral with good coverage of domain and language.", + "size": "5.9GB", + "digest": "824a1e326c89", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "neural-chat:7b-v3.1-q8_0", + "name": "neural-chat:7b-v3.1-q8_0", + "description": "A fine-tuned model based on Mistral with good coverage of domain and language.", + "size": "7.7GB", + "digest": "2965939336f6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "neural-chat:7b-v3.2", + "name": "neural-chat:7b-v3.2", + "description": "A fine-tuned model based on Mistral with good coverage of domain and language.", + "size": "4.1GB", + "digest": "f4c6a8e532e8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "neural-chat:7b-v3.2-fp16", + "name": "neural-chat:7b-v3.2-fp16", + "description": "A fine-tuned model based on Mistral with good coverage of domain and language.", + "size": "14GB", + "digest": "f5256ca4757e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "neural-chat:7b-v3.2-q2_K", + "name": "neural-chat:7b-v3.2-q2_K", + "description": "A fine-tuned model based on Mistral with good coverage of domain and language.", + "size": "3.1GB", + "digest": "103bcb6b16f2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "neural-chat:7b-v3.2-q3_K_L", + "name": "neural-chat:7b-v3.2-q3_K_L", + "description": "A fine-tuned model based on Mistral with good coverage of domain and language.", + "size": "3.8GB", + "digest": "66750b08787d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "neural-chat:7b-v3.2-q3_K_M", + "name": "neural-chat:7b-v3.2-q3_K_M", + "description": "A fine-tuned model based on Mistral with good coverage of domain and language.", + "size": "3.5GB", + "digest": "f719737f98a2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "neural-chat:7b-v3.2-q3_K_S", + "name": "neural-chat:7b-v3.2-q3_K_S", + "description": "A fine-tuned model based on Mistral with good coverage of domain and language.", + "size": "3.2GB", + "digest": "aac750b8a41e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "neural-chat:7b-v3.2-q4_0", + "name": "neural-chat:7b-v3.2-q4_0", + "description": "A fine-tuned model based on Mistral with good coverage of domain and language.", + "size": "4.1GB", + "digest": "f4c6a8e532e8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "neural-chat:7b-v3.2-q4_1", + "name": "neural-chat:7b-v3.2-q4_1", + "description": "A fine-tuned model based on Mistral with good coverage of domain and language.", + "size": "4.6GB", + "digest": "7a06e87d4696", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "neural-chat:7b-v3.2-q4_K_M", + "name": "neural-chat:7b-v3.2-q4_K_M", + "description": "A fine-tuned model based on Mistral with good coverage of domain and language.", + "size": "4.4GB", + "digest": "33172df918d2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "neural-chat:7b-v3.2-q4_K_S", + "name": "neural-chat:7b-v3.2-q4_K_S", + "description": "A fine-tuned model based on Mistral with good coverage of domain and language.", + "size": "4.1GB", + "digest": "4a8f50c4525a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "neural-chat:7b-v3.2-q5_0", + "name": "neural-chat:7b-v3.2-q5_0", + "description": "A fine-tuned model based on Mistral with good coverage of domain and language.", + "size": "5.0GB", + "digest": "070678810598", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "neural-chat:7b-v3.2-q5_1", + "name": "neural-chat:7b-v3.2-q5_1", + "description": "A fine-tuned model based on Mistral with good coverage of domain and language.", + "size": "5.4GB", + "digest": "379f3f601243", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "neural-chat:7b-v3.2-q5_K_M", + "name": "neural-chat:7b-v3.2-q5_K_M", + "description": "A fine-tuned model based on Mistral with good coverage of domain and language.", + "size": "5.1GB", + "digest": "4f8475c82182", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "neural-chat:7b-v3.2-q5_K_S", + "name": "neural-chat:7b-v3.2-q5_K_S", + "description": "A fine-tuned model based on Mistral with good coverage of domain and language.", + "size": "5.0GB", + "digest": "79ae554db28d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "neural-chat:7b-v3.2-q6_K", + "name": "neural-chat:7b-v3.2-q6_K", + "description": "A fine-tuned model based on Mistral with good coverage of domain and language.", + "size": "5.9GB", + "digest": "9c0c2ea9c046", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "neural-chat:7b-v3.2-q8_0", + "name": "neural-chat:7b-v3.2-q8_0", + "description": "A fine-tuned model based on Mistral with good coverage of domain and language.", + "size": "7.7GB", + "digest": "6e958fe1fd6e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "neural-chat:7b-v3.3", + "name": "neural-chat:7b-v3.3", + "description": "A fine-tuned model based on Mistral with good coverage of domain and language.", + "size": "4.1GB", + "digest": "89fa737d3b85", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "neural-chat:7b-v3.3-fp16", + "name": "neural-chat:7b-v3.3-fp16", + "description": "A fine-tuned model based on Mistral with good coverage of domain and language.", + "size": "14GB", + "digest": "7b7e1b58d372", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "neural-chat:7b-v3.3-q2_K", + "name": "neural-chat:7b-v3.3-q2_K", + "description": "A fine-tuned model based on Mistral with good coverage of domain and language.", + "size": "3.1GB", + "digest": "85dca14ccac6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "neural-chat:7b-v3.3-q3_K_L", + "name": "neural-chat:7b-v3.3-q3_K_L", + "description": "A fine-tuned model based on Mistral with good coverage of domain and language.", + "size": "3.8GB", + "digest": "5b9c964d9ac8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "neural-chat:7b-v3.3-q3_K_M", + "name": "neural-chat:7b-v3.3-q3_K_M", + "description": "A fine-tuned model based on Mistral with good coverage of domain and language.", + "size": "3.5GB", + "digest": "189d5ae31c17", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "neural-chat:7b-v3.3-q3_K_S", + "name": "neural-chat:7b-v3.3-q3_K_S", + "description": "A fine-tuned model based on Mistral with good coverage of domain and language.", + "size": "3.2GB", + "digest": "645fb17707c9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "neural-chat:7b-v3.3-q4_0", + "name": "neural-chat:7b-v3.3-q4_0", + "description": "A fine-tuned model based on Mistral with good coverage of domain and language.", + "size": "4.1GB", + "digest": "89fa737d3b85", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "neural-chat:7b-v3.3-q4_1", + "name": "neural-chat:7b-v3.3-q4_1", + "description": "A fine-tuned model based on Mistral with good coverage of domain and language.", + "size": "4.6GB", + "digest": "e081f623106e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "neural-chat:7b-v3.3-q4_K_M", + "name": "neural-chat:7b-v3.3-q4_K_M", + "description": "A fine-tuned model based on Mistral with good coverage of domain and language.", + "size": "4.4GB", + "digest": "b1a7b3b85566", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "neural-chat:7b-v3.3-q4_K_S", + "name": "neural-chat:7b-v3.3-q4_K_S", + "description": "A fine-tuned model based on Mistral with good coverage of domain and language.", + "size": "4.1GB", + "digest": "07c6aaab950b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "neural-chat:7b-v3.3-q5_0", + "name": "neural-chat:7b-v3.3-q5_0", + "description": "A fine-tuned model based on Mistral with good coverage of domain and language.", + "size": "5.0GB", + "digest": "f5372fe561c2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "neural-chat:7b-v3.3-q5_1", + "name": "neural-chat:7b-v3.3-q5_1", + "description": "A fine-tuned model based on Mistral with good coverage of domain and language.", + "size": "5.4GB", + "digest": "b8ba685c1303", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "neural-chat:7b-v3.3-q5_K_M", + "name": "neural-chat:7b-v3.3-q5_K_M", + "description": "A fine-tuned model based on Mistral with good coverage of domain and language.", + "size": "5.1GB", + "digest": "6e7f6242bbec", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "neural-chat:7b-v3.3-q5_K_S", + "name": "neural-chat:7b-v3.3-q5_K_S", + "description": "A fine-tuned model based on Mistral with good coverage of domain and language.", + "size": "5.0GB", + "digest": "fb872be705fd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "neural-chat:7b-v3.3-q6_K", + "name": "neural-chat:7b-v3.3-q6_K", + "description": "A fine-tuned model based on Mistral with good coverage of domain and language.", + "size": "5.9GB", + "digest": "3098763b2a1d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "neural-chat:7b-v3.3-q8_0", + "name": "neural-chat:7b-v3.3-q8_0", + "description": "A fine-tuned model based on Mistral with good coverage of domain and language.", + "size": "7.7GB", + "digest": "fc8c63cac8c7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-gradient", + "name": "llama3-gradient", + "description": "This model extends LLama-3 8B's context length from 8k to over 1m tokens.", + "size": "4.7GB", + "digest": "5d1398df5b8b", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "llama3-gradient:1048k", + "name": "llama3-gradient:1048k", + "description": "This model extends LLama-3 8B's context length from 8k to over 1m tokens.", + "size": "4.7GB", + "digest": "5d1398df5b8b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-gradient:8b", + "name": "llama3-gradient:8b", + "description": "This model extends LLama-3 8B's context length from 8k to over 1m tokens.", + "size": "4.7GB", + "digest": "5d1398df5b8b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-gradient:70b", + "name": "llama3-gradient:70b", + "description": "This model extends LLama-3 8B's context length from 8k to over 1m tokens.", + "size": "40GB", + "digest": "b5d6e9d0ae61", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-gradient:70b-instruct-1048k-fp16", + "name": "llama3-gradient:70b-instruct-1048k-fp16", + "description": "This model extends LLama-3 8B's context length from 8k to over 1m tokens.", + "size": "141GB", + "digest": "cfcadecc99e9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-gradient:70b-instruct-1048k-q2_K", + "name": "llama3-gradient:70b-instruct-1048k-q2_K", + "description": "This model extends LLama-3 8B's context length from 8k to over 1m tokens.", + "size": "26GB", + "digest": "ed7c53c8b502", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-gradient:70b-instruct-1048k-q3_K_L", + "name": "llama3-gradient:70b-instruct-1048k-q3_K_L", + "description": "This model extends LLama-3 8B's context length from 8k to over 1m tokens.", + "size": "37GB", + "digest": "a03cb0882529", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-gradient:70b-instruct-1048k-q3_K_M", + "name": "llama3-gradient:70b-instruct-1048k-q3_K_M", + "description": "This model extends LLama-3 8B's context length from 8k to over 1m tokens.", + "size": "34GB", + "digest": "e4fc265d59a8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-gradient:70b-instruct-1048k-q3_K_S", + "name": "llama3-gradient:70b-instruct-1048k-q3_K_S", + "description": "This model extends LLama-3 8B's context length from 8k to over 1m tokens.", + "size": "31GB", + "digest": "bdee3e061f75", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-gradient:70b-instruct-1048k-q4_0", + "name": "llama3-gradient:70b-instruct-1048k-q4_0", + "description": "This model extends LLama-3 8B's context length from 8k to over 1m tokens.", + "size": "40GB", + "digest": "b5d6e9d0ae61", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-gradient:70b-instruct-1048k-q4_1", + "name": "llama3-gradient:70b-instruct-1048k-q4_1", + "description": "This model extends LLama-3 8B's context length from 8k to over 1m tokens.", + "size": "44GB", + "digest": "4ecc3cc03c9a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-gradient:70b-instruct-1048k-q4_K_M", + "name": "llama3-gradient:70b-instruct-1048k-q4_K_M", + "description": "This model extends LLama-3 8B's context length from 8k to over 1m tokens.", + "size": "43GB", + "digest": "b68ba521fab5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-gradient:70b-instruct-1048k-q4_K_S", + "name": "llama3-gradient:70b-instruct-1048k-q4_K_S", + "description": "This model extends LLama-3 8B's context length from 8k to over 1m tokens.", + "size": "40GB", + "digest": "8c990ff8dd67", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-gradient:70b-instruct-1048k-q5_0", + "name": "llama3-gradient:70b-instruct-1048k-q5_0", + "description": "This model extends LLama-3 8B's context length from 8k to over 1m tokens.", + "size": "49GB", + "digest": "31e92584c546", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-gradient:70b-instruct-1048k-q5_1", + "name": "llama3-gradient:70b-instruct-1048k-q5_1", + "description": "This model extends LLama-3 8B's context length from 8k to over 1m tokens.", + "size": "53GB", + "digest": "feafc730ced8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-gradient:70b-instruct-1048k-q5_K_M", + "name": "llama3-gradient:70b-instruct-1048k-q5_K_M", + "description": "This model extends LLama-3 8B's context length from 8k to over 1m tokens.", + "size": "50GB", + "digest": "a3db61871133", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-gradient:70b-instruct-1048k-q5_K_S", + "name": "llama3-gradient:70b-instruct-1048k-q5_K_S", + "description": "This model extends LLama-3 8B's context length from 8k to over 1m tokens.", + "size": "49GB", + "digest": "841f57c74a05", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-gradient:70b-instruct-1048k-q6_K", + "name": "llama3-gradient:70b-instruct-1048k-q6_K", + "description": "This model extends LLama-3 8B's context length from 8k to over 1m tokens.", + "size": "58GB", + "digest": "d224f1d529ea", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-gradient:70b-instruct-1048k-q8_0", + "name": "llama3-gradient:70b-instruct-1048k-q8_0", + "description": "This model extends LLama-3 8B's context length from 8k to over 1m tokens.", + "size": "75GB", + "digest": "65fc2ffdd713", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-gradient:8b-instruct-1048k-fp16", + "name": "llama3-gradient:8b-instruct-1048k-fp16", + "description": "This model extends LLama-3 8B's context length from 8k to over 1m tokens.", + "size": "16GB", + "digest": "839e683046bb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-gradient:8b-instruct-1048k-q2_K", + "name": "llama3-gradient:8b-instruct-1048k-q2_K", + "description": "This model extends LLama-3 8B's context length from 8k to over 1m tokens.", + "size": "3.2GB", + "digest": "c842eda5ddd5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-gradient:8b-instruct-1048k-q3_K_L", + "name": "llama3-gradient:8b-instruct-1048k-q3_K_L", + "description": "This model extends LLama-3 8B's context length from 8k to over 1m tokens.", + "size": "4.3GB", + "digest": "5a2ea82ad056", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-gradient:8b-instruct-1048k-q3_K_M", + "name": "llama3-gradient:8b-instruct-1048k-q3_K_M", + "description": "This model extends LLama-3 8B's context length from 8k to over 1m tokens.", + "size": "4.0GB", + "digest": "786019279b07", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-gradient:8b-instruct-1048k-q3_K_S", + "name": "llama3-gradient:8b-instruct-1048k-q3_K_S", + "description": "This model extends LLama-3 8B's context length from 8k to over 1m tokens.", + "size": "3.7GB", + "digest": "ac6814bccbc9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-gradient:8b-instruct-1048k-q4_0", + "name": "llama3-gradient:8b-instruct-1048k-q4_0", + "description": "This model extends LLama-3 8B's context length from 8k to over 1m tokens.", + "size": "4.7GB", + "digest": "5d1398df5b8b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-gradient:8b-instruct-1048k-q4_1", + "name": "llama3-gradient:8b-instruct-1048k-q4_1", + "description": "This model extends LLama-3 8B's context length from 8k to over 1m tokens.", + "size": "5.1GB", + "digest": "1e76a7e4e55b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-gradient:8b-instruct-1048k-q4_K_M", + "name": "llama3-gradient:8b-instruct-1048k-q4_K_M", + "description": "This model extends LLama-3 8B's context length from 8k to over 1m tokens.", + "size": "4.9GB", + "digest": "3ba4af54f02f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-gradient:8b-instruct-1048k-q4_K_S", + "name": "llama3-gradient:8b-instruct-1048k-q4_K_S", + "description": "This model extends LLama-3 8B's context length from 8k to over 1m tokens.", + "size": "4.7GB", + "digest": "419da1c2bc33", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-gradient:8b-instruct-1048k-q5_0", + "name": "llama3-gradient:8b-instruct-1048k-q5_0", + "description": "This model extends LLama-3 8B's context length from 8k to over 1m tokens.", + "size": "5.6GB", + "digest": "fcab91d085ad", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-gradient:8b-instruct-1048k-q5_1", + "name": "llama3-gradient:8b-instruct-1048k-q5_1", + "description": "This model extends LLama-3 8B's context length from 8k to over 1m tokens.", + "size": "6.1GB", + "digest": "778b4e9deda3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-gradient:8b-instruct-1048k-q5_K_M", + "name": "llama3-gradient:8b-instruct-1048k-q5_K_M", + "description": "This model extends LLama-3 8B's context length from 8k to over 1m tokens.", + "size": "5.7GB", + "digest": "279429844582", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-gradient:8b-instruct-1048k-q5_K_S", + "name": "llama3-gradient:8b-instruct-1048k-q5_K_S", + "description": "This model extends LLama-3 8B's context length from 8k to over 1m tokens.", + "size": "5.6GB", + "digest": "a2a68d63519c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-gradient:8b-instruct-1048k-q6_K", + "name": "llama3-gradient:8b-instruct-1048k-q6_K", + "description": "This model extends LLama-3 8B's context length from 8k to over 1m tokens.", + "size": "6.6GB", + "digest": "9851a7dbda92", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-gradient:8b-instruct-1048k-q8_0", + "name": "llama3-gradient:8b-instruct-1048k-q8_0", + "description": "This model extends LLama-3 8B's context length from 8k to over 1m tokens.", + "size": "8.5GB", + "digest": "543168ef36be", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-gradient:instruct", + "name": "llama3-gradient:instruct", + "description": "This model extends LLama-3 8B's context length from 8k to over 1m tokens.", + "size": "4.7GB", + "digest": "5d1398df5b8b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math", + "name": "wizard-math", + "description": "Model focused on math and logic problems", + "size": "4.1GB", + "digest": "5ab8dc2115d3", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "wizard-math:7b", + "name": "wizard-math:7b", + "description": "Model focused on math and logic problems", + "size": "4.1GB", + "digest": "5ab8dc2115d3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:13b", + "name": "wizard-math:13b", + "description": "Model focused on math and logic problems", + "size": "7.4GB", + "digest": "8b44f21282d8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:70b", + "name": "wizard-math:70b", + "description": "Model focused on math and logic problems", + "size": "39GB", + "digest": "78a12f5c753b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:13b-fp16", + "name": "wizard-math:13b-fp16", + "description": "Model focused on math and logic problems", + "size": "26GB", + "digest": "3bd5c9fb640d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:13b-q2_K", + "name": "wizard-math:13b-q2_K", + "description": "Model focused on math and logic problems", + "size": "5.4GB", + "digest": "04f99080dc55", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:13b-q3_K_L", + "name": "wizard-math:13b-q3_K_L", + "description": "Model focused on math and logic problems", + "size": "6.9GB", + "digest": "ed332a080a46", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:13b-q3_K_M", + "name": "wizard-math:13b-q3_K_M", + "description": "Model focused on math and logic problems", + "size": "6.3GB", + "digest": "f20c07ecdbbb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:13b-q3_K_S", + "name": "wizard-math:13b-q3_K_S", + "description": "Model focused on math and logic problems", + "size": "5.7GB", + "digest": "09e1fc038a1e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:13b-q4_0", + "name": "wizard-math:13b-q4_0", + "description": "Model focused on math and logic problems", + "size": "7.4GB", + "digest": "8b44f21282d8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:13b-q4_1", + "name": "wizard-math:13b-q4_1", + "description": "Model focused on math and logic problems", + "size": "8.2GB", + "digest": "7d82decc19c9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:13b-q4_K_M", + "name": "wizard-math:13b-q4_K_M", + "description": "Model focused on math and logic problems", + "size": "7.9GB", + "digest": "8972bd69fd2b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:13b-q4_K_S", + "name": "wizard-math:13b-q4_K_S", + "description": "Model focused on math and logic problems", + "size": "7.4GB", + "digest": "5b0ad85a5ff2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:13b-q5_0", + "name": "wizard-math:13b-q5_0", + "description": "Model focused on math and logic problems", + "size": "9.0GB", + "digest": "712881c3a1f5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:13b-q5_1", + "name": "wizard-math:13b-q5_1", + "description": "Model focused on math and logic problems", + "size": "9.8GB", + "digest": "4dc396c294c2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:13b-q5_K_M", + "name": "wizard-math:13b-q5_K_M", + "description": "Model focused on math and logic problems", + "size": "9.2GB", + "digest": "ee22916d7475", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:13b-q5_K_S", + "name": "wizard-math:13b-q5_K_S", + "description": "Model focused on math and logic problems", + "size": "9.0GB", + "digest": "81854a1cfc87", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:13b-q6_K", + "name": "wizard-math:13b-q6_K", + "description": "Model focused on math and logic problems", + "size": "11GB", + "digest": "3b2fe53d6622", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:13b-q8_0", + "name": "wizard-math:13b-q8_0", + "description": "Model focused on math and logic problems", + "size": "14GB", + "digest": "fb4caa91e51b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:70b-fp16", + "name": "wizard-math:70b-fp16", + "description": "Model focused on math and logic problems", + "size": "138GB", + "digest": "fbc61420209c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:70b-q2_K", + "name": "wizard-math:70b-q2_K", + "description": "Model focused on math and logic problems", + "size": "29GB", + "digest": "49b0aa622ef3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:70b-q3_K_L", + "name": "wizard-math:70b-q3_K_L", + "description": "Model focused on math and logic problems", + "size": "36GB", + "digest": "abaeff08031f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:70b-q3_K_M", + "name": "wizard-math:70b-q3_K_M", + "description": "Model focused on math and logic problems", + "size": "33GB", + "digest": "213ebb30790d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:70b-q3_K_S", + "name": "wizard-math:70b-q3_K_S", + "description": "Model focused on math and logic problems", + "size": "30GB", + "digest": "f177b78b166c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:70b-q4_0", + "name": "wizard-math:70b-q4_0", + "description": "Model focused on math and logic problems", + "size": "39GB", + "digest": "78a12f5c753b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:70b-q4_1", + "name": "wizard-math:70b-q4_1", + "description": "Model focused on math and logic problems", + "size": "43GB", + "digest": "5dfbed4fdb94", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:70b-q4_K_M", + "name": "wizard-math:70b-q4_K_M", + "description": "Model focused on math and logic problems", + "size": "41GB", + "digest": "7e51cd7185f9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:70b-q4_K_S", + "name": "wizard-math:70b-q4_K_S", + "description": "Model focused on math and logic problems", + "size": "39GB", + "digest": "ffac3e511948", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:70b-q5_0", + "name": "wizard-math:70b-q5_0", + "description": "Model focused on math and logic problems", + "size": "47GB", + "digest": "36de56ad0a3e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:70b-q5_1", + "name": "wizard-math:70b-q5_1", + "description": "Model focused on math and logic problems", + "size": "52GB", + "digest": "ac0dd67be9f3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:70b-q5_K_M", + "name": "wizard-math:70b-q5_K_M", + "description": "Model focused on math and logic problems", + "size": "49GB", + "digest": "09fccca8b7ac", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:70b-q5_K_S", + "name": "wizard-math:70b-q5_K_S", + "description": "Model focused on math and logic problems", + "size": "47GB", + "digest": "3457b4038c5a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:70b-q6_K", + "name": "wizard-math:70b-q6_K", + "description": "Model focused on math and logic problems", + "size": "57GB", + "digest": "7926bf824556", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:70b-q8_0", + "name": "wizard-math:70b-q8_0", + "description": "Model focused on math and logic problems", + "size": "73GB", + "digest": "5827126cc766", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:7b-fp16", + "name": "wizard-math:7b-fp16", + "description": "Model focused on math and logic problems", + "size": "13GB", + "digest": "2da027b7832e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:7b-q2_K", + "name": "wizard-math:7b-q2_K", + "description": "Model focused on math and logic problems", + "size": "2.8GB", + "digest": "92eee4b30af3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:7b-q3_K_L", + "name": "wizard-math:7b-q3_K_L", + "description": "Model focused on math and logic problems", + "size": "3.6GB", + "digest": "ea1e890b2834", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:7b-q3_K_M", + "name": "wizard-math:7b-q3_K_M", + "description": "Model focused on math and logic problems", + "size": "3.3GB", + "digest": "8d69fd3716a2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:7b-q3_K_S", + "name": "wizard-math:7b-q3_K_S", + "description": "Model focused on math and logic problems", + "size": "2.9GB", + "digest": "5991089fe14e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:7b-q4_0", + "name": "wizard-math:7b-q4_0", + "description": "Model focused on math and logic problems", + "size": "3.8GB", + "digest": "9c8843a9e4f1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:7b-q4_1", + "name": "wizard-math:7b-q4_1", + "description": "Model focused on math and logic problems", + "size": "4.2GB", + "digest": "9591190dde98", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:7b-q4_K_M", + "name": "wizard-math:7b-q4_K_M", + "description": "Model focused on math and logic problems", + "size": "4.1GB", + "digest": "1cdc42c6d82d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:7b-q4_K_S", + "name": "wizard-math:7b-q4_K_S", + "description": "Model focused on math and logic problems", + "size": "3.9GB", + "digest": "7b76b8b02e14", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:7b-q5_0", + "name": "wizard-math:7b-q5_0", + "description": "Model focused on math and logic problems", + "size": "4.7GB", + "digest": "ade46d0b5ba5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:7b-q5_1", + "name": "wizard-math:7b-q5_1", + "description": "Model focused on math and logic problems", + "size": "5.1GB", + "digest": "b0f832f014a3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:7b-q5_K_M", + "name": "wizard-math:7b-q5_K_M", + "description": "Model focused on math and logic problems", + "size": "4.8GB", + "digest": "c127eced82ac", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:7b-q5_K_S", + "name": "wizard-math:7b-q5_K_S", + "description": "Model focused on math and logic problems", + "size": "4.7GB", + "digest": "7c60c147e556", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:7b-q6_K", + "name": "wizard-math:7b-q6_K", + "description": "Model focused on math and logic problems", + "size": "5.5GB", + "digest": "da2e01e1db76", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:7b-q8_0", + "name": "wizard-math:7b-q8_0", + "description": "Model focused on math and logic problems", + "size": "7.2GB", + "digest": "0ffedbf1deac", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:7b-v1.1-fp16", + "name": "wizard-math:7b-v1.1-fp16", + "description": "Model focused on math and logic problems", + "size": "14GB", + "digest": "9ba9081b8e33", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:7b-v1.1-q2_K", + "name": "wizard-math:7b-v1.1-q2_K", + "description": "Model focused on math and logic problems", + "size": "3.1GB", + "digest": "fb23b7ecbb41", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:7b-v1.1-q3_K_L", + "name": "wizard-math:7b-v1.1-q3_K_L", + "description": "Model focused on math and logic problems", + "size": "3.8GB", + "digest": "5d4901c2b6ee", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:7b-v1.1-q3_K_M", + "name": "wizard-math:7b-v1.1-q3_K_M", + "description": "Model focused on math and logic problems", + "size": "3.5GB", + "digest": "445d38e580c1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:7b-v1.1-q3_K_S", + "name": "wizard-math:7b-v1.1-q3_K_S", + "description": "Model focused on math and logic problems", + "size": "3.2GB", + "digest": "3d60487e5ff9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:7b-v1.1-q4_0", + "name": "wizard-math:7b-v1.1-q4_0", + "description": "Model focused on math and logic problems", + "size": "4.1GB", + "digest": "5ab8dc2115d3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:7b-v1.1-q4_1", + "name": "wizard-math:7b-v1.1-q4_1", + "description": "Model focused on math and logic problems", + "size": "4.6GB", + "digest": "84da7cfcaadf", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:7b-v1.1-q4_K_M", + "name": "wizard-math:7b-v1.1-q4_K_M", + "description": "Model focused on math and logic problems", + "size": "4.4GB", + "digest": "b3f80305c1ee", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:7b-v1.1-q4_K_S", + "name": "wizard-math:7b-v1.1-q4_K_S", + "description": "Model focused on math and logic problems", + "size": "4.1GB", + "digest": "7fbb91d511ed", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:7b-v1.1-q5_0", + "name": "wizard-math:7b-v1.1-q5_0", + "description": "Model focused on math and logic problems", + "size": "5.0GB", + "digest": "68ee7e9ae5c8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:7b-v1.1-q5_1", + "name": "wizard-math:7b-v1.1-q5_1", + "description": "Model focused on math and logic problems", + "size": "5.4GB", + "digest": "a71b25492bae", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:7b-v1.1-q5_K_M", + "name": "wizard-math:7b-v1.1-q5_K_M", + "description": "Model focused on math and logic problems", + "size": "5.1GB", + "digest": "7ef289161203", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:7b-v1.1-q5_K_S", + "name": "wizard-math:7b-v1.1-q5_K_S", + "description": "Model focused on math and logic problems", + "size": "5.0GB", + "digest": "842e330e5a43", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:7b-v1.1-q6_K", + "name": "wizard-math:7b-v1.1-q6_K", + "description": "Model focused on math and logic problems", + "size": "5.9GB", + "digest": "1605a5f0a78d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-math:7b-v1.1-q8_0", + "name": "wizard-math:7b-v1.1-q8_0", + "description": "Model focused on math and logic problems", + "size": "7.7GB", + "digest": "c0a82cf6340f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-chatqa", + "name": "llama3-chatqa", + "description": "A model from NVIDIA based on Llama 3 that excels at conversational question answering (QA) and retrieval-augmented generation (RAG).", + "size": "4.7GB", + "digest": "b37a98d204b2", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "llama3-chatqa:8b", + "name": "llama3-chatqa:8b", + "description": "A model from NVIDIA based on Llama 3 that excels at conversational question answering (QA) and retrieval-augmented generation (RAG).", + "size": "4.7GB", + "digest": "b37a98d204b2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-chatqa:70b", + "name": "llama3-chatqa:70b", + "description": "A model from NVIDIA based on Llama 3 that excels at conversational question answering (QA) and retrieval-augmented generation (RAG).", + "size": "40GB", + "digest": "ab8941f03aa3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-chatqa:70b-v1.5", + "name": "llama3-chatqa:70b-v1.5", + "description": "A model from NVIDIA based on Llama 3 that excels at conversational question answering (QA) and retrieval-augmented generation (RAG).", + "size": "40GB", + "digest": "ab8941f03aa3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-chatqa:70b-v1.5-fp16", + "name": "llama3-chatqa:70b-v1.5-fp16", + "description": "A model from NVIDIA based on Llama 3 that excels at conversational question answering (QA) and retrieval-augmented generation (RAG).", + "size": "141GB", + "digest": "d46dd05cde4c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-chatqa:70b-v1.5-q2_K", + "name": "llama3-chatqa:70b-v1.5-q2_K", + "description": "A model from NVIDIA based on Llama 3 that excels at conversational question answering (QA) and retrieval-augmented generation (RAG).", + "size": "26GB", + "digest": "8fde9769839c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-chatqa:70b-v1.5-q3_K_L", + "name": "llama3-chatqa:70b-v1.5-q3_K_L", + "description": "A model from NVIDIA based on Llama 3 that excels at conversational question answering (QA) and retrieval-augmented generation (RAG).", + "size": "37GB", + "digest": "d894d5e58d1e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-chatqa:70b-v1.5-q3_K_M", + "name": "llama3-chatqa:70b-v1.5-q3_K_M", + "description": "A model from NVIDIA based on Llama 3 that excels at conversational question answering (QA) and retrieval-augmented generation (RAG).", + "size": "34GB", + "digest": "47d621963e0c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-chatqa:70b-v1.5-q3_K_S", + "name": "llama3-chatqa:70b-v1.5-q3_K_S", + "description": "A model from NVIDIA based on Llama 3 that excels at conversational question answering (QA) and retrieval-augmented generation (RAG).", + "size": "31GB", + "digest": "6c487abb0e1f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-chatqa:70b-v1.5-q4_0", + "name": "llama3-chatqa:70b-v1.5-q4_0", + "description": "A model from NVIDIA based on Llama 3 that excels at conversational question answering (QA) and retrieval-augmented generation (RAG).", + "size": "40GB", + "digest": "ab8941f03aa3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-chatqa:70b-v1.5-q4_1", + "name": "llama3-chatqa:70b-v1.5-q4_1", + "description": "A model from NVIDIA based on Llama 3 that excels at conversational question answering (QA) and retrieval-augmented generation (RAG).", + "size": "44GB", + "digest": "ae356afdf521", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-chatqa:70b-v1.5-q4_K_M", + "name": "llama3-chatqa:70b-v1.5-q4_K_M", + "description": "A model from NVIDIA based on Llama 3 that excels at conversational question answering (QA) and retrieval-augmented generation (RAG).", + "size": "43GB", + "digest": "bd9cc94a71c9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-chatqa:70b-v1.5-q4_K_S", + "name": "llama3-chatqa:70b-v1.5-q4_K_S", + "description": "A model from NVIDIA based on Llama 3 that excels at conversational question answering (QA) and retrieval-augmented generation (RAG).", + "size": "40GB", + "digest": "7d6f62f9c1c6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-chatqa:70b-v1.5-q5_0", + "name": "llama3-chatqa:70b-v1.5-q5_0", + "description": "A model from NVIDIA based on Llama 3 that excels at conversational question answering (QA) and retrieval-augmented generation (RAG).", + "size": "49GB", + "digest": "29f1075baf3a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-chatqa:70b-v1.5-q5_1", + "name": "llama3-chatqa:70b-v1.5-q5_1", + "description": "A model from NVIDIA based on Llama 3 that excels at conversational question answering (QA) and retrieval-augmented generation (RAG).", + "size": "53GB", + "digest": "3adf827c2f0c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-chatqa:70b-v1.5-q5_K_M", + "name": "llama3-chatqa:70b-v1.5-q5_K_M", + "description": "A model from NVIDIA based on Llama 3 that excels at conversational question answering (QA) and retrieval-augmented generation (RAG).", + "size": "50GB", + "digest": "275a26d672ac", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-chatqa:70b-v1.5-q5_K_S", + "name": "llama3-chatqa:70b-v1.5-q5_K_S", + "description": "A model from NVIDIA based on Llama 3 that excels at conversational question answering (QA) and retrieval-augmented generation (RAG).", + "size": "49GB", + "digest": "2650a0fefd9b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-chatqa:70b-v1.5-q6_K", + "name": "llama3-chatqa:70b-v1.5-q6_K", + "description": "A model from NVIDIA based on Llama 3 that excels at conversational question answering (QA) and retrieval-augmented generation (RAG).", + "size": "58GB", + "digest": "8cc009d2a270", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-chatqa:70b-v1.5-q8_0", + "name": "llama3-chatqa:70b-v1.5-q8_0", + "description": "A model from NVIDIA based on Llama 3 that excels at conversational question answering (QA) and retrieval-augmented generation (RAG).", + "size": "75GB", + "digest": "1fb999cb1cad", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-chatqa:8b-v1.5", + "name": "llama3-chatqa:8b-v1.5", + "description": "A model from NVIDIA based on Llama 3 that excels at conversational question answering (QA) and retrieval-augmented generation (RAG).", + "size": "4.7GB", + "digest": "b37a98d204b2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-chatqa:8b-v1.5-fp16", + "name": "llama3-chatqa:8b-v1.5-fp16", + "description": "A model from NVIDIA based on Llama 3 that excels at conversational question answering (QA) and retrieval-augmented generation (RAG).", + "size": "16GB", + "digest": "54f366e1115a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-chatqa:8b-v1.5-q2_K", + "name": "llama3-chatqa:8b-v1.5-q2_K", + "description": "A model from NVIDIA based on Llama 3 that excels at conversational question answering (QA) and retrieval-augmented generation (RAG).", + "size": "3.2GB", + "digest": "010674c8ebb4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-chatqa:8b-v1.5-q3_K_L", + "name": "llama3-chatqa:8b-v1.5-q3_K_L", + "description": "A model from NVIDIA based on Llama 3 that excels at conversational question answering (QA) and retrieval-augmented generation (RAG).", + "size": "4.3GB", + "digest": "748c33a3a51f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-chatqa:8b-v1.5-q3_K_M", + "name": "llama3-chatqa:8b-v1.5-q3_K_M", + "description": "A model from NVIDIA based on Llama 3 that excels at conversational question answering (QA) and retrieval-augmented generation (RAG).", + "size": "4.0GB", + "digest": "d1cbce0911ee", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-chatqa:8b-v1.5-q3_K_S", + "name": "llama3-chatqa:8b-v1.5-q3_K_S", + "description": "A model from NVIDIA based on Llama 3 that excels at conversational question answering (QA) and retrieval-augmented generation (RAG).", + "size": "3.7GB", + "digest": "6d4cf2ccd7df", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-chatqa:8b-v1.5-q4_0", + "name": "llama3-chatqa:8b-v1.5-q4_0", + "description": "A model from NVIDIA based on Llama 3 that excels at conversational question answering (QA) and retrieval-augmented generation (RAG).", + "size": "4.7GB", + "digest": "b37a98d204b2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-chatqa:8b-v1.5-q4_1", + "name": "llama3-chatqa:8b-v1.5-q4_1", + "description": "A model from NVIDIA based on Llama 3 that excels at conversational question answering (QA) and retrieval-augmented generation (RAG).", + "size": "5.1GB", + "digest": "598e30318446", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-chatqa:8b-v1.5-q4_K_M", + "name": "llama3-chatqa:8b-v1.5-q4_K_M", + "description": "A model from NVIDIA based on Llama 3 that excels at conversational question answering (QA) and retrieval-augmented generation (RAG).", + "size": "4.9GB", + "digest": "07e385a3991b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-chatqa:8b-v1.5-q4_K_S", + "name": "llama3-chatqa:8b-v1.5-q4_K_S", + "description": "A model from NVIDIA based on Llama 3 that excels at conversational question answering (QA) and retrieval-augmented generation (RAG).", + "size": "4.7GB", + "digest": "c4c5c98e11c6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-chatqa:8b-v1.5-q5_0", + "name": "llama3-chatqa:8b-v1.5-q5_0", + "description": "A model from NVIDIA based on Llama 3 that excels at conversational question answering (QA) and retrieval-augmented generation (RAG).", + "size": "5.6GB", + "digest": "7775bf791816", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-chatqa:8b-v1.5-q5_1", + "name": "llama3-chatqa:8b-v1.5-q5_1", + "description": "A model from NVIDIA based on Llama 3 that excels at conversational question answering (QA) and retrieval-augmented generation (RAG).", + "size": "6.1GB", + "digest": "233019c7a259", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-chatqa:8b-v1.5-q5_K_M", + "name": "llama3-chatqa:8b-v1.5-q5_K_M", + "description": "A model from NVIDIA based on Llama 3 that excels at conversational question answering (QA) and retrieval-augmented generation (RAG).", + "size": "5.7GB", + "digest": "d0e9675cf775", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-chatqa:8b-v1.5-q5_K_S", + "name": "llama3-chatqa:8b-v1.5-q5_K_S", + "description": "A model from NVIDIA based on Llama 3 that excels at conversational question answering (QA) and retrieval-augmented generation (RAG).", + "size": "5.6GB", + "digest": "3eab2a2fa684", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-chatqa:8b-v1.5-q6_K", + "name": "llama3-chatqa:8b-v1.5-q6_K", + "description": "A model from NVIDIA based on Llama 3 that excels at conversational question answering (QA) and retrieval-augmented generation (RAG).", + "size": "6.6GB", + "digest": "576770c27967", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-chatqa:8b-v1.5-q8_0", + "name": "llama3-chatqa:8b-v1.5-q8_0", + "description": "A model from NVIDIA based on Llama 3 that excels at conversational question answering (QA) and retrieval-augmented generation (RAG).", + "size": "8.5GB", + "digest": "4b48f929dc16", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sqlcoder", + "name": "sqlcoder", + "description": "SQLCoder is a code completion model fined-tuned on StarCoder for SQL generation tasks", + "size": "4.1GB", + "digest": "77ac14348387", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "sqlcoder:7b", + "name": "sqlcoder:7b", + "description": "SQLCoder is a code completion model fined-tuned on StarCoder for SQL generation tasks", + "size": "4.1GB", + "digest": "77ac14348387", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sqlcoder:15b", + "name": "sqlcoder:15b", + "description": "SQLCoder is a code completion model fined-tuned on StarCoder for SQL generation tasks", + "size": "9.0GB", + "digest": "93bb0e8a904f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sqlcoder:15b-fp16", + "name": "sqlcoder:15b-fp16", + "description": "SQLCoder is a code completion model fined-tuned on StarCoder for SQL generation tasks", + "size": "32GB", + "digest": "6369c7277e63", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sqlcoder:15b-q2_K", + "name": "sqlcoder:15b-q2_K", + "description": "SQLCoder is a code completion model fined-tuned on StarCoder for SQL generation tasks", + "size": "6.7GB", + "digest": "dd88fa6c88f9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sqlcoder:15b-q3_K_L", + "name": "sqlcoder:15b-q3_K_L", + "description": "SQLCoder is a code completion model fined-tuned on StarCoder for SQL generation tasks", + "size": "9.1GB", + "digest": "e897d393ebf1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sqlcoder:15b-q3_K_M", + "name": "sqlcoder:15b-q3_K_M", + "description": "SQLCoder is a code completion model fined-tuned on StarCoder for SQL generation tasks", + "size": "8.2GB", + "digest": "35f5a2532a9f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sqlcoder:15b-q3_K_S", + "name": "sqlcoder:15b-q3_K_S", + "description": "SQLCoder is a code completion model fined-tuned on StarCoder for SQL generation tasks", + "size": "6.9GB", + "digest": "02328caa22ea", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sqlcoder:15b-q4_0", + "name": "sqlcoder:15b-q4_0", + "description": "SQLCoder is a code completion model fined-tuned on StarCoder for SQL generation tasks", + "size": "9.0GB", + "digest": "93bb0e8a904f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sqlcoder:15b-q4_1", + "name": "sqlcoder:15b-q4_1", + "description": "SQLCoder is a code completion model fined-tuned on StarCoder for SQL generation tasks", + "size": "10.0GB", + "digest": "78804bd67731", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sqlcoder:15b-q4_K_M", + "name": "sqlcoder:15b-q4_K_M", + "description": "SQLCoder is a code completion model fined-tuned on StarCoder for SQL generation tasks", + "size": "10.0GB", + "digest": "aee77323d6c4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sqlcoder:15b-q4_K_S", + "name": "sqlcoder:15b-q4_K_S", + "description": "SQLCoder is a code completion model fined-tuned on StarCoder for SQL generation tasks", + "size": "9.1GB", + "digest": "11c41fea3fed", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sqlcoder:15b-q5_0", + "name": "sqlcoder:15b-q5_0", + "description": "SQLCoder is a code completion model fined-tuned on StarCoder for SQL generation tasks", + "size": "11GB", + "digest": "2a1ff495d518", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sqlcoder:15b-q5_1", + "name": "sqlcoder:15b-q5_1", + "description": "SQLCoder is a code completion model fined-tuned on StarCoder for SQL generation tasks", + "size": "12GB", + "digest": "c8efb3a98ee1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sqlcoder:15b-q5_K_M", + "name": "sqlcoder:15b-q5_K_M", + "description": "SQLCoder is a code completion model fined-tuned on StarCoder for SQL generation tasks", + "size": "12GB", + "digest": "fbbab943ddb2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sqlcoder:15b-q5_K_S", + "name": "sqlcoder:15b-q5_K_S", + "description": "SQLCoder is a code completion model fined-tuned on StarCoder for SQL generation tasks", + "size": "11GB", + "digest": "11b67891395e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sqlcoder:15b-q6_K", + "name": "sqlcoder:15b-q6_K", + "description": "SQLCoder is a code completion model fined-tuned on StarCoder for SQL generation tasks", + "size": "13GB", + "digest": "cd5d9138d61e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sqlcoder:15b-q8_0", + "name": "sqlcoder:15b-q8_0", + "description": "SQLCoder is a code completion model fined-tuned on StarCoder for SQL generation tasks", + "size": "17GB", + "digest": "e07554606510", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sqlcoder:70b-alpha-fp16", + "name": "sqlcoder:70b-alpha-fp16", + "description": "SQLCoder is a code completion model fined-tuned on StarCoder for SQL generation tasks", + "size": "138GB", + "digest": "2a20f63ebd1d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sqlcoder:70b-alpha-q2_K", + "name": "sqlcoder:70b-alpha-q2_K", + "description": "SQLCoder is a code completion model fined-tuned on StarCoder for SQL generation tasks", + "size": "25GB", + "digest": "510d7936f38d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sqlcoder:70b-alpha-q3_K_L", + "name": "sqlcoder:70b-alpha-q3_K_L", + "description": "SQLCoder is a code completion model fined-tuned on StarCoder for SQL generation tasks", + "size": "36GB", + "digest": "8841830edc80", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sqlcoder:70b-alpha-q3_K_M", + "name": "sqlcoder:70b-alpha-q3_K_M", + "description": "SQLCoder is a code completion model fined-tuned on StarCoder for SQL generation tasks", + "size": "33GB", + "digest": "e58e4a7b8c15", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sqlcoder:70b-alpha-q3_K_S", + "name": "sqlcoder:70b-alpha-q3_K_S", + "description": "SQLCoder is a code completion model fined-tuned on StarCoder for SQL generation tasks", + "size": "30GB", + "digest": "7fa3e5dcdb07", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sqlcoder:70b-alpha-q4_0", + "name": "sqlcoder:70b-alpha-q4_0", + "description": "SQLCoder is a code completion model fined-tuned on StarCoder for SQL generation tasks", + "size": "39GB", + "digest": "23ca04b201dd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sqlcoder:70b-alpha-q4_1", + "name": "sqlcoder:70b-alpha-q4_1", + "description": "SQLCoder is a code completion model fined-tuned on StarCoder for SQL generation tasks", + "size": "43GB", + "digest": "e431137fc239", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sqlcoder:70b-alpha-q4_K_M", + "name": "sqlcoder:70b-alpha-q4_K_M", + "description": "SQLCoder is a code completion model fined-tuned on StarCoder for SQL generation tasks", + "size": "41GB", + "digest": "a8d3eb52b519", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sqlcoder:70b-alpha-q4_K_S", + "name": "sqlcoder:70b-alpha-q4_K_S", + "description": "SQLCoder is a code completion model fined-tuned on StarCoder for SQL generation tasks", + "size": "39GB", + "digest": "5be5f1377e74", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sqlcoder:70b-alpha-q5_0", + "name": "sqlcoder:70b-alpha-q5_0", + "description": "SQLCoder is a code completion model fined-tuned on StarCoder for SQL generation tasks", + "size": "47GB", + "digest": "faad68f73fc2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sqlcoder:70b-alpha-q5_1", + "name": "sqlcoder:70b-alpha-q5_1", + "description": "SQLCoder is a code completion model fined-tuned on StarCoder for SQL generation tasks", + "size": "52GB", + "digest": "d05ce9b94ffd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sqlcoder:70b-alpha-q5_K_M", + "name": "sqlcoder:70b-alpha-q5_K_M", + "description": "SQLCoder is a code completion model fined-tuned on StarCoder for SQL generation tasks", + "size": "49GB", + "digest": "fdc1971644d8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sqlcoder:70b-alpha-q5_K_S", + "name": "sqlcoder:70b-alpha-q5_K_S", + "description": "SQLCoder is a code completion model fined-tuned on StarCoder for SQL generation tasks", + "size": "47GB", + "digest": "a83028f215d3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sqlcoder:70b-alpha-q6_K", + "name": "sqlcoder:70b-alpha-q6_K", + "description": "SQLCoder is a code completion model fined-tuned on StarCoder for SQL generation tasks", + "size": "57GB", + "digest": "334382eb1aff", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sqlcoder:70b-alpha-q8_0", + "name": "sqlcoder:70b-alpha-q8_0", + "description": "SQLCoder is a code completion model fined-tuned on StarCoder for SQL generation tasks", + "size": "73GB", + "digest": "f9eec4ca6793", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sqlcoder:7b-fp16", + "name": "sqlcoder:7b-fp16", + "description": "SQLCoder is a code completion model fined-tuned on StarCoder for SQL generation tasks", + "size": "14GB", + "digest": "186b67d3cc81", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sqlcoder:7b-q2_K", + "name": "sqlcoder:7b-q2_K", + "description": "SQLCoder is a code completion model fined-tuned on StarCoder for SQL generation tasks", + "size": "3.1GB", + "digest": "ef8dfd2a47a9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sqlcoder:7b-q3_K_L", + "name": "sqlcoder:7b-q3_K_L", + "description": "SQLCoder is a code completion model fined-tuned on StarCoder for SQL generation tasks", + "size": "3.8GB", + "digest": "cab35c00ef41", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sqlcoder:7b-q3_K_M", + "name": "sqlcoder:7b-q3_K_M", + "description": "SQLCoder is a code completion model fined-tuned on StarCoder for SQL generation tasks", + "size": "3.5GB", + "digest": "77511b137ab8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sqlcoder:7b-q3_K_S", + "name": "sqlcoder:7b-q3_K_S", + "description": "SQLCoder is a code completion model fined-tuned on StarCoder for SQL generation tasks", + "size": "3.2GB", + "digest": "9b217fbd379f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sqlcoder:7b-q4_0", + "name": "sqlcoder:7b-q4_0", + "description": "SQLCoder is a code completion model fined-tuned on StarCoder for SQL generation tasks", + "size": "4.1GB", + "digest": "77ac14348387", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sqlcoder:7b-q4_1", + "name": "sqlcoder:7b-q4_1", + "description": "SQLCoder is a code completion model fined-tuned on StarCoder for SQL generation tasks", + "size": "4.6GB", + "digest": "2497c9ce8ce5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sqlcoder:7b-q4_K_M", + "name": "sqlcoder:7b-q4_K_M", + "description": "SQLCoder is a code completion model fined-tuned on StarCoder for SQL generation tasks", + "size": "4.4GB", + "digest": "83f394c3724e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sqlcoder:7b-q4_K_S", + "name": "sqlcoder:7b-q4_K_S", + "description": "SQLCoder is a code completion model fined-tuned on StarCoder for SQL generation tasks", + "size": "4.1GB", + "digest": "1af8f9ec2947", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sqlcoder:7b-q5_0", + "name": "sqlcoder:7b-q5_0", + "description": "SQLCoder is a code completion model fined-tuned on StarCoder for SQL generation tasks", + "size": "5.0GB", + "digest": "71532749cb66", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sqlcoder:7b-q5_1", + "name": "sqlcoder:7b-q5_1", + "description": "SQLCoder is a code completion model fined-tuned on StarCoder for SQL generation tasks", + "size": "5.4GB", + "digest": "4f8985282cb3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sqlcoder:7b-q5_K_M", + "name": "sqlcoder:7b-q5_K_M", + "description": "SQLCoder is a code completion model fined-tuned on StarCoder for SQL generation tasks", + "size": "5.1GB", + "digest": "422d0b916aa2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sqlcoder:7b-q5_K_S", + "name": "sqlcoder:7b-q5_K_S", + "description": "SQLCoder is a code completion model fined-tuned on StarCoder for SQL generation tasks", + "size": "5.0GB", + "digest": "bac5bb21f4f1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sqlcoder:7b-q6_K", + "name": "sqlcoder:7b-q6_K", + "description": "SQLCoder is a code completion model fined-tuned on StarCoder for SQL generation tasks", + "size": "5.9GB", + "digest": "b8436a415945", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sqlcoder:7b-q8_0", + "name": "sqlcoder:7b-q8_0", + "description": "SQLCoder is a code completion model fined-tuned on StarCoder for SQL generation tasks", + "size": "7.7GB", + "digest": "07db64a3ecb0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm", + "name": "xwinlm", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "3.8GB", + "digest": "0fa68068d970", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "xwinlm:7b", + "name": "xwinlm:7b", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "3.8GB", + "digest": "0fa68068d970", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:13b", + "name": "xwinlm:13b", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "7.4GB", + "digest": "630afb311638", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:13b-v0.1", + "name": "xwinlm:13b-v0.1", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "7.4GB", + "digest": "cf480ed8e4a7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:13b-v0.1-fp16", + "name": "xwinlm:13b-v0.1-fp16", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "26GB", + "digest": "d512bdbe09b5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:13b-v0.1-q2_K", + "name": "xwinlm:13b-v0.1-q2_K", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "5.4GB", + "digest": "70041388f5fc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:13b-v0.1-q3_K_L", + "name": "xwinlm:13b-v0.1-q3_K_L", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "6.9GB", + "digest": "bf6792fa051c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:13b-v0.1-q3_K_M", + "name": "xwinlm:13b-v0.1-q3_K_M", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "6.3GB", + "digest": "c10ecb514000", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:13b-v0.1-q3_K_S", + "name": "xwinlm:13b-v0.1-q3_K_S", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "5.7GB", + "digest": "2a0c92c37e6c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:13b-v0.1-q4_0", + "name": "xwinlm:13b-v0.1-q4_0", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "7.4GB", + "digest": "cf480ed8e4a7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:13b-v0.1-q4_1", + "name": "xwinlm:13b-v0.1-q4_1", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "8.2GB", + "digest": "62d523fc9d2a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:13b-v0.1-q4_K_M", + "name": "xwinlm:13b-v0.1-q4_K_M", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "7.9GB", + "digest": "62d182cd9813", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:13b-v0.1-q4_K_S", + "name": "xwinlm:13b-v0.1-q4_K_S", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "7.4GB", + "digest": "dab27e0990ed", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:13b-v0.1-q5_0", + "name": "xwinlm:13b-v0.1-q5_0", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "9.0GB", + "digest": "d004f7e646a9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:13b-v0.1-q5_1", + "name": "xwinlm:13b-v0.1-q5_1", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "9.8GB", + "digest": "15c6fd1b2094", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:13b-v0.1-q5_K_M", + "name": "xwinlm:13b-v0.1-q5_K_M", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "9.2GB", + "digest": "ebc2833ad0ba", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:13b-v0.1-q5_K_S", + "name": "xwinlm:13b-v0.1-q5_K_S", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "9.0GB", + "digest": "c71e4af10498", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:13b-v0.1-q6_K", + "name": "xwinlm:13b-v0.1-q6_K", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "11GB", + "digest": "7d926962c2ea", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:13b-v0.1-q8_0", + "name": "xwinlm:13b-v0.1-q8_0", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "14GB", + "digest": "434dd50ba10e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:13b-v0.2", + "name": "xwinlm:13b-v0.2", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "7.4GB", + "digest": "630afb311638", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:13b-v0.2-fp16", + "name": "xwinlm:13b-v0.2-fp16", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "26GB", + "digest": "32badafc2fc2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:13b-v0.2-q2_K", + "name": "xwinlm:13b-v0.2-q2_K", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "5.4GB", + "digest": "d1f6ddfc4287", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:13b-v0.2-q3_K_L", + "name": "xwinlm:13b-v0.2-q3_K_L", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "6.9GB", + "digest": "abbe73aa1d14", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:13b-v0.2-q3_K_M", + "name": "xwinlm:13b-v0.2-q3_K_M", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "6.3GB", + "digest": "0a02b867dec8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:13b-v0.2-q3_K_S", + "name": "xwinlm:13b-v0.2-q3_K_S", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "5.7GB", + "digest": "f9f2141b8950", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:13b-v0.2-q4_0", + "name": "xwinlm:13b-v0.2-q4_0", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "7.4GB", + "digest": "630afb311638", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:13b-v0.2-q4_1", + "name": "xwinlm:13b-v0.2-q4_1", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "8.2GB", + "digest": "2381cac3c270", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:13b-v0.2-q4_K_M", + "name": "xwinlm:13b-v0.2-q4_K_M", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "7.9GB", + "digest": "103d879f0b5e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:13b-v0.2-q4_K_S", + "name": "xwinlm:13b-v0.2-q4_K_S", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "7.4GB", + "digest": "739c78f79426", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:13b-v0.2-q5_0", + "name": "xwinlm:13b-v0.2-q5_0", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "9.0GB", + "digest": "1ba22333648b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:13b-v0.2-q5_1", + "name": "xwinlm:13b-v0.2-q5_1", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "9.8GB", + "digest": "07a336150c6f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:13b-v0.2-q5_K_M", + "name": "xwinlm:13b-v0.2-q5_K_M", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "9.2GB", + "digest": "cafc0e719d8c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:13b-v0.2-q5_K_S", + "name": "xwinlm:13b-v0.2-q5_K_S", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "9.0GB", + "digest": "3d6c1f9aa6cc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:13b-v0.2-q6_K", + "name": "xwinlm:13b-v0.2-q6_K", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "11GB", + "digest": "8e00207058b2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:13b-v0.2-q8_0", + "name": "xwinlm:13b-v0.2-q8_0", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "14GB", + "digest": "26967662730d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:70b-v0.1", + "name": "xwinlm:70b-v0.1", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "39GB", + "digest": "375c269c0976", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:70b-v0.1-fp16", + "name": "xwinlm:70b-v0.1-fp16", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "138GB", + "digest": "30c79e1d7858", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:70b-v0.1-q2_K", + "name": "xwinlm:70b-v0.1-q2_K", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "29GB", + "digest": "6f4a455d60d7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:70b-v0.1-q3_K_L", + "name": "xwinlm:70b-v0.1-q3_K_L", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "36GB", + "digest": "25a8677c7a5d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:70b-v0.1-q3_K_M", + "name": "xwinlm:70b-v0.1-q3_K_M", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "33GB", + "digest": "05fcf445bad3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:70b-v0.1-q3_K_S", + "name": "xwinlm:70b-v0.1-q3_K_S", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "30GB", + "digest": "de1de9349ff9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:70b-v0.1-q4_0", + "name": "xwinlm:70b-v0.1-q4_0", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "39GB", + "digest": "375c269c0976", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:70b-v0.1-q4_1", + "name": "xwinlm:70b-v0.1-q4_1", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "43GB", + "digest": "5935a6833d26", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:70b-v0.1-q4_K_M", + "name": "xwinlm:70b-v0.1-q4_K_M", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "41GB", + "digest": "530efaab5085", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:70b-v0.1-q4_K_S", + "name": "xwinlm:70b-v0.1-q4_K_S", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "39GB", + "digest": "351702f698ec", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:70b-v0.1-q5_0", + "name": "xwinlm:70b-v0.1-q5_0", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "47GB", + "digest": "69e819a0933e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:70b-v0.1-q5_1", + "name": "xwinlm:70b-v0.1-q5_1", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "52GB", + "digest": "063cf60c63ca", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:70b-v0.1-q5_K_S", + "name": "xwinlm:70b-v0.1-q5_K_S", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "47GB", + "digest": "b5f5af9a9e41", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:70b-v0.1-q6_K", + "name": "xwinlm:70b-v0.1-q6_K", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "57GB", + "digest": "003fda23145c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:70b-v0.1-q8_0", + "name": "xwinlm:70b-v0.1-q8_0", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "73GB", + "digest": "16733fed6f8c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:7b-v0.1", + "name": "xwinlm:7b-v0.1", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "3.8GB", + "digest": "b403d658bba0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:7b-v0.1-fp16", + "name": "xwinlm:7b-v0.1-fp16", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "13GB", + "digest": "16c93bccfbd5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:7b-v0.1-q2_K", + "name": "xwinlm:7b-v0.1-q2_K", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "2.8GB", + "digest": "60a5e6fab2d2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:7b-v0.1-q3_K_L", + "name": "xwinlm:7b-v0.1-q3_K_L", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "3.6GB", + "digest": "f9d3e59af420", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:7b-v0.1-q3_K_M", + "name": "xwinlm:7b-v0.1-q3_K_M", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "3.3GB", + "digest": "b16a6f85ae78", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:7b-v0.1-q3_K_S", + "name": "xwinlm:7b-v0.1-q3_K_S", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "2.9GB", + "digest": "94bbcf9a5f51", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:7b-v0.1-q4_0", + "name": "xwinlm:7b-v0.1-q4_0", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "3.8GB", + "digest": "b403d658bba0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:7b-v0.1-q4_1", + "name": "xwinlm:7b-v0.1-q4_1", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "4.2GB", + "digest": "0913a3dfd094", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:7b-v0.1-q4_K_M", + "name": "xwinlm:7b-v0.1-q4_K_M", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "4.1GB", + "digest": "32c9ce4f8e94", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:7b-v0.1-q4_K_S", + "name": "xwinlm:7b-v0.1-q4_K_S", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "3.9GB", + "digest": "9fc17adbbb63", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:7b-v0.1-q5_0", + "name": "xwinlm:7b-v0.1-q5_0", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "4.7GB", + "digest": "7c6150db244e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:7b-v0.1-q5_1", + "name": "xwinlm:7b-v0.1-q5_1", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "5.1GB", + "digest": "9c38b8b5fdd0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:7b-v0.1-q5_K_M", + "name": "xwinlm:7b-v0.1-q5_K_M", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "4.8GB", + "digest": "f1c209d3638f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:7b-v0.1-q5_K_S", + "name": "xwinlm:7b-v0.1-q5_K_S", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "4.7GB", + "digest": "ed0f88a710cd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:7b-v0.1-q6_K", + "name": "xwinlm:7b-v0.1-q6_K", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "5.5GB", + "digest": "69a6eded5cbf", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:7b-v0.1-q8_0", + "name": "xwinlm:7b-v0.1-q8_0", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "7.2GB", + "digest": "7556549b5a15", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:7b-v0.2", + "name": "xwinlm:7b-v0.2", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "3.8GB", + "digest": "0fa68068d970", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:7b-v0.2-fp16", + "name": "xwinlm:7b-v0.2-fp16", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "13GB", + "digest": "8d01614baf49", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:7b-v0.2-q2_K", + "name": "xwinlm:7b-v0.2-q2_K", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "2.8GB", + "digest": "fe7141ff19bb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:7b-v0.2-q3_K_L", + "name": "xwinlm:7b-v0.2-q3_K_L", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "3.6GB", + "digest": "508c1edd8811", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:7b-v0.2-q3_K_S", + "name": "xwinlm:7b-v0.2-q3_K_S", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "2.9GB", + "digest": "1a022f2625ea", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:7b-v0.2-q4_0", + "name": "xwinlm:7b-v0.2-q4_0", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "3.8GB", + "digest": "0fa68068d970", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:7b-v0.2-q4_1", + "name": "xwinlm:7b-v0.2-q4_1", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "4.2GB", + "digest": "62d9b92fa0c0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:7b-v0.2-q4_K_M", + "name": "xwinlm:7b-v0.2-q4_K_M", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "4.1GB", + "digest": "f67bbe322630", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:7b-v0.2-q4_K_S", + "name": "xwinlm:7b-v0.2-q4_K_S", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "3.9GB", + "digest": "c9597dee32a7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:7b-v0.2-q5_0", + "name": "xwinlm:7b-v0.2-q5_0", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "4.7GB", + "digest": "ea9caeebc2fe", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:7b-v0.2-q5_K_M", + "name": "xwinlm:7b-v0.2-q5_K_M", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "4.8GB", + "digest": "c19838f1c26d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:7b-v0.2-q5_K_S", + "name": "xwinlm:7b-v0.2-q5_K_S", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "4.7GB", + "digest": "d3dbad83362a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:7b-v0.2-q6_K", + "name": "xwinlm:7b-v0.2-q6_K", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "5.5GB", + "digest": "04ac3723b86a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "xwinlm:7b-v0.2-q8_0", + "name": "xwinlm:7b-v0.2-q8_0", + "description": "Conversational model based on Llama 2 that performs competitively on various benchmarks.", + "size": "7.2GB", + "digest": "2c7fdd3e299a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphincoder", + "name": "dolphincoder", + "description": "A 7B and 15B uncensored variant of the Dolphin model family that excels at coding, based on StarCoder2.", + "size": "4.2GB", + "digest": "677555f1f316", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "dolphincoder:7b", + "name": "dolphincoder:7b", + "description": "A 7B and 15B uncensored variant of the Dolphin model family that excels at coding, based on StarCoder2.", + "size": "4.2GB", + "digest": "677555f1f316", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphincoder:15b", + "name": "dolphincoder:15b", + "description": "A 7B and 15B uncensored variant of the Dolphin model family that excels at coding, based on StarCoder2.", + "size": "9.1GB", + "digest": "1102380927c2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphincoder:15b-starcoder2", + "name": "dolphincoder:15b-starcoder2", + "description": "A 7B and 15B uncensored variant of the Dolphin model family that excels at coding, based on StarCoder2.", + "size": "9.1GB", + "digest": "1102380927c2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphincoder:15b-starcoder2-fp16", + "name": "dolphincoder:15b-starcoder2-fp16", + "description": "A 7B and 15B uncensored variant of the Dolphin model family that excels at coding, based on StarCoder2.", + "size": "32GB", + "digest": "1c1dc0127ddc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphincoder:15b-starcoder2-q2_K", + "name": "dolphincoder:15b-starcoder2-q2_K", + "description": "A 7B and 15B uncensored variant of the Dolphin model family that excels at coding, based on StarCoder2.", + "size": "6.2GB", + "digest": "ba9150d92d7a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphincoder:15b-starcoder2-q3_K_L", + "name": "dolphincoder:15b-starcoder2-q3_K_L", + "description": "A 7B and 15B uncensored variant of the Dolphin model family that excels at coding, based on StarCoder2.", + "size": "9.0GB", + "digest": "df6670a7f78c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphincoder:15b-starcoder2-q3_K_M", + "name": "dolphincoder:15b-starcoder2-q3_K_M", + "description": "A 7B and 15B uncensored variant of the Dolphin model family that excels at coding, based on StarCoder2.", + "size": "8.1GB", + "digest": "eddba241c8a5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphincoder:15b-starcoder2-q3_K_S", + "name": "dolphincoder:15b-starcoder2-q3_K_S", + "description": "A 7B and 15B uncensored variant of the Dolphin model family that excels at coding, based on StarCoder2.", + "size": "7.0GB", + "digest": "acf10b086812", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphincoder:15b-starcoder2-q4_0", + "name": "dolphincoder:15b-starcoder2-q4_0", + "description": "A 7B and 15B uncensored variant of the Dolphin model family that excels at coding, based on StarCoder2.", + "size": "9.1GB", + "digest": "1102380927c2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphincoder:15b-starcoder2-q4_1", + "name": "dolphincoder:15b-starcoder2-q4_1", + "description": "A 7B and 15B uncensored variant of the Dolphin model family that excels at coding, based on StarCoder2.", + "size": "10GB", + "digest": "e6e9a34e768f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphincoder:15b-starcoder2-q4_K_M", + "name": "dolphincoder:15b-starcoder2-q4_K_M", + "description": "A 7B and 15B uncensored variant of the Dolphin model family that excels at coding, based on StarCoder2.", + "size": "9.9GB", + "digest": "5af4b8a9d51d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphincoder:15b-starcoder2-q4_K_S", + "name": "dolphincoder:15b-starcoder2-q4_K_S", + "description": "A 7B and 15B uncensored variant of the Dolphin model family that excels at coding, based on StarCoder2.", + "size": "9.3GB", + "digest": "c2b8d84e8ce3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphincoder:15b-starcoder2-q5_0", + "name": "dolphincoder:15b-starcoder2-q5_0", + "description": "A 7B and 15B uncensored variant of the Dolphin model family that excels at coding, based on StarCoder2.", + "size": "11GB", + "digest": "b4735d7cba44", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphincoder:15b-starcoder2-q5_1", + "name": "dolphincoder:15b-starcoder2-q5_1", + "description": "A 7B and 15B uncensored variant of the Dolphin model family that excels at coding, based on StarCoder2.", + "size": "12GB", + "digest": "7140319becb6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphincoder:15b-starcoder2-q5_K_M", + "name": "dolphincoder:15b-starcoder2-q5_K_M", + "description": "A 7B and 15B uncensored variant of the Dolphin model family that excels at coding, based on StarCoder2.", + "size": "11GB", + "digest": "fff9c5a18e8a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphincoder:15b-starcoder2-q5_K_S", + "name": "dolphincoder:15b-starcoder2-q5_K_S", + "description": "A 7B and 15B uncensored variant of the Dolphin model family that excels at coding, based on StarCoder2.", + "size": "11GB", + "digest": "f4ebaabdbf39", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphincoder:15b-starcoder2-q6_K", + "name": "dolphincoder:15b-starcoder2-q6_K", + "description": "A 7B and 15B uncensored variant of the Dolphin model family that excels at coding, based on StarCoder2.", + "size": "13GB", + "digest": "7f4177c2ad67", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphincoder:15b-starcoder2-q8_0", + "name": "dolphincoder:15b-starcoder2-q8_0", + "description": "A 7B and 15B uncensored variant of the Dolphin model family that excels at coding, based on StarCoder2.", + "size": "17GB", + "digest": "a0693c917630", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphincoder:7b-starcoder2", + "name": "dolphincoder:7b-starcoder2", + "description": "A 7B and 15B uncensored variant of the Dolphin model family that excels at coding, based on StarCoder2.", + "size": "4.2GB", + "digest": "677555f1f316", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphincoder:7b-starcoder2-fp16", + "name": "dolphincoder:7b-starcoder2-fp16", + "description": "A 7B and 15B uncensored variant of the Dolphin model family that excels at coding, based on StarCoder2.", + "size": "15GB", + "digest": "59be24ed28ca", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphincoder:7b-starcoder2-q2_K", + "name": "dolphincoder:7b-starcoder2-q2_K", + "description": "A 7B and 15B uncensored variant of the Dolphin model family that excels at coding, based on StarCoder2.", + "size": "2.9GB", + "digest": "fb0129d225aa", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphincoder:7b-starcoder2-q3_K_L", + "name": "dolphincoder:7b-starcoder2-q3_K_L", + "description": "A 7B and 15B uncensored variant of the Dolphin model family that excels at coding, based on StarCoder2.", + "size": "4.2GB", + "digest": "a8319e4b88e3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphincoder:7b-starcoder2-q3_K_M", + "name": "dolphincoder:7b-starcoder2-q3_K_M", + "description": "A 7B and 15B uncensored variant of the Dolphin model family that excels at coding, based on StarCoder2.", + "size": "3.8GB", + "digest": "3e450ded039a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphincoder:7b-starcoder2-q3_K_S", + "name": "dolphincoder:7b-starcoder2-q3_K_S", + "description": "A 7B and 15B uncensored variant of the Dolphin model family that excels at coding, based on StarCoder2.", + "size": "3.3GB", + "digest": "e97ee0126684", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphincoder:7b-starcoder2-q4_0", + "name": "dolphincoder:7b-starcoder2-q4_0", + "description": "A 7B and 15B uncensored variant of the Dolphin model family that excels at coding, based on StarCoder2.", + "size": "4.2GB", + "digest": "677555f1f316", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphincoder:7b-starcoder2-q4_1", + "name": "dolphincoder:7b-starcoder2-q4_1", + "description": "A 7B and 15B uncensored variant of the Dolphin model family that excels at coding, based on StarCoder2.", + "size": "4.7GB", + "digest": "659db57b0269", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphincoder:7b-starcoder2-q4_K_M", + "name": "dolphincoder:7b-starcoder2-q4_K_M", + "description": "A 7B and 15B uncensored variant of the Dolphin model family that excels at coding, based on StarCoder2.", + "size": "4.6GB", + "digest": "547e49183386", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphincoder:7b-starcoder2-q4_K_S", + "name": "dolphincoder:7b-starcoder2-q4_K_S", + "description": "A 7B and 15B uncensored variant of the Dolphin model family that excels at coding, based on StarCoder2.", + "size": "4.3GB", + "digest": "0d50809844f2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphincoder:7b-starcoder2-q5_0", + "name": "dolphincoder:7b-starcoder2-q5_0", + "description": "A 7B and 15B uncensored variant of the Dolphin model family that excels at coding, based on StarCoder2.", + "size": "5.1GB", + "digest": "c83c1feb4d92", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphincoder:7b-starcoder2-q5_1", + "name": "dolphincoder:7b-starcoder2-q5_1", + "description": "A 7B and 15B uncensored variant of the Dolphin model family that excels at coding, based on StarCoder2.", + "size": "5.6GB", + "digest": "4f0f2eb0effb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphincoder:7b-starcoder2-q5_K_M", + "name": "dolphincoder:7b-starcoder2-q5_K_M", + "description": "A 7B and 15B uncensored variant of the Dolphin model family that excels at coding, based on StarCoder2.", + "size": "5.3GB", + "digest": "c44956298761", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphincoder:7b-starcoder2-q5_K_S", + "name": "dolphincoder:7b-starcoder2-q5_K_S", + "description": "A 7B and 15B uncensored variant of the Dolphin model family that excels at coding, based on StarCoder2.", + "size": "5.1GB", + "digest": "4566628e5196", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphincoder:7b-starcoder2-q6_K", + "name": "dolphincoder:7b-starcoder2-q6_K", + "description": "A 7B and 15B uncensored variant of the Dolphin model family that excels at coding, based on StarCoder2.", + "size": "6.1GB", + "digest": "fd5972ba8500", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphincoder:7b-starcoder2-q8_0", + "name": "dolphincoder:7b-starcoder2-q8_0", + "description": "A 7B and 15B uncensored variant of the Dolphin model family that excels at coding, based on StarCoder2.", + "size": "7.9GB", + "digest": "21c985c7feb0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes", + "name": "nous-hermes", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "3.8GB", + "digest": "4bfb8ab0bd02", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "nous-hermes:7b", + "name": "nous-hermes:7b", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "3.8GB", + "digest": "4bfb8ab0bd02", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:13b", + "name": "nous-hermes:13b", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "7.4GB", + "digest": "e6251854aa4c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:13b-fp16", + "name": "nous-hermes:13b-fp16", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "26GB", + "digest": "83e200dff28c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:13b-llama2", + "name": "nous-hermes:13b-llama2", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "7.4GB", + "digest": "e6251854aa4c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:13b-llama2-fp16", + "name": "nous-hermes:13b-llama2-fp16", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "26GB", + "digest": "0e2f44eb0773", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:13b-llama2-q2_K", + "name": "nous-hermes:13b-llama2-q2_K", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "5.4GB", + "digest": "351d072134ee", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:13b-llama2-q3_K_L", + "name": "nous-hermes:13b-llama2-q3_K_L", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "6.9GB", + "digest": "55510b4db076", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:13b-llama2-q3_K_M", + "name": "nous-hermes:13b-llama2-q3_K_M", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "6.3GB", + "digest": "ed2a0543a4f2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:13b-llama2-q3_K_S", + "name": "nous-hermes:13b-llama2-q3_K_S", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "5.7GB", + "digest": "12fcbf2adcd7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:13b-llama2-q4_0", + "name": "nous-hermes:13b-llama2-q4_0", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "7.4GB", + "digest": "e6251854aa4c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:13b-llama2-q4_1", + "name": "nous-hermes:13b-llama2-q4_1", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "8.2GB", + "digest": "52cf8c8c1f43", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:13b-llama2-q4_K_M", + "name": "nous-hermes:13b-llama2-q4_K_M", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "7.9GB", + "digest": "2baf9b8ebbbc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:13b-llama2-q4_K_S", + "name": "nous-hermes:13b-llama2-q4_K_S", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "7.4GB", + "digest": "26f1237d26d7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:13b-llama2-q5_0", + "name": "nous-hermes:13b-llama2-q5_0", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "9.0GB", + "digest": "aa60531ab05e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:13b-llama2-q5_1", + "name": "nous-hermes:13b-llama2-q5_1", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "9.8GB", + "digest": "301d1bce8506", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:13b-llama2-q5_K_M", + "name": "nous-hermes:13b-llama2-q5_K_M", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "9.2GB", + "digest": "f712a98ac03c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:13b-llama2-q5_K_S", + "name": "nous-hermes:13b-llama2-q5_K_S", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "9.0GB", + "digest": "499c44fdcbf9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:13b-llama2-q6_K", + "name": "nous-hermes:13b-llama2-q6_K", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "11GB", + "digest": "eedd114c4d95", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:13b-llama2-q8_0", + "name": "nous-hermes:13b-llama2-q8_0", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "14GB", + "digest": "7c6c80693fd9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:13b-q2_K", + "name": "nous-hermes:13b-q2_K", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "5.4GB", + "digest": "5049c9c4bc2a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:13b-q3_K_L", + "name": "nous-hermes:13b-q3_K_L", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "6.9GB", + "digest": "da82ae0a2f34", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:13b-q3_K_M", + "name": "nous-hermes:13b-q3_K_M", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "6.3GB", + "digest": "541fa538fcc0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:13b-q3_K_S", + "name": "nous-hermes:13b-q3_K_S", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "5.7GB", + "digest": "88a44838868d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:13b-q4_0", + "name": "nous-hermes:13b-q4_0", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "7.4GB", + "digest": "61fe5b2ccd82", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:13b-q4_1", + "name": "nous-hermes:13b-q4_1", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "8.2GB", + "digest": "a651d3847eac", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:13b-q4_K_M", + "name": "nous-hermes:13b-q4_K_M", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "7.9GB", + "digest": "a89c261261df", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:13b-q4_K_S", + "name": "nous-hermes:13b-q4_K_S", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "7.4GB", + "digest": "dfdcc8b0cb9b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:13b-q5_0", + "name": "nous-hermes:13b-q5_0", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "9.0GB", + "digest": "eeb742832a51", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:13b-q5_1", + "name": "nous-hermes:13b-q5_1", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "9.8GB", + "digest": "038fe176c480", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:13b-q5_K_M", + "name": "nous-hermes:13b-q5_K_M", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "9.2GB", + "digest": "00a91bb87bab", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:13b-q5_K_S", + "name": "nous-hermes:13b-q5_K_S", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "9.0GB", + "digest": "9168dcc08386", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:13b-q6_K", + "name": "nous-hermes:13b-q6_K", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "11GB", + "digest": "d13a63be6cce", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:13b-q8_0", + "name": "nous-hermes:13b-q8_0", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "14GB", + "digest": "46d4bb81ee05", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:70b-llama2-fp16", + "name": "nous-hermes:70b-llama2-fp16", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "138GB", + "digest": "1da6e95d6cea", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:70b-llama2-q2_K", + "name": "nous-hermes:70b-llama2-q2_K", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "29GB", + "digest": "9c6cf2f685c9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:70b-llama2-q3_K_L", + "name": "nous-hermes:70b-llama2-q3_K_L", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "36GB", + "digest": "c872f2a366df", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:70b-llama2-q3_K_M", + "name": "nous-hermes:70b-llama2-q3_K_M", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "33GB", + "digest": "32c31c64cdbf", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:70b-llama2-q3_K_S", + "name": "nous-hermes:70b-llama2-q3_K_S", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "30GB", + "digest": "18e62dbb016a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:70b-llama2-q4_0", + "name": "nous-hermes:70b-llama2-q4_0", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "39GB", + "digest": "cadbb9c53eca", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:70b-llama2-q4_1", + "name": "nous-hermes:70b-llama2-q4_1", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "43GB", + "digest": "440fbf2182c3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:70b-llama2-q4_K_M", + "name": "nous-hermes:70b-llama2-q4_K_M", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "41GB", + "digest": "21314c236bdf", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:70b-llama2-q4_K_S", + "name": "nous-hermes:70b-llama2-q4_K_S", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "39GB", + "digest": "12421faf08d0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:70b-llama2-q5_0", + "name": "nous-hermes:70b-llama2-q5_0", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "47GB", + "digest": "122da3aab28d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:70b-llama2-q5_1", + "name": "nous-hermes:70b-llama2-q5_1", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "52GB", + "digest": "b654542cc786", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:70b-llama2-q5_K_M", + "name": "nous-hermes:70b-llama2-q5_K_M", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "49GB", + "digest": "7add3f814c3c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:70b-llama2-q6_K", + "name": "nous-hermes:70b-llama2-q6_K", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "57GB", + "digest": "110cec2e283d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:7b-llama2", + "name": "nous-hermes:7b-llama2", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "3.8GB", + "digest": "4bfb8ab0bd02", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:7b-llama2-fp16", + "name": "nous-hermes:7b-llama2-fp16", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "13GB", + "digest": "38afafe3e533", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:7b-llama2-q2_K", + "name": "nous-hermes:7b-llama2-q2_K", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "2.8GB", + "digest": "4968fef8e8b9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:7b-llama2-q3_K_L", + "name": "nous-hermes:7b-llama2-q3_K_L", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "3.6GB", + "digest": "e6a435b97b57", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:7b-llama2-q3_K_M", + "name": "nous-hermes:7b-llama2-q3_K_M", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "3.3GB", + "digest": "70cf80e138af", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:7b-llama2-q3_K_S", + "name": "nous-hermes:7b-llama2-q3_K_S", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "2.9GB", + "digest": "5969474f335c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:7b-llama2-q4_0", + "name": "nous-hermes:7b-llama2-q4_0", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "3.8GB", + "digest": "4bfb8ab0bd02", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:7b-llama2-q4_1", + "name": "nous-hermes:7b-llama2-q4_1", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "4.2GB", + "digest": "52cda9e6f6da", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:7b-llama2-q4_K_M", + "name": "nous-hermes:7b-llama2-q4_K_M", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "4.1GB", + "digest": "ab3cdd3e85cd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:7b-llama2-q4_K_S", + "name": "nous-hermes:7b-llama2-q4_K_S", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "3.9GB", + "digest": "8040a0492349", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:7b-llama2-q5_0", + "name": "nous-hermes:7b-llama2-q5_0", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "4.7GB", + "digest": "c6a3388bcc53", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:7b-llama2-q5_1", + "name": "nous-hermes:7b-llama2-q5_1", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "5.1GB", + "digest": "3c0e1768c975", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:7b-llama2-q5_K_M", + "name": "nous-hermes:7b-llama2-q5_K_M", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "4.8GB", + "digest": "177be89aeec9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:7b-llama2-q5_K_S", + "name": "nous-hermes:7b-llama2-q5_K_S", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "4.7GB", + "digest": "2b05878efeb9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:7b-llama2-q6_K", + "name": "nous-hermes:7b-llama2-q6_K", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "5.5GB", + "digest": "e9913ad528c9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes:7b-llama2-q8_0", + "name": "nous-hermes:7b-llama2-q8_0", + "description": "General use models based on Llama and Llama 2 from Nous Research.", + "size": "7.2GB", + "digest": "a512e84c0ad5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "olmo2", + "name": "olmo2", + "description": "OLMo 2 is a new family of 7B and 13B models trained on up to 5T tokens. These models are on par with or better than equivalently sized fully open models, and competitive with open-weight models such as Llama 3.1 on English academic benchmarks.", + "size": "4.5GB", + "digest": "4208d3b406db", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "olmo2:7b", + "name": "olmo2:7b", + "description": "OLMo 2 is a new family of 7B and 13B models trained on up to 5T tokens. These models are on par with or better than equivalently sized fully open models, and competitive with open-weight models such as Llama 3.1 on English academic benchmarks.", + "size": "4.5GB", + "digest": "4208d3b406db", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "olmo2:13b", + "name": "olmo2:13b", + "description": "OLMo 2 is a new family of 7B and 13B models trained on up to 5T tokens. These models are on par with or better than equivalently sized fully open models, and competitive with open-weight models such as Llama 3.1 on English academic benchmarks.", + "size": "8.4GB", + "digest": "6c279ebc980f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "olmo2:13b-1124-instruct-fp16", + "name": "olmo2:13b-1124-instruct-fp16", + "description": "OLMo 2 is a new family of 7B and 13B models trained on up to 5T tokens. These models are on par with or better than equivalently sized fully open models, and competitive with open-weight models such as Llama 3.1 on English academic benchmarks.", + "size": "27GB", + "digest": "c5cd17f69ca0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "olmo2:13b-1124-instruct-q4_K_M", + "name": "olmo2:13b-1124-instruct-q4_K_M", + "description": "OLMo 2 is a new family of 7B and 13B models trained on up to 5T tokens. These models are on par with or better than equivalently sized fully open models, and competitive with open-weight models such as Llama 3.1 on English academic benchmarks.", + "size": "8.4GB", + "digest": "6c279ebc980f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "olmo2:13b-1124-instruct-q8_0", + "name": "olmo2:13b-1124-instruct-q8_0", + "description": "OLMo 2 is a new family of 7B and 13B models trained on up to 5T tokens. These models are on par with or better than equivalently sized fully open models, and competitive with open-weight models such as Llama 3.1 on English academic benchmarks.", + "size": "15GB", + "digest": "54d0ec72e884", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "olmo2:7b-1124-instruct-fp16", + "name": "olmo2:7b-1124-instruct-fp16", + "description": "OLMo 2 is a new family of 7B and 13B models trained on up to 5T tokens. These models are on par with or better than equivalently sized fully open models, and competitive with open-weight models such as Llama 3.1 on English academic benchmarks.", + "size": "15GB", + "digest": "fa483f2d5cc7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "olmo2:7b-1124-instruct-q4_K_M", + "name": "olmo2:7b-1124-instruct-q4_K_M", + "description": "OLMo 2 is a new family of 7B and 13B models trained on up to 5T tokens. These models are on par with or better than equivalently sized fully open models, and competitive with open-weight models such as Llama 3.1 on English academic benchmarks.", + "size": "4.5GB", + "digest": "4208d3b406db", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "olmo2:7b-1124-instruct-q8_0", + "name": "olmo2:7b-1124-instruct-q8_0", + "description": "OLMo 2 is a new family of 7B and 13B models trained on up to 5T tokens. These models are on par with or better than equivalently sized fully open models, and competitive with open-weight models such as Llama 3.1 on English academic benchmarks.", + "size": "7.8GB", + "digest": "e75d0b293717", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phind-codellama", + "name": "phind-codellama", + "description": "Code generation model based on Code Llama.", + "size": "19GB", + "digest": "566e1b629c44", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "phind-codellama:34b", + "name": "phind-codellama:34b", + "description": "Code generation model based on Code Llama.", + "size": "19GB", + "digest": "566e1b629c44", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phind-codellama:34b-fp16", + "name": "phind-codellama:34b-fp16", + "description": "Code generation model based on Code Llama.", + "size": "67GB", + "digest": "d0ddded66c14", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phind-codellama:34b-python", + "name": "phind-codellama:34b-python", + "description": "Code generation model based on Code Llama.", + "size": "19GB", + "digest": "bec19e8c92a4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phind-codellama:34b-python-fp16", + "name": "phind-codellama:34b-python-fp16", + "description": "Code generation model based on Code Llama.", + "size": "67GB", + "digest": "ccb9074a8061", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phind-codellama:34b-python-q2_K", + "name": "phind-codellama:34b-python-q2_K", + "description": "Code generation model based on Code Llama.", + "size": "14GB", + "digest": "ec960206aec5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phind-codellama:34b-python-q3_K_L", + "name": "phind-codellama:34b-python-q3_K_L", + "description": "Code generation model based on Code Llama.", + "size": "18GB", + "digest": "3f3a01944dd3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phind-codellama:34b-python-q3_K_M", + "name": "phind-codellama:34b-python-q3_K_M", + "description": "Code generation model based on Code Llama.", + "size": "16GB", + "digest": "2fdf965466dc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phind-codellama:34b-python-q3_K_S", + "name": "phind-codellama:34b-python-q3_K_S", + "description": "Code generation model based on Code Llama.", + "size": "15GB", + "digest": "c3824169defc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phind-codellama:34b-python-q4_0", + "name": "phind-codellama:34b-python-q4_0", + "description": "Code generation model based on Code Llama.", + "size": "19GB", + "digest": "bec19e8c92a4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phind-codellama:34b-python-q4_1", + "name": "phind-codellama:34b-python-q4_1", + "description": "Code generation model based on Code Llama.", + "size": "21GB", + "digest": "1e799451044b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phind-codellama:34b-python-q4_K_M", + "name": "phind-codellama:34b-python-q4_K_M", + "description": "Code generation model based on Code Llama.", + "size": "20GB", + "digest": "9db39448a8ce", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phind-codellama:34b-python-q4_K_S", + "name": "phind-codellama:34b-python-q4_K_S", + "description": "Code generation model based on Code Llama.", + "size": "19GB", + "digest": "93eea7c40d0a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phind-codellama:34b-python-q5_0", + "name": "phind-codellama:34b-python-q5_0", + "description": "Code generation model based on Code Llama.", + "size": "23GB", + "digest": "cf6a273569bd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phind-codellama:34b-python-q5_1", + "name": "phind-codellama:34b-python-q5_1", + "description": "Code generation model based on Code Llama.", + "size": "25GB", + "digest": "360441d0c9a7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phind-codellama:34b-python-q5_K_M", + "name": "phind-codellama:34b-python-q5_K_M", + "description": "Code generation model based on Code Llama.", + "size": "24GB", + "digest": "29b239cdf720", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phind-codellama:34b-python-q5_K_S", + "name": "phind-codellama:34b-python-q5_K_S", + "description": "Code generation model based on Code Llama.", + "size": "23GB", + "digest": "c6e28b3d23b5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phind-codellama:34b-python-q6_K", + "name": "phind-codellama:34b-python-q6_K", + "description": "Code generation model based on Code Llama.", + "size": "28GB", + "digest": "947f17e83d4f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phind-codellama:34b-python-q8_0", + "name": "phind-codellama:34b-python-q8_0", + "description": "Code generation model based on Code Llama.", + "size": "36GB", + "digest": "29b33e343713", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phind-codellama:34b-q2_K", + "name": "phind-codellama:34b-q2_K", + "description": "Code generation model based on Code Llama.", + "size": "14GB", + "digest": "28dc02b3983c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phind-codellama:34b-q3_K_L", + "name": "phind-codellama:34b-q3_K_L", + "description": "Code generation model based on Code Llama.", + "size": "18GB", + "digest": "900695f5a6da", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phind-codellama:34b-q3_K_M", + "name": "phind-codellama:34b-q3_K_M", + "description": "Code generation model based on Code Llama.", + "size": "16GB", + "digest": "dab76ba3bf38", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phind-codellama:34b-q3_K_S", + "name": "phind-codellama:34b-q3_K_S", + "description": "Code generation model based on Code Llama.", + "size": "15GB", + "digest": "a6d5f0d91c7c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phind-codellama:34b-q4_0", + "name": "phind-codellama:34b-q4_0", + "description": "Code generation model based on Code Llama.", + "size": "19GB", + "digest": "b9d92fb9d11a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phind-codellama:34b-q4_1", + "name": "phind-codellama:34b-q4_1", + "description": "Code generation model based on Code Llama.", + "size": "21GB", + "digest": "cb1cb323ea8d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phind-codellama:34b-q4_K_M", + "name": "phind-codellama:34b-q4_K_M", + "description": "Code generation model based on Code Llama.", + "size": "20GB", + "digest": "7ba4e94413d0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phind-codellama:34b-q4_K_S", + "name": "phind-codellama:34b-q4_K_S", + "description": "Code generation model based on Code Llama.", + "size": "19GB", + "digest": "d47ea0524c33", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phind-codellama:34b-q5_0", + "name": "phind-codellama:34b-q5_0", + "description": "Code generation model based on Code Llama.", + "size": "23GB", + "digest": "bd2544a8a868", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phind-codellama:34b-q5_1", + "name": "phind-codellama:34b-q5_1", + "description": "Code generation model based on Code Llama.", + "size": "25GB", + "digest": "7a3d95330e66", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phind-codellama:34b-q5_K_M", + "name": "phind-codellama:34b-q5_K_M", + "description": "Code generation model based on Code Llama.", + "size": "24GB", + "digest": "bcfdda4b8adc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phind-codellama:34b-q5_K_S", + "name": "phind-codellama:34b-q5_K_S", + "description": "Code generation model based on Code Llama.", + "size": "23GB", + "digest": "3160eec253d1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phind-codellama:34b-q6_K", + "name": "phind-codellama:34b-q6_K", + "description": "Code generation model based on Code Llama.", + "size": "28GB", + "digest": "2a9dd324831c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phind-codellama:34b-q8_0", + "name": "phind-codellama:34b-q8_0", + "description": "Code generation model based on Code Llama.", + "size": "36GB", + "digest": "ffad854916fa", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phind-codellama:34b-v2", + "name": "phind-codellama:34b-v2", + "description": "Code generation model based on Code Llama.", + "size": "19GB", + "digest": "566e1b629c44", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phind-codellama:34b-v2-fp16", + "name": "phind-codellama:34b-v2-fp16", + "description": "Code generation model based on Code Llama.", + "size": "67GB", + "digest": "f625b25bd3f0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phind-codellama:34b-v2-q2_K", + "name": "phind-codellama:34b-v2-q2_K", + "description": "Code generation model based on Code Llama.", + "size": "14GB", + "digest": "b8f09c086e17", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phind-codellama:34b-v2-q3_K_L", + "name": "phind-codellama:34b-v2-q3_K_L", + "description": "Code generation model based on Code Llama.", + "size": "18GB", + "digest": "1cbabad8eaf0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phind-codellama:34b-v2-q3_K_M", + "name": "phind-codellama:34b-v2-q3_K_M", + "description": "Code generation model based on Code Llama.", + "size": "16GB", + "digest": "c7405152b04e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phind-codellama:34b-v2-q3_K_S", + "name": "phind-codellama:34b-v2-q3_K_S", + "description": "Code generation model based on Code Llama.", + "size": "15GB", + "digest": "a199982685d4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phind-codellama:34b-v2-q4_0", + "name": "phind-codellama:34b-v2-q4_0", + "description": "Code generation model based on Code Llama.", + "size": "19GB", + "digest": "566e1b629c44", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phind-codellama:34b-v2-q4_1", + "name": "phind-codellama:34b-v2-q4_1", + "description": "Code generation model based on Code Llama.", + "size": "21GB", + "digest": "5501c45c64ca", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phind-codellama:34b-v2-q4_K_M", + "name": "phind-codellama:34b-v2-q4_K_M", + "description": "Code generation model based on Code Llama.", + "size": "20GB", + "digest": "054af98f0f54", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phind-codellama:34b-v2-q4_K_S", + "name": "phind-codellama:34b-v2-q4_K_S", + "description": "Code generation model based on Code Llama.", + "size": "19GB", + "digest": "0e53590617a2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phind-codellama:34b-v2-q5_0", + "name": "phind-codellama:34b-v2-q5_0", + "description": "Code generation model based on Code Llama.", + "size": "23GB", + "digest": "6f980beef3c6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phind-codellama:34b-v2-q5_1", + "name": "phind-codellama:34b-v2-q5_1", + "description": "Code generation model based on Code Llama.", + "size": "25GB", + "digest": "dd20f2f822e3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phind-codellama:34b-v2-q5_K_M", + "name": "phind-codellama:34b-v2-q5_K_M", + "description": "Code generation model based on Code Llama.", + "size": "24GB", + "digest": "eb9f2c7a1c66", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phind-codellama:34b-v2-q5_K_S", + "name": "phind-codellama:34b-v2-q5_K_S", + "description": "Code generation model based on Code Llama.", + "size": "23GB", + "digest": "9869afbcdbc2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phind-codellama:34b-v2-q6_K", + "name": "phind-codellama:34b-v2-q6_K", + "description": "Code generation model based on Code Llama.", + "size": "28GB", + "digest": "c8e2f15ce087", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "phind-codellama:34b-v2-q8_0", + "name": "phind-codellama:34b-v2-q8_0", + "description": "Code generation model based on Code Llama.", + "size": "36GB", + "digest": "b6329a948210", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2", + "name": "yarn-llama2", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "3.8GB", + "digest": "75df67be3cee", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "yarn-llama2:7b", + "name": "yarn-llama2:7b", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "3.8GB", + "digest": "75df67be3cee", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:13b", + "name": "yarn-llama2:13b", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "7.4GB", + "digest": "8a0a518f30c5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:13b-128k", + "name": "yarn-llama2:13b-128k", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "7.4GB", + "digest": "312277e27d21", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:13b-128k-fp16", + "name": "yarn-llama2:13b-128k-fp16", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "26GB", + "digest": "eecf1bcd524a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:13b-128k-q2_K", + "name": "yarn-llama2:13b-128k-q2_K", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "5.4GB", + "digest": "00e51f24ad67", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:13b-128k-q3_K_L", + "name": "yarn-llama2:13b-128k-q3_K_L", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "6.9GB", + "digest": "7e92cb79ad6f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:13b-128k-q3_K_M", + "name": "yarn-llama2:13b-128k-q3_K_M", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "6.3GB", + "digest": "b5b98d8650ab", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:13b-128k-q3_K_S", + "name": "yarn-llama2:13b-128k-q3_K_S", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "5.7GB", + "digest": "c753ad94de2e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:13b-128k-q4_0", + "name": "yarn-llama2:13b-128k-q4_0", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "7.4GB", + "digest": "312277e27d21", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:13b-128k-q4_1", + "name": "yarn-llama2:13b-128k-q4_1", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "8.2GB", + "digest": "1952ac7b3231", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:13b-128k-q4_K_M", + "name": "yarn-llama2:13b-128k-q4_K_M", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "7.9GB", + "digest": "df02b797c5aa", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:13b-128k-q4_K_S", + "name": "yarn-llama2:13b-128k-q4_K_S", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "7.4GB", + "digest": "b2ffe41a638b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:13b-128k-q5_0", + "name": "yarn-llama2:13b-128k-q5_0", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "9.0GB", + "digest": "dc65f2b65862", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:13b-128k-q5_1", + "name": "yarn-llama2:13b-128k-q5_1", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "9.8GB", + "digest": "7e02f3ba0b14", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:13b-128k-q5_K_M", + "name": "yarn-llama2:13b-128k-q5_K_M", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "9.2GB", + "digest": "6c618202668d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:13b-128k-q5_K_S", + "name": "yarn-llama2:13b-128k-q5_K_S", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "9.0GB", + "digest": "effbf903f606", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:13b-128k-q6_K", + "name": "yarn-llama2:13b-128k-q6_K", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "11GB", + "digest": "311e2194fa2a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:13b-128k-q8_0", + "name": "yarn-llama2:13b-128k-q8_0", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "14GB", + "digest": "c1cec788ae55", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:13b-64k", + "name": "yarn-llama2:13b-64k", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "7.4GB", + "digest": "8a0a518f30c5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:13b-64k-fp16", + "name": "yarn-llama2:13b-64k-fp16", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "26GB", + "digest": "8863e4eab466", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:13b-64k-q2_K", + "name": "yarn-llama2:13b-64k-q2_K", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "5.4GB", + "digest": "0afb4364db77", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:13b-64k-q3_K_L", + "name": "yarn-llama2:13b-64k-q3_K_L", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "6.9GB", + "digest": "be418e37797b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:13b-64k-q3_K_M", + "name": "yarn-llama2:13b-64k-q3_K_M", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "6.3GB", + "digest": "ec22dd2cb7ac", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:13b-64k-q3_K_S", + "name": "yarn-llama2:13b-64k-q3_K_S", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "5.7GB", + "digest": "37ef3189742b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:13b-64k-q4_0", + "name": "yarn-llama2:13b-64k-q4_0", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "7.4GB", + "digest": "8a0a518f30c5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:13b-64k-q4_1", + "name": "yarn-llama2:13b-64k-q4_1", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "8.2GB", + "digest": "4204c4116efc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:13b-64k-q4_K_M", + "name": "yarn-llama2:13b-64k-q4_K_M", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "7.9GB", + "digest": "48fbabc18e03", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:13b-64k-q4_K_S", + "name": "yarn-llama2:13b-64k-q4_K_S", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "7.4GB", + "digest": "183a14c4be4d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:13b-64k-q5_0", + "name": "yarn-llama2:13b-64k-q5_0", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "9.0GB", + "digest": "506dd60df468", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:13b-64k-q5_1", + "name": "yarn-llama2:13b-64k-q5_1", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "9.8GB", + "digest": "d6fe4567c627", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:13b-64k-q5_K_M", + "name": "yarn-llama2:13b-64k-q5_K_M", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "9.2GB", + "digest": "0cdae1412098", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:13b-64k-q5_K_S", + "name": "yarn-llama2:13b-64k-q5_K_S", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "9.0GB", + "digest": "91f3cccd9580", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:13b-64k-q6_K", + "name": "yarn-llama2:13b-64k-q6_K", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "11GB", + "digest": "df2074aaebe3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:13b-64k-q8_0", + "name": "yarn-llama2:13b-64k-q8_0", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "14GB", + "digest": "adbdaa2e0f7a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:7b-128k", + "name": "yarn-llama2:7b-128k", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "3.8GB", + "digest": "9fc4f0e902e7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:7b-128k-fp16", + "name": "yarn-llama2:7b-128k-fp16", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "13GB", + "digest": "4516a999c8ea", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:7b-128k-q2_K", + "name": "yarn-llama2:7b-128k-q2_K", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "2.8GB", + "digest": "cdf8cc638505", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:7b-128k-q3_K_L", + "name": "yarn-llama2:7b-128k-q3_K_L", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "3.6GB", + "digest": "aaabf5006e38", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:7b-128k-q3_K_M", + "name": "yarn-llama2:7b-128k-q3_K_M", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "3.3GB", + "digest": "45336ee1f0a9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:7b-128k-q3_K_S", + "name": "yarn-llama2:7b-128k-q3_K_S", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "2.9GB", + "digest": "530c82d4467e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:7b-128k-q4_0", + "name": "yarn-llama2:7b-128k-q4_0", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "3.8GB", + "digest": "9fc4f0e902e7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:7b-128k-q4_1", + "name": "yarn-llama2:7b-128k-q4_1", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "4.2GB", + "digest": "f2a3da69d205", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:7b-128k-q4_K_M", + "name": "yarn-llama2:7b-128k-q4_K_M", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "4.1GB", + "digest": "3d161bdec11d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:7b-128k-q4_K_S", + "name": "yarn-llama2:7b-128k-q4_K_S", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "3.9GB", + "digest": "cc95e37e566a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:7b-128k-q5_0", + "name": "yarn-llama2:7b-128k-q5_0", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "4.7GB", + "digest": "1b73590983c7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:7b-128k-q5_1", + "name": "yarn-llama2:7b-128k-q5_1", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "5.1GB", + "digest": "6f754622c8a4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:7b-128k-q5_K_M", + "name": "yarn-llama2:7b-128k-q5_K_M", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "4.8GB", + "digest": "68bdf2550ed6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:7b-128k-q5_K_S", + "name": "yarn-llama2:7b-128k-q5_K_S", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "4.7GB", + "digest": "e0f8b2069f93", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:7b-128k-q6_K", + "name": "yarn-llama2:7b-128k-q6_K", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "5.5GB", + "digest": "aaf047ee8cc4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:7b-128k-q8_0", + "name": "yarn-llama2:7b-128k-q8_0", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "7.2GB", + "digest": "46e9636b6006", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:7b-64k", + "name": "yarn-llama2:7b-64k", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "3.8GB", + "digest": "75df67be3cee", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:7b-64k-fp16", + "name": "yarn-llama2:7b-64k-fp16", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "13GB", + "digest": "cf9cd5b25466", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:7b-64k-q2_K", + "name": "yarn-llama2:7b-64k-q2_K", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "2.8GB", + "digest": "5a72b555332e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:7b-64k-q3_K_L", + "name": "yarn-llama2:7b-64k-q3_K_L", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "3.6GB", + "digest": "fc7635aa06a7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:7b-64k-q3_K_M", + "name": "yarn-llama2:7b-64k-q3_K_M", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "3.3GB", + "digest": "bb367368ddd7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:7b-64k-q3_K_S", + "name": "yarn-llama2:7b-64k-q3_K_S", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "2.9GB", + "digest": "f1c57a39811e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:7b-64k-q4_0", + "name": "yarn-llama2:7b-64k-q4_0", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "3.8GB", + "digest": "75df67be3cee", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:7b-64k-q4_1", + "name": "yarn-llama2:7b-64k-q4_1", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "4.2GB", + "digest": "bdfb6c5a3e9b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:7b-64k-q4_K_M", + "name": "yarn-llama2:7b-64k-q4_K_M", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "4.1GB", + "digest": "76f2052b357c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:7b-64k-q4_K_S", + "name": "yarn-llama2:7b-64k-q4_K_S", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "3.9GB", + "digest": "1b8985d3a359", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:7b-64k-q5_0", + "name": "yarn-llama2:7b-64k-q5_0", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "4.7GB", + "digest": "b453cc4f3d00", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:7b-64k-q5_1", + "name": "yarn-llama2:7b-64k-q5_1", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "5.1GB", + "digest": "297d4906eee3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:7b-64k-q5_K_M", + "name": "yarn-llama2:7b-64k-q5_K_M", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "4.8GB", + "digest": "cec9e8d58901", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:7b-64k-q5_K_S", + "name": "yarn-llama2:7b-64k-q5_K_S", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "4.7GB", + "digest": "a8f6f4ceeeda", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:7b-64k-q6_K", + "name": "yarn-llama2:7b-64k-q6_K", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "5.5GB", + "digest": "f583cc04b87c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-llama2:7b-64k-q8_0", + "name": "yarn-llama2:7b-64k-q8_0", + "description": "An extension of Llama 2 that supports a context of up to 128k tokens.", + "size": "7.2GB", + "digest": "59d75ca11360", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "solar", + "name": "solar", + "description": "A compact, yet powerful 10.7B large language model designed for single-turn conversation.", + "size": "6.1GB", + "digest": "059fdabbe6e6", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "solar:10.7b", + "name": "solar:10.7b", + "description": "A compact, yet powerful 10.7B large language model designed for single-turn conversation.", + "size": "6.1GB", + "digest": "059fdabbe6e6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "solar:10.7b-instruct-v1-fp16", + "name": "solar:10.7b-instruct-v1-fp16", + "description": "A compact, yet powerful 10.7B large language model designed for single-turn conversation.", + "size": "21GB", + "digest": "4077d1b80ff9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "solar:10.7b-instruct-v1-q2_K", + "name": "solar:10.7b-instruct-v1-q2_K", + "description": "A compact, yet powerful 10.7B large language model designed for single-turn conversation.", + "size": "4.5GB", + "digest": "ab2e179699c4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "solar:10.7b-instruct-v1-q3_K_L", + "name": "solar:10.7b-instruct-v1-q3_K_L", + "description": "A compact, yet powerful 10.7B large language model designed for single-turn conversation.", + "size": "5.7GB", + "digest": "0a355ec26cd8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "solar:10.7b-instruct-v1-q3_K_M", + "name": "solar:10.7b-instruct-v1-q3_K_M", + "description": "A compact, yet powerful 10.7B large language model designed for single-turn conversation.", + "size": "5.2GB", + "digest": "f0e8a58869f4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "solar:10.7b-instruct-v1-q3_K_S", + "name": "solar:10.7b-instruct-v1-q3_K_S", + "description": "A compact, yet powerful 10.7B large language model designed for single-turn conversation.", + "size": "4.7GB", + "digest": "7391d81b0fb4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "solar:10.7b-instruct-v1-q4_0", + "name": "solar:10.7b-instruct-v1-q4_0", + "description": "A compact, yet powerful 10.7B large language model designed for single-turn conversation.", + "size": "6.1GB", + "digest": "059fdabbe6e6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "solar:10.7b-instruct-v1-q4_1", + "name": "solar:10.7b-instruct-v1-q4_1", + "description": "A compact, yet powerful 10.7B large language model designed for single-turn conversation.", + "size": "6.7GB", + "digest": "7b00d6f32cd3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "solar:10.7b-instruct-v1-q4_K_M", + "name": "solar:10.7b-instruct-v1-q4_K_M", + "description": "A compact, yet powerful 10.7B large language model designed for single-turn conversation.", + "size": "6.5GB", + "digest": "6aff41700b63", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "solar:10.7b-instruct-v1-q4_K_S", + "name": "solar:10.7b-instruct-v1-q4_K_S", + "description": "A compact, yet powerful 10.7B large language model designed for single-turn conversation.", + "size": "6.1GB", + "digest": "7e7394f2f53e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "solar:10.7b-instruct-v1-q5_0", + "name": "solar:10.7b-instruct-v1-q5_0", + "description": "A compact, yet powerful 10.7B large language model designed for single-turn conversation.", + "size": "7.4GB", + "digest": "0809603061fa", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "solar:10.7b-instruct-v1-q5_1", + "name": "solar:10.7b-instruct-v1-q5_1", + "description": "A compact, yet powerful 10.7B large language model designed for single-turn conversation.", + "size": "8.1GB", + "digest": "063c89d4e20b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "solar:10.7b-instruct-v1-q5_K_M", + "name": "solar:10.7b-instruct-v1-q5_K_M", + "description": "A compact, yet powerful 10.7B large language model designed for single-turn conversation.", + "size": "7.6GB", + "digest": "ef538f3193f7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "solar:10.7b-instruct-v1-q5_K_S", + "name": "solar:10.7b-instruct-v1-q5_K_S", + "description": "A compact, yet powerful 10.7B large language model designed for single-turn conversation.", + "size": "7.4GB", + "digest": "74dbfccc10d1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "solar:10.7b-instruct-v1-q6_K", + "name": "solar:10.7b-instruct-v1-q6_K", + "description": "A compact, yet powerful 10.7B large language model designed for single-turn conversation.", + "size": "8.8GB", + "digest": "286aebb3baa2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "solar:10.7b-instruct-v1-q8_0", + "name": "solar:10.7b-instruct-v1-q8_0", + "description": "A compact, yet powerful 10.7B large language model designed for single-turn conversation.", + "size": "11GB", + "digest": "8aed723d7979", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "solar:10.7b-text-v1-fp16", + "name": "solar:10.7b-text-v1-fp16", + "description": "A compact, yet powerful 10.7B large language model designed for single-turn conversation.", + "size": "21GB", + "digest": "45ac489b4ee5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "solar:10.7b-text-v1-q2_K", + "name": "solar:10.7b-text-v1-q2_K", + "description": "A compact, yet powerful 10.7B large language model designed for single-turn conversation.", + "size": "4.5GB", + "digest": "53e823480c1f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "solar:10.7b-text-v1-q3_K_L", + "name": "solar:10.7b-text-v1-q3_K_L", + "description": "A compact, yet powerful 10.7B large language model designed for single-turn conversation.", + "size": "5.7GB", + "digest": "a66cb84fd367", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "solar:10.7b-text-v1-q3_K_M", + "name": "solar:10.7b-text-v1-q3_K_M", + "description": "A compact, yet powerful 10.7B large language model designed for single-turn conversation.", + "size": "5.2GB", + "digest": "051ac692e9e9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "solar:10.7b-text-v1-q3_K_S", + "name": "solar:10.7b-text-v1-q3_K_S", + "description": "A compact, yet powerful 10.7B large language model designed for single-turn conversation.", + "size": "4.7GB", + "digest": "34bae9e1b8a3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "solar:10.7b-text-v1-q4_0", + "name": "solar:10.7b-text-v1-q4_0", + "description": "A compact, yet powerful 10.7B large language model designed for single-turn conversation.", + "size": "6.1GB", + "digest": "ce562b04760c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "solar:10.7b-text-v1-q4_1", + "name": "solar:10.7b-text-v1-q4_1", + "description": "A compact, yet powerful 10.7B large language model designed for single-turn conversation.", + "size": "6.7GB", + "digest": "7b932789b739", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "solar:10.7b-text-v1-q4_K_M", + "name": "solar:10.7b-text-v1-q4_K_M", + "description": "A compact, yet powerful 10.7B large language model designed for single-turn conversation.", + "size": "6.5GB", + "digest": "510e1428088b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "solar:10.7b-text-v1-q4_K_S", + "name": "solar:10.7b-text-v1-q4_K_S", + "description": "A compact, yet powerful 10.7B large language model designed for single-turn conversation.", + "size": "6.1GB", + "digest": "9e5604e44818", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "solar:10.7b-text-v1-q5_0", + "name": "solar:10.7b-text-v1-q5_0", + "description": "A compact, yet powerful 10.7B large language model designed for single-turn conversation.", + "size": "7.4GB", + "digest": "6afc326b4f95", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "solar:10.7b-text-v1-q5_1", + "name": "solar:10.7b-text-v1-q5_1", + "description": "A compact, yet powerful 10.7B large language model designed for single-turn conversation.", + "size": "8.1GB", + "digest": "80cc2ecfe373", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "solar:10.7b-text-v1-q5_K_M", + "name": "solar:10.7b-text-v1-q5_K_M", + "description": "A compact, yet powerful 10.7B large language model designed for single-turn conversation.", + "size": "7.6GB", + "digest": "b9172de1a93b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "solar:10.7b-text-v1-q5_K_S", + "name": "solar:10.7b-text-v1-q5_K_S", + "description": "A compact, yet powerful 10.7B large language model designed for single-turn conversation.", + "size": "7.4GB", + "digest": "938a03a81530", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "solar:10.7b-text-v1-q6_K", + "name": "solar:10.7b-text-v1-q6_K", + "description": "A compact, yet powerful 10.7B large language model designed for single-turn conversation.", + "size": "8.8GB", + "digest": "05ad66dbd29b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "solar:10.7b-text-v1-q8_0", + "name": "solar:10.7b-text-v1-q8_0", + "description": "A compact, yet powerful 10.7B large language model designed for single-turn conversation.", + "size": "11GB", + "digest": "f3fec49deb76", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starling-lm", + "name": "starling-lm", + "description": "Starling is a large language model trained by reinforcement learning from AI feedback focused on improving chatbot helpfulness.", + "size": "4.1GB", + "digest": "39153f619be6", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "starling-lm:7b", + "name": "starling-lm:7b", + "description": "Starling is a large language model trained by reinforcement learning from AI feedback focused on improving chatbot helpfulness.", + "size": "4.1GB", + "digest": "39153f619be6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starling-lm:7b-alpha", + "name": "starling-lm:7b-alpha", + "description": "Starling is a large language model trained by reinforcement learning from AI feedback focused on improving chatbot helpfulness.", + "size": "4.1GB", + "digest": "00dac9119e37", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starling-lm:7b-alpha-fp16", + "name": "starling-lm:7b-alpha-fp16", + "description": "Starling is a large language model trained by reinforcement learning from AI feedback focused on improving chatbot helpfulness.", + "size": "14GB", + "digest": "204bc1113dee", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starling-lm:7b-alpha-q2_K", + "name": "starling-lm:7b-alpha-q2_K", + "description": "Starling is a large language model trained by reinforcement learning from AI feedback focused on improving chatbot helpfulness.", + "size": "2.7GB", + "digest": "595732609943", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starling-lm:7b-alpha-q3_K_L", + "name": "starling-lm:7b-alpha-q3_K_L", + "description": "Starling is a large language model trained by reinforcement learning from AI feedback focused on improving chatbot helpfulness.", + "size": "3.8GB", + "digest": "e1bcab03fa99", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starling-lm:7b-alpha-q3_K_M", + "name": "starling-lm:7b-alpha-q3_K_M", + "description": "Starling is a large language model trained by reinforcement learning from AI feedback focused on improving chatbot helpfulness.", + "size": "3.5GB", + "digest": "882cfb6fd115", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starling-lm:7b-alpha-q3_K_S", + "name": "starling-lm:7b-alpha-q3_K_S", + "description": "Starling is a large language model trained by reinforcement learning from AI feedback focused on improving chatbot helpfulness.", + "size": "3.2GB", + "digest": "5a49a238895b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starling-lm:7b-alpha-q4_0", + "name": "starling-lm:7b-alpha-q4_0", + "description": "Starling is a large language model trained by reinforcement learning from AI feedback focused on improving chatbot helpfulness.", + "size": "4.1GB", + "digest": "00dac9119e37", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starling-lm:7b-alpha-q4_1", + "name": "starling-lm:7b-alpha-q4_1", + "description": "Starling is a large language model trained by reinforcement learning from AI feedback focused on improving chatbot helpfulness.", + "size": "4.6GB", + "digest": "e3dd9bd1826c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starling-lm:7b-alpha-q4_K_M", + "name": "starling-lm:7b-alpha-q4_K_M", + "description": "Starling is a large language model trained by reinforcement learning from AI feedback focused on improving chatbot helpfulness.", + "size": "4.4GB", + "digest": "e01b657ff775", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starling-lm:7b-alpha-q4_K_S", + "name": "starling-lm:7b-alpha-q4_K_S", + "description": "Starling is a large language model trained by reinforcement learning from AI feedback focused on improving chatbot helpfulness.", + "size": "4.1GB", + "digest": "ec9fd5179bf3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starling-lm:7b-alpha-q5_0", + "name": "starling-lm:7b-alpha-q5_0", + "description": "Starling is a large language model trained by reinforcement learning from AI feedback focused on improving chatbot helpfulness.", + "size": "5.0GB", + "digest": "a9a7563109f7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starling-lm:7b-alpha-q5_1", + "name": "starling-lm:7b-alpha-q5_1", + "description": "Starling is a large language model trained by reinforcement learning from AI feedback focused on improving chatbot helpfulness.", + "size": "5.4GB", + "digest": "0fbfb3a9529f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starling-lm:7b-alpha-q5_K_M", + "name": "starling-lm:7b-alpha-q5_K_M", + "description": "Starling is a large language model trained by reinforcement learning from AI feedback focused on improving chatbot helpfulness.", + "size": "5.1GB", + "digest": "dcfc2f49cbc2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starling-lm:7b-alpha-q5_K_S", + "name": "starling-lm:7b-alpha-q5_K_S", + "description": "Starling is a large language model trained by reinforcement learning from AI feedback focused on improving chatbot helpfulness.", + "size": "5.0GB", + "digest": "5d7a06cc4232", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starling-lm:7b-alpha-q6_K", + "name": "starling-lm:7b-alpha-q6_K", + "description": "Starling is a large language model trained by reinforcement learning from AI feedback focused on improving chatbot helpfulness.", + "size": "5.9GB", + "digest": "6b9846745e8e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starling-lm:7b-alpha-q8_0", + "name": "starling-lm:7b-alpha-q8_0", + "description": "Starling is a large language model trained by reinforcement learning from AI feedback focused on improving chatbot helpfulness.", + "size": "7.7GB", + "digest": "8e54dc97552a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starling-lm:7b-beta", + "name": "starling-lm:7b-beta", + "description": "Starling is a large language model trained by reinforcement learning from AI feedback focused on improving chatbot helpfulness.", + "size": "4.1GB", + "digest": "39153f619be6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starling-lm:7b-beta-fp16", + "name": "starling-lm:7b-beta-fp16", + "description": "Starling is a large language model trained by reinforcement learning from AI feedback focused on improving chatbot helpfulness.", + "size": "14GB", + "digest": "b7752a962ae0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starling-lm:7b-beta-q2_K", + "name": "starling-lm:7b-beta-q2_K", + "description": "Starling is a large language model trained by reinforcement learning from AI feedback focused on improving chatbot helpfulness.", + "size": "2.7GB", + "digest": "b1e1d15c3eaa", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starling-lm:7b-beta-q3_K_L", + "name": "starling-lm:7b-beta-q3_K_L", + "description": "Starling is a large language model trained by reinforcement learning from AI feedback focused on improving chatbot helpfulness.", + "size": "3.8GB", + "digest": "1326603dad7b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starling-lm:7b-beta-q3_K_M", + "name": "starling-lm:7b-beta-q3_K_M", + "description": "Starling is a large language model trained by reinforcement learning from AI feedback focused on improving chatbot helpfulness.", + "size": "3.5GB", + "digest": "50f34a8d0894", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starling-lm:7b-beta-q3_K_S", + "name": "starling-lm:7b-beta-q3_K_S", + "description": "Starling is a large language model trained by reinforcement learning from AI feedback focused on improving chatbot helpfulness.", + "size": "3.2GB", + "digest": "294f42040461", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starling-lm:7b-beta-q4_0", + "name": "starling-lm:7b-beta-q4_0", + "description": "Starling is a large language model trained by reinforcement learning from AI feedback focused on improving chatbot helpfulness.", + "size": "4.1GB", + "digest": "39153f619be6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starling-lm:7b-beta-q4_1", + "name": "starling-lm:7b-beta-q4_1", + "description": "Starling is a large language model trained by reinforcement learning from AI feedback focused on improving chatbot helpfulness.", + "size": "4.6GB", + "digest": "0cd6a20fa252", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starling-lm:7b-beta-q4_K_M", + "name": "starling-lm:7b-beta-q4_K_M", + "description": "Starling is a large language model trained by reinforcement learning from AI feedback focused on improving chatbot helpfulness.", + "size": "4.4GB", + "digest": "f336e3b146fd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starling-lm:7b-beta-q4_K_S", + "name": "starling-lm:7b-beta-q4_K_S", + "description": "Starling is a large language model trained by reinforcement learning from AI feedback focused on improving chatbot helpfulness.", + "size": "4.1GB", + "digest": "fb6544e9b47a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starling-lm:7b-beta-q5_0", + "name": "starling-lm:7b-beta-q5_0", + "description": "Starling is a large language model trained by reinforcement learning from AI feedback focused on improving chatbot helpfulness.", + "size": "5.0GB", + "digest": "b75ae9df76d1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starling-lm:7b-beta-q5_1", + "name": "starling-lm:7b-beta-q5_1", + "description": "Starling is a large language model trained by reinforcement learning from AI feedback focused on improving chatbot helpfulness.", + "size": "5.4GB", + "digest": "b17e67a4be34", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starling-lm:7b-beta-q5_K_M", + "name": "starling-lm:7b-beta-q5_K_M", + "description": "Starling is a large language model trained by reinforcement learning from AI feedback focused on improving chatbot helpfulness.", + "size": "5.1GB", + "digest": "7a5028faa785", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starling-lm:7b-beta-q5_K_S", + "name": "starling-lm:7b-beta-q5_K_S", + "description": "Starling is a large language model trained by reinforcement learning from AI feedback focused on improving chatbot helpfulness.", + "size": "5.0GB", + "digest": "a206026bd73f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starling-lm:7b-beta-q6_K", + "name": "starling-lm:7b-beta-q6_K", + "description": "Starling is a large language model trained by reinforcement learning from AI feedback focused on improving chatbot helpfulness.", + "size": "5.9GB", + "digest": "e851dfecaaf5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starling-lm:7b-beta-q8_0", + "name": "starling-lm:7b-beta-q8_0", + "description": "Starling is a large language model trained by reinforcement learning from AI feedback focused on improving chatbot helpfulness.", + "size": "7.7GB", + "digest": "30281608b7f2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starling-lm:alpha", + "name": "starling-lm:alpha", + "description": "Starling is a large language model trained by reinforcement learning from AI feedback focused on improving chatbot helpfulness.", + "size": "4.1GB", + "digest": "00dac9119e37", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "starling-lm:beta", + "name": "starling-lm:beta", + "description": "Starling is a large language model trained by reinforcement learning from AI feedback focused on improving chatbot helpfulness.", + "size": "4.1GB", + "digest": "39153f619be6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:13b-fp16", + "name": "wizardlm:13b-fp16", + "description": "General use model based on Llama 2.", + "size": "26GB", + "digest": "95a66502902f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:13b-llama2-fp16", + "name": "wizardlm:13b-llama2-fp16", + "description": "General use model based on Llama 2.", + "size": "26GB", + "digest": "4adbfc3c9680", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:13b-llama2-q2_K", + "name": "wizardlm:13b-llama2-q2_K", + "description": "General use model based on Llama 2.", + "size": "5.4GB", + "digest": "bf7912e654c5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:13b-llama2-q3_K_L", + "name": "wizardlm:13b-llama2-q3_K_L", + "description": "General use model based on Llama 2.", + "size": "6.9GB", + "digest": "848e49de492f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:13b-llama2-q3_K_M", + "name": "wizardlm:13b-llama2-q3_K_M", + "description": "General use model based on Llama 2.", + "size": "6.3GB", + "digest": "f5aadb3dbdd9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:13b-llama2-q3_K_S", + "name": "wizardlm:13b-llama2-q3_K_S", + "description": "General use model based on Llama 2.", + "size": "5.7GB", + "digest": "e87c1dae586e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:13b-llama2-q4_0", + "name": "wizardlm:13b-llama2-q4_0", + "description": "General use model based on Llama 2.", + "size": "7.4GB", + "digest": "07237eed6d44", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:13b-llama2-q4_1", + "name": "wizardlm:13b-llama2-q4_1", + "description": "General use model based on Llama 2.", + "size": "8.2GB", + "digest": "966ad219dd6e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:13b-llama2-q4_K_M", + "name": "wizardlm:13b-llama2-q4_K_M", + "description": "General use model based on Llama 2.", + "size": "7.9GB", + "digest": "68d0ec94288a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:13b-llama2-q4_K_S", + "name": "wizardlm:13b-llama2-q4_K_S", + "description": "General use model based on Llama 2.", + "size": "7.4GB", + "digest": "ac3340957ac2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:13b-llama2-q5_0", + "name": "wizardlm:13b-llama2-q5_0", + "description": "General use model based on Llama 2.", + "size": "9.0GB", + "digest": "210ef327ea9e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:13b-llama2-q5_1", + "name": "wizardlm:13b-llama2-q5_1", + "description": "General use model based on Llama 2.", + "size": "9.8GB", + "digest": "b8505c7f2d31", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:13b-llama2-q5_K_M", + "name": "wizardlm:13b-llama2-q5_K_M", + "description": "General use model based on Llama 2.", + "size": "9.2GB", + "digest": "a8da6d573865", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:13b-llama2-q5_K_S", + "name": "wizardlm:13b-llama2-q5_K_S", + "description": "General use model based on Llama 2.", + "size": "9.0GB", + "digest": "b8ed8352b0bd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:13b-llama2-q6_K", + "name": "wizardlm:13b-llama2-q6_K", + "description": "General use model based on Llama 2.", + "size": "11GB", + "digest": "6a9a6808f2f6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:13b-llama2-q8_0", + "name": "wizardlm:13b-llama2-q8_0", + "description": "General use model based on Llama 2.", + "size": "14GB", + "digest": "5e403198c9b1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:13b-q2_K", + "name": "wizardlm:13b-q2_K", + "description": "General use model based on Llama 2.", + "size": "5.4GB", + "digest": "3b8461d9b63c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:13b-q3_K_L", + "name": "wizardlm:13b-q3_K_L", + "description": "General use model based on Llama 2.", + "size": "6.9GB", + "digest": "512973874eed", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:13b-q3_K_M", + "name": "wizardlm:13b-q3_K_M", + "description": "General use model based on Llama 2.", + "size": "6.3GB", + "digest": "a2397457fb74", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:13b-q3_K_S", + "name": "wizardlm:13b-q3_K_S", + "description": "General use model based on Llama 2.", + "size": "5.7GB", + "digest": "89db746fa2ca", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:13b-q4_0", + "name": "wizardlm:13b-q4_0", + "description": "General use model based on Llama 2.", + "size": "7.4GB", + "digest": "7e480c1b3f2f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:13b-q4_1", + "name": "wizardlm:13b-q4_1", + "description": "General use model based on Llama 2.", + "size": "8.2GB", + "digest": "dd21b594003b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:13b-q4_K_M", + "name": "wizardlm:13b-q4_K_M", + "description": "General use model based on Llama 2.", + "size": "7.9GB", + "digest": "e6d40c1b0e0d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:13b-q4_K_S", + "name": "wizardlm:13b-q4_K_S", + "description": "General use model based on Llama 2.", + "size": "7.4GB", + "digest": "2ccfc126100e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:13b-q5_0", + "name": "wizardlm:13b-q5_0", + "description": "General use model based on Llama 2.", + "size": "9.0GB", + "digest": "f8be29062946", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:13b-q5_1", + "name": "wizardlm:13b-q5_1", + "description": "General use model based on Llama 2.", + "size": "9.8GB", + "digest": "7a594c88f1a0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:13b-q5_K_M", + "name": "wizardlm:13b-q5_K_M", + "description": "General use model based on Llama 2.", + "size": "9.2GB", + "digest": "d71253aa6a51", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:13b-q5_K_S", + "name": "wizardlm:13b-q5_K_S", + "description": "General use model based on Llama 2.", + "size": "9.0GB", + "digest": "2db6e4378d69", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:13b-q6_K", + "name": "wizardlm:13b-q6_K", + "description": "General use model based on Llama 2.", + "size": "11GB", + "digest": "6d11d6afcd43", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:13b-q8_0", + "name": "wizardlm:13b-q8_0", + "description": "General use model based on Llama 2.", + "size": "14GB", + "digest": "6a7fd096f78a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:30b-fp16", + "name": "wizardlm:30b-fp16", + "description": "General use model based on Llama 2.", + "size": "65GB", + "digest": "3dc4daa962ba", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:30b-q2_K", + "name": "wizardlm:30b-q2_K", + "description": "General use model based on Llama 2.", + "size": "14GB", + "digest": "316a090a9db0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:30b-q3_K_L", + "name": "wizardlm:30b-q3_K_L", + "description": "General use model based on Llama 2.", + "size": "17GB", + "digest": "7d5c5ca56029", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:30b-q3_K_M", + "name": "wizardlm:30b-q3_K_M", + "description": "General use model based on Llama 2.", + "size": "16GB", + "digest": "7603650be43d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:30b-q3_K_S", + "name": "wizardlm:30b-q3_K_S", + "description": "General use model based on Llama 2.", + "size": "14GB", + "digest": "362bc87500d0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:30b-q4_0", + "name": "wizardlm:30b-q4_0", + "description": "General use model based on Llama 2.", + "size": "18GB", + "digest": "67513d78f363", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:30b-q4_1", + "name": "wizardlm:30b-q4_1", + "description": "General use model based on Llama 2.", + "size": "20GB", + "digest": "65744dc3396a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:30b-q4_K_M", + "name": "wizardlm:30b-q4_K_M", + "description": "General use model based on Llama 2.", + "size": "20GB", + "digest": "69839e566826", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:30b-q4_K_S", + "name": "wizardlm:30b-q4_K_S", + "description": "General use model based on Llama 2.", + "size": "18GB", + "digest": "ffb56ae33932", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:30b-q5_0", + "name": "wizardlm:30b-q5_0", + "description": "General use model based on Llama 2.", + "size": "22GB", + "digest": "f29f3ee70a42", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:30b-q5_1", + "name": "wizardlm:30b-q5_1", + "description": "General use model based on Llama 2.", + "size": "24GB", + "digest": "8ea6a8618db0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:30b-q5_K_M", + "name": "wizardlm:30b-q5_K_M", + "description": "General use model based on Llama 2.", + "size": "23GB", + "digest": "9c007b31c159", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:30b-q5_K_S", + "name": "wizardlm:30b-q5_K_S", + "description": "General use model based on Llama 2.", + "size": "22GB", + "digest": "5829399005b9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:30b-q6_K", + "name": "wizardlm:30b-q6_K", + "description": "General use model based on Llama 2.", + "size": "27GB", + "digest": "2674ac1c84bb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:30b-q8_0", + "name": "wizardlm:30b-q8_0", + "description": "General use model based on Llama 2.", + "size": "35GB", + "digest": "a5efdd159540", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:70b-llama2-q2_K", + "name": "wizardlm:70b-llama2-q2_K", + "description": "General use model based on Llama 2.", + "size": "29GB", + "digest": "e64d383d4616", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:70b-llama2-q3_K_L", + "name": "wizardlm:70b-llama2-q3_K_L", + "description": "General use model based on Llama 2.", + "size": "36GB", + "digest": "a547147dbbb2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:70b-llama2-q3_K_M", + "name": "wizardlm:70b-llama2-q3_K_M", + "description": "General use model based on Llama 2.", + "size": "33GB", + "digest": "56a8ed83f414", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:70b-llama2-q3_K_S", + "name": "wizardlm:70b-llama2-q3_K_S", + "description": "General use model based on Llama 2.", + "size": "30GB", + "digest": "301b2de5cdce", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:70b-llama2-q4_0", + "name": "wizardlm:70b-llama2-q4_0", + "description": "General use model based on Llama 2.", + "size": "39GB", + "digest": "2d269a65a092", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:70b-llama2-q4_1", + "name": "wizardlm:70b-llama2-q4_1", + "description": "General use model based on Llama 2.", + "size": "43GB", + "digest": "4c5a4bf2a4bd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:70b-llama2-q4_K_M", + "name": "wizardlm:70b-llama2-q4_K_M", + "description": "General use model based on Llama 2.", + "size": "41GB", + "digest": "6741c38608f1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:70b-llama2-q4_K_S", + "name": "wizardlm:70b-llama2-q4_K_S", + "description": "General use model based on Llama 2.", + "size": "39GB", + "digest": "a5124a5418a3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:70b-llama2-q5_0", + "name": "wizardlm:70b-llama2-q5_0", + "description": "General use model based on Llama 2.", + "size": "47GB", + "digest": "6a8d1d7c5360", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:70b-llama2-q5_K_M", + "name": "wizardlm:70b-llama2-q5_K_M", + "description": "General use model based on Llama 2.", + "size": "49GB", + "digest": "ebfead13404c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:70b-llama2-q5_K_S", + "name": "wizardlm:70b-llama2-q5_K_S", + "description": "General use model based on Llama 2.", + "size": "47GB", + "digest": "440dda0fbaf1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:70b-llama2-q6_K", + "name": "wizardlm:70b-llama2-q6_K", + "description": "General use model based on Llama 2.", + "size": "57GB", + "digest": "20fd3a5a9146", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:70b-llama2-q8_0", + "name": "wizardlm:70b-llama2-q8_0", + "description": "General use model based on Llama 2.", + "size": "73GB", + "digest": "7b59877a048f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:7b-fp16", + "name": "wizardlm:7b-fp16", + "description": "General use model based on Llama 2.", + "size": "13GB", + "digest": "7b7b03c75a9c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:7b-q2_K", + "name": "wizardlm:7b-q2_K", + "description": "General use model based on Llama 2.", + "size": "2.8GB", + "digest": "3bd62c66bf07", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:7b-q3_K_L", + "name": "wizardlm:7b-q3_K_L", + "description": "General use model based on Llama 2.", + "size": "3.6GB", + "digest": "b71375c6360f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:7b-q3_K_M", + "name": "wizardlm:7b-q3_K_M", + "description": "General use model based on Llama 2.", + "size": "3.3GB", + "digest": "77ee25ef2d73", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:7b-q3_K_S", + "name": "wizardlm:7b-q3_K_S", + "description": "General use model based on Llama 2.", + "size": "2.9GB", + "digest": "2f4e28f337fb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:7b-q4_0", + "name": "wizardlm:7b-q4_0", + "description": "General use model based on Llama 2.", + "size": "3.8GB", + "digest": "2d84ad17965a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:7b-q4_1", + "name": "wizardlm:7b-q4_1", + "description": "General use model based on Llama 2.", + "size": "4.2GB", + "digest": "39ca90eaf0fe", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:7b-q4_K_M", + "name": "wizardlm:7b-q4_K_M", + "description": "General use model based on Llama 2.", + "size": "4.1GB", + "digest": "cfe7771084ed", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:7b-q4_K_S", + "name": "wizardlm:7b-q4_K_S", + "description": "General use model based on Llama 2.", + "size": "3.9GB", + "digest": "64ff89304116", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:7b-q5_0", + "name": "wizardlm:7b-q5_0", + "description": "General use model based on Llama 2.", + "size": "4.7GB", + "digest": "ae105d485aa2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:7b-q5_1", + "name": "wizardlm:7b-q5_1", + "description": "General use model based on Llama 2.", + "size": "5.1GB", + "digest": "d0e953531965", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:7b-q5_K_M", + "name": "wizardlm:7b-q5_K_M", + "description": "General use model based on Llama 2.", + "size": "4.8GB", + "digest": "ab723eb64d3c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:7b-q5_K_S", + "name": "wizardlm:7b-q5_K_S", + "description": "General use model based on Llama 2.", + "size": "4.7GB", + "digest": "57343a383bbb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:7b-q6_K", + "name": "wizardlm:7b-q6_K", + "description": "General use model based on Llama 2.", + "size": "5.5GB", + "digest": "b04432819f68", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm:7b-q8_0", + "name": "wizardlm:7b-q8_0", + "description": "General use model based on Llama 2.", + "size": "7.2GB", + "digest": "754989a99c95", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava-phi3", + "name": "llava-phi3", + "description": "A new small LLaVA model fine-tuned from Phi 3 Mini.", + "size": "2.9GB", + "digest": "c7edd7b87593", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "llava-phi3:3.8b", + "name": "llava-phi3:3.8b", + "description": "A new small LLaVA model fine-tuned from Phi 3 Mini.", + "size": "2.9GB", + "digest": "c7edd7b87593", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava-phi3:3.8b-mini-fp16", + "name": "llava-phi3:3.8b-mini-fp16", + "description": "A new small LLaVA model fine-tuned from Phi 3 Mini.", + "size": "8.3GB", + "digest": "39ed50ad5b22", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llava-phi3:3.8b-mini-q4_0", + "name": "llava-phi3:3.8b-mini-q4_0", + "description": "A new small LLaVA model fine-tuned from Phi 3 Mini.", + "size": "2.9GB", + "digest": "c7edd7b87593", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder", + "name": "yi-coder", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "5.0GB", + "digest": "39c63e7675d7", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "yi-coder:1.5b", + "name": "yi-coder:1.5b", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "866MB", + "digest": "186c460ee707", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:9b", + "name": "yi-coder:9b", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "5.0GB", + "digest": "39c63e7675d7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:1.5b-base", + "name": "yi-coder:1.5b-base", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "866MB", + "digest": "3ae9e5590c53", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:1.5b-base-fp16", + "name": "yi-coder:1.5b-base-fp16", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "3.0GB", + "digest": "e5e7bac55898", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:1.5b-base-q2_K", + "name": "yi-coder:1.5b-base-q2_K", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "635MB", + "digest": "72bcbb9a9ae9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:1.5b-base-q3_K_L", + "name": "yi-coder:1.5b-base-q3_K_L", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "826MB", + "digest": "5185a5d9d3ca", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:1.5b-base-q3_K_M", + "name": "yi-coder:1.5b-base-q3_K_M", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "786MB", + "digest": "b5470df6d3e7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:1.5b-base-q3_K_S", + "name": "yi-coder:1.5b-base-q3_K_S", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "723MB", + "digest": "6c35f0ea217b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:1.5b-base-q4_0", + "name": "yi-coder:1.5b-base-q4_0", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "866MB", + "digest": "3ae9e5590c53", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:1.5b-base-q4_1", + "name": "yi-coder:1.5b-base-q4_1", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "950MB", + "digest": "5cb7b8cc1097", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:1.5b-base-q4_K_M", + "name": "yi-coder:1.5b-base-q4_K_M", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "964MB", + "digest": "f833af8a9c24", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:1.5b-base-q4_K_S", + "name": "yi-coder:1.5b-base-q4_K_S", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "904MB", + "digest": "fb5f9df9ed8a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:1.5b-base-q5_0", + "name": "yi-coder:1.5b-base-q5_0", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "1.0GB", + "digest": "6cb7ed11413c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:1.5b-base-q5_1", + "name": "yi-coder:1.5b-base-q5_1", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "1.1GB", + "digest": "da6135e2b7dc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:1.5b-base-q5_K_M", + "name": "yi-coder:1.5b-base-q5_K_M", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "1.1GB", + "digest": "5b70d32eb00f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:1.5b-base-q5_K_S", + "name": "yi-coder:1.5b-base-q5_K_S", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "1.1GB", + "digest": "66d47c26a364", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:1.5b-base-q6_K", + "name": "yi-coder:1.5b-base-q6_K", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "1.3GB", + "digest": "25f35d89eb70", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:1.5b-base-q8_0", + "name": "yi-coder:1.5b-base-q8_0", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "1.6GB", + "digest": "5c692daa00cf", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:1.5b-chat", + "name": "yi-coder:1.5b-chat", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "866MB", + "digest": "186c460ee707", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:1.5b-chat-fp16", + "name": "yi-coder:1.5b-chat-fp16", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "3.0GB", + "digest": "d1abd5321dc6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:1.5b-chat-q2_K", + "name": "yi-coder:1.5b-chat-q2_K", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "635MB", + "digest": "39d4d341cff8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:1.5b-chat-q3_K_L", + "name": "yi-coder:1.5b-chat-q3_K_L", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "826MB", + "digest": "3897d2133f5c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:1.5b-chat-q3_K_M", + "name": "yi-coder:1.5b-chat-q3_K_M", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "786MB", + "digest": "63478a7e797f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:1.5b-chat-q3_K_S", + "name": "yi-coder:1.5b-chat-q3_K_S", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "723MB", + "digest": "71fbe88ebe81", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:1.5b-chat-q4_0", + "name": "yi-coder:1.5b-chat-q4_0", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "866MB", + "digest": "186c460ee707", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:1.5b-chat-q4_1", + "name": "yi-coder:1.5b-chat-q4_1", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "950MB", + "digest": "8d4bdf342be6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:1.5b-chat-q4_K_M", + "name": "yi-coder:1.5b-chat-q4_K_M", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "964MB", + "digest": "18173f4b9642", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:1.5b-chat-q4_K_S", + "name": "yi-coder:1.5b-chat-q4_K_S", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "904MB", + "digest": "0fb60923856d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:1.5b-chat-q5_0", + "name": "yi-coder:1.5b-chat-q5_0", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "1.0GB", + "digest": "21e2d2d7f308", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:1.5b-chat-q5_1", + "name": "yi-coder:1.5b-chat-q5_1", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "1.1GB", + "digest": "58fbc0fac95a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:1.5b-chat-q5_K_M", + "name": "yi-coder:1.5b-chat-q5_K_M", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "1.1GB", + "digest": "585d2aa06889", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:1.5b-chat-q5_K_S", + "name": "yi-coder:1.5b-chat-q5_K_S", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "1.1GB", + "digest": "284b8efecc30", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:1.5b-chat-q6_K", + "name": "yi-coder:1.5b-chat-q6_K", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "1.3GB", + "digest": "2bbe996b550c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:1.5b-chat-q8_0", + "name": "yi-coder:1.5b-chat-q8_0", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "1.6GB", + "digest": "f182b38e0035", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:9b-base", + "name": "yi-coder:9b-base", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "5.0GB", + "digest": "ddb06590020f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:9b-base-fp16", + "name": "yi-coder:9b-base-fp16", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "18GB", + "digest": "bfc135887310", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:9b-base-q2_K", + "name": "yi-coder:9b-base-q2_K", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "3.4GB", + "digest": "876912d1a17f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:9b-base-q3_K_L", + "name": "yi-coder:9b-base-q3_K_L", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "4.7GB", + "digest": "9929a56a3b42", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:9b-base-q3_K_M", + "name": "yi-coder:9b-base-q3_K_M", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "4.3GB", + "digest": "870580db544a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:9b-base-q3_K_S", + "name": "yi-coder:9b-base-q3_K_S", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "3.9GB", + "digest": "9578a235ec51", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:9b-base-q4_0", + "name": "yi-coder:9b-base-q4_0", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "5.0GB", + "digest": "ddb06590020f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:9b-base-q4_1", + "name": "yi-coder:9b-base-q4_1", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "5.6GB", + "digest": "1b5c8ffbba06", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:9b-base-q4_K_M", + "name": "yi-coder:9b-base-q4_K_M", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "5.3GB", + "digest": "41db33a6f556", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:9b-base-q4_K_S", + "name": "yi-coder:9b-base-q4_K_S", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "5.1GB", + "digest": "75319e66c008", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:9b-base-q5_0", + "name": "yi-coder:9b-base-q5_0", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "6.1GB", + "digest": "e427662e4bb0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:9b-base-q5_1", + "name": "yi-coder:9b-base-q5_1", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "6.6GB", + "digest": "d887d7e655ef", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:9b-base-q5_K_M", + "name": "yi-coder:9b-base-q5_K_M", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "6.3GB", + "digest": "b948d974d5a3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:9b-base-q5_K_S", + "name": "yi-coder:9b-base-q5_K_S", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "6.1GB", + "digest": "f8c19324bb7e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:9b-base-q6_K", + "name": "yi-coder:9b-base-q6_K", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "7.2GB", + "digest": "ab6cfd4955f9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:9b-base-q8_0", + "name": "yi-coder:9b-base-q8_0", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "9.4GB", + "digest": "eea07012d69e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:9b-chat", + "name": "yi-coder:9b-chat", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "5.0GB", + "digest": "39c63e7675d7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:9b-chat-fp16", + "name": "yi-coder:9b-chat-fp16", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "18GB", + "digest": "fbb8b69a8909", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:9b-chat-q2_K", + "name": "yi-coder:9b-chat-q2_K", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "3.4GB", + "digest": "48bf607b45fd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:9b-chat-q3_K_L", + "name": "yi-coder:9b-chat-q3_K_L", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "4.7GB", + "digest": "4cdf05e1131f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:9b-chat-q3_K_M", + "name": "yi-coder:9b-chat-q3_K_M", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "4.3GB", + "digest": "e0bd3d693e5e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:9b-chat-q3_K_S", + "name": "yi-coder:9b-chat-q3_K_S", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "3.9GB", + "digest": "d9706e23f3b9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:9b-chat-q4_0", + "name": "yi-coder:9b-chat-q4_0", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "5.0GB", + "digest": "39c63e7675d7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:9b-chat-q4_1", + "name": "yi-coder:9b-chat-q4_1", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "5.6GB", + "digest": "150b2d132ef1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:9b-chat-q4_K_M", + "name": "yi-coder:9b-chat-q4_K_M", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "5.3GB", + "digest": "89884591b225", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:9b-chat-q4_K_S", + "name": "yi-coder:9b-chat-q4_K_S", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "5.1GB", + "digest": "67b6a93dec3c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:9b-chat-q5_0", + "name": "yi-coder:9b-chat-q5_0", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "6.1GB", + "digest": "ede3d2c181a4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:9b-chat-q5_1", + "name": "yi-coder:9b-chat-q5_1", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "6.6GB", + "digest": "301ce2e5ec7b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:9b-chat-q5_K_M", + "name": "yi-coder:9b-chat-q5_K_M", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "6.3GB", + "digest": "d4b375d4e224", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:9b-chat-q5_K_S", + "name": "yi-coder:9b-chat-q5_K_S", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "6.1GB", + "digest": "696e7540c8dc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:9b-chat-q6_K", + "name": "yi-coder:9b-chat-q6_K", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "7.2GB", + "digest": "e020ec59c639", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yi-coder:9b-chat-q8_0", + "name": "yi-coder:9b-chat-q8_0", + "description": "Yi-Coder is a series of open-source code language models that delivers state-of-the-art coding performance with fewer than 10 billion parameters.", + "size": "9.4GB", + "digest": "24620a7cf955", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "athene-v2", + "name": "athene-v2", + "description": "Athene-V2 is a 72B parameter model which excels at code completion, mathematics, and log extraction tasks.", + "size": "47GB", + "digest": "d14346ed7d55", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "athene-v2:72b", + "name": "athene-v2:72b", + "description": "Athene-V2 is a 72B parameter model which excels at code completion, mathematics, and log extraction tasks.", + "size": "47GB", + "digest": "d14346ed7d55", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "athene-v2:72b-fp16", + "name": "athene-v2:72b-fp16", + "description": "Athene-V2 is a 72B parameter model which excels at code completion, mathematics, and log extraction tasks.", + "size": "145GB", + "digest": "1efa8264c375", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "athene-v2:72b-q2_K", + "name": "athene-v2:72b-q2_K", + "description": "Athene-V2 is a 72B parameter model which excels at code completion, mathematics, and log extraction tasks.", + "size": "30GB", + "digest": "e566d713f2ce", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "athene-v2:72b-q3_K_L", + "name": "athene-v2:72b-q3_K_L", + "description": "Athene-V2 is a 72B parameter model which excels at code completion, mathematics, and log extraction tasks.", + "size": "40GB", + "digest": "b05ead18ed8a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "athene-v2:72b-q3_K_M", + "name": "athene-v2:72b-q3_K_M", + "description": "Athene-V2 is a 72B parameter model which excels at code completion, mathematics, and log extraction tasks.", + "size": "38GB", + "digest": "f74199e5b2ed", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "athene-v2:72b-q3_K_S", + "name": "athene-v2:72b-q3_K_S", + "description": "Athene-V2 is a 72B parameter model which excels at code completion, mathematics, and log extraction tasks.", + "size": "34GB", + "digest": "c213bdad39e6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "athene-v2:72b-q4_0", + "name": "athene-v2:72b-q4_0", + "description": "Athene-V2 is a 72B parameter model which excels at code completion, mathematics, and log extraction tasks.", + "size": "41GB", + "digest": "5ce9f00e1aaa", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "athene-v2:72b-q4_1", + "name": "athene-v2:72b-q4_1", + "description": "Athene-V2 is a 72B parameter model which excels at code completion, mathematics, and log extraction tasks.", + "size": "46GB", + "digest": "3e10d6a1cc6c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "athene-v2:72b-q4_K_M", + "name": "athene-v2:72b-q4_K_M", + "description": "Athene-V2 is a 72B parameter model which excels at code completion, mathematics, and log extraction tasks.", + "size": "47GB", + "digest": "d14346ed7d55", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "athene-v2:72b-q4_K_S", + "name": "athene-v2:72b-q4_K_S", + "description": "Athene-V2 is a 72B parameter model which excels at code completion, mathematics, and log extraction tasks.", + "size": "44GB", + "digest": "1bb9b315e5a1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "athene-v2:72b-q5_0", + "name": "athene-v2:72b-q5_0", + "description": "Athene-V2 is a 72B parameter model which excels at code completion, mathematics, and log extraction tasks.", + "size": "50GB", + "digest": "2d45e35efb78", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "athene-v2:72b-q5_1", + "name": "athene-v2:72b-q5_1", + "description": "Athene-V2 is a 72B parameter model which excels at code completion, mathematics, and log extraction tasks.", + "size": "55GB", + "digest": "17eadb34276c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "athene-v2:72b-q5_K_M", + "name": "athene-v2:72b-q5_K_M", + "description": "Athene-V2 is a 72B parameter model which excels at code completion, mathematics, and log extraction tasks.", + "size": "54GB", + "digest": "d82d1d08a629", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "athene-v2:72b-q5_K_S", + "name": "athene-v2:72b-q5_K_S", + "description": "Athene-V2 is a 72B parameter model which excels at code completion, mathematics, and log extraction tasks.", + "size": "51GB", + "digest": "f3b97798cb4b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "athene-v2:72b-q6_K", + "name": "athene-v2:72b-q6_K", + "description": "Athene-V2 is a 72B parameter model which excels at code completion, mathematics, and log extraction tasks.", + "size": "64GB", + "digest": "70b90bce364f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "athene-v2:72b-q8_0", + "name": "athene-v2:72b-q8_0", + "description": "Athene-V2 is a 72B parameter model which excels at code completion, mathematics, and log extraction tasks.", + "size": "77GB", + "digest": "4ce011a86fef", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2", + "name": "internlm2", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "4.5GB", + "digest": "5050e36678ab", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "internlm2:1m", + "name": "internlm2:1m", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "4.5GB", + "digest": "f51a58d004a3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:1.8b", + "name": "internlm2:1.8b", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "1.1GB", + "digest": "653be3eb69a0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:7b", + "name": "internlm2:7b", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "4.5GB", + "digest": "5050e36678ab", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:20b", + "name": "internlm2:20b", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "11GB", + "digest": "a864ac8dade2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:1.8b-chat-v2.5-fp16", + "name": "internlm2:1.8b-chat-v2.5-fp16", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "3.8GB", + "digest": "c62072479ed8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:1.8b-chat-v2.5-q2_K", + "name": "internlm2:1.8b-chat-v2.5-q2_K", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "772MB", + "digest": "e323dd309ffa", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:1.8b-chat-v2.5-q3_K_L", + "name": "internlm2:1.8b-chat-v2.5-q3_K_L", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "1.0GB", + "digest": "72790a472a60", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:1.8b-chat-v2.5-q3_K_M", + "name": "internlm2:1.8b-chat-v2.5-q3_K_M", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "964MB", + "digest": "f141c9a50fc5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:1.8b-chat-v2.5-q3_K_S", + "name": "internlm2:1.8b-chat-v2.5-q3_K_S", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "888MB", + "digest": "2adb2d42a98d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:1.8b-chat-v2.5-q4_0", + "name": "internlm2:1.8b-chat-v2.5-q4_0", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "1.1GB", + "digest": "653be3eb69a0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:1.8b-chat-v2.5-q4_1", + "name": "internlm2:1.8b-chat-v2.5-q4_1", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "1.2GB", + "digest": "de0f6524a4bd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:1.8b-chat-v2.5-q4_K_M", + "name": "internlm2:1.8b-chat-v2.5-q4_K_M", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "1.2GB", + "digest": "70424945cc94", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:1.8b-chat-v2.5-q4_K_S", + "name": "internlm2:1.8b-chat-v2.5-q4_K_S", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "1.1GB", + "digest": "027cb3cac986", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:1.8b-chat-v2.5-q5_0", + "name": "internlm2:1.8b-chat-v2.5-q5_0", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "1.3GB", + "digest": "b0a6511d9a3d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:1.8b-chat-v2.5-q5_1", + "name": "internlm2:1.8b-chat-v2.5-q5_1", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "1.4GB", + "digest": "5e6a4506e50c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:1.8b-chat-v2.5-q5_K_M", + "name": "internlm2:1.8b-chat-v2.5-q5_K_M", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "1.4GB", + "digest": "24f16cf9917b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:1.8b-chat-v2.5-q5_K_S", + "name": "internlm2:1.8b-chat-v2.5-q5_K_S", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "1.3GB", + "digest": "024fd646cb43", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:1.8b-chat-v2.5-q6_K", + "name": "internlm2:1.8b-chat-v2.5-q6_K", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "1.6GB", + "digest": "f840db8f213c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:1.8b-chat-v2.5-q8_0", + "name": "internlm2:1.8b-chat-v2.5-q8_0", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "2.0GB", + "digest": "664a8f24ed79", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:20b-chat-v2.5-fp16", + "name": "internlm2:20b-chat-v2.5-fp16", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "40GB", + "digest": "b6d6213233ce", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:20b-chat-v2.5-q2_K", + "name": "internlm2:20b-chat-v2.5-q2_K", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "7.5GB", + "digest": "0c3013e60522", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:20b-chat-v2.5-q3_K_L", + "name": "internlm2:20b-chat-v2.5-q3_K_L", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "11GB", + "digest": "1d50713ae6a4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:20b-chat-v2.5-q3_K_M", + "name": "internlm2:20b-chat-v2.5-q3_K_M", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "9.7GB", + "digest": "a9e30d43b790", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:20b-chat-v2.5-q3_K_S", + "name": "internlm2:20b-chat-v2.5-q3_K_S", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "8.8GB", + "digest": "29d205fe5245", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:20b-chat-v2.5-q4_0", + "name": "internlm2:20b-chat-v2.5-q4_0", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "11GB", + "digest": "a864ac8dade2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:20b-chat-v2.5-q4_1", + "name": "internlm2:20b-chat-v2.5-q4_1", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "13GB", + "digest": "8081fcbec171", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:20b-chat-v2.5-q4_K_M", + "name": "internlm2:20b-chat-v2.5-q4_K_M", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "12GB", + "digest": "b4c0bac62552", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:20b-chat-v2.5-q4_K_S", + "name": "internlm2:20b-chat-v2.5-q4_K_S", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "11GB", + "digest": "9628de0a310e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:20b-chat-v2.5-q5_0", + "name": "internlm2:20b-chat-v2.5-q5_0", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "14GB", + "digest": "f96f8f7f353c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:20b-chat-v2.5-q5_1", + "name": "internlm2:20b-chat-v2.5-q5_1", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "15GB", + "digest": "59d4bc3a7d50", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:20b-chat-v2.5-q5_K_M", + "name": "internlm2:20b-chat-v2.5-q5_K_M", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "14GB", + "digest": "a52063ceb166", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:20b-chat-v2.5-q5_K_S", + "name": "internlm2:20b-chat-v2.5-q5_K_S", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "14GB", + "digest": "a4c6e3937e92", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:20b-chat-v2.5-q6_K", + "name": "internlm2:20b-chat-v2.5-q6_K", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "16GB", + "digest": "a1ae726f5e10", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:20b-chat-v2.5-q8_0", + "name": "internlm2:20b-chat-v2.5-q8_0", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "21GB", + "digest": "e172d89777bd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:7b-chat-1m-v2.5-fp16", + "name": "internlm2:7b-chat-1m-v2.5-fp16", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "15GB", + "digest": "ef00c6c9e322", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:7b-chat-1m-v2.5-q2_K", + "name": "internlm2:7b-chat-1m-v2.5-q2_K", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "3.0GB", + "digest": "d84dd7a28059", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:7b-chat-1m-v2.5-q3_K_L", + "name": "internlm2:7b-chat-1m-v2.5-q3_K_L", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "4.1GB", + "digest": "6166f50235bc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:7b-chat-1m-v2.5-q3_K_M", + "name": "internlm2:7b-chat-1m-v2.5-q3_K_M", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "3.8GB", + "digest": "001eab78e4e0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:7b-chat-1m-v2.5-q3_K_S", + "name": "internlm2:7b-chat-1m-v2.5-q3_K_S", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "3.5GB", + "digest": "d4a28a692833", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:7b-chat-1m-v2.5-q4_0", + "name": "internlm2:7b-chat-1m-v2.5-q4_0", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "4.5GB", + "digest": "f51a58d004a3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:7b-chat-1m-v2.5-q4_1", + "name": "internlm2:7b-chat-1m-v2.5-q4_1", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "4.9GB", + "digest": "3961c56138a6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:7b-chat-1m-v2.5-q4_K_M", + "name": "internlm2:7b-chat-1m-v2.5-q4_K_M", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "4.7GB", + "digest": "9b2616f8cbc2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:7b-chat-1m-v2.5-q4_K_S", + "name": "internlm2:7b-chat-1m-v2.5-q4_K_S", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "4.5GB", + "digest": "b3d618c89ac3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:7b-chat-1m-v2.5-q5_0", + "name": "internlm2:7b-chat-1m-v2.5-q5_0", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "5.4GB", + "digest": "12f9db169d91", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:7b-chat-1m-v2.5-q5_1", + "name": "internlm2:7b-chat-1m-v2.5-q5_1", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "5.8GB", + "digest": "407770e125a5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:7b-chat-1m-v2.5-q5_K_M", + "name": "internlm2:7b-chat-1m-v2.5-q5_K_M", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "5.5GB", + "digest": "4d68427e8c8b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:7b-chat-1m-v2.5-q5_K_S", + "name": "internlm2:7b-chat-1m-v2.5-q5_K_S", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "5.4GB", + "digest": "285900570500", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:7b-chat-1m-v2.5-q6_K", + "name": "internlm2:7b-chat-1m-v2.5-q6_K", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "6.4GB", + "digest": "062f787aba89", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:7b-chat-1m-v2.5-q8_0", + "name": "internlm2:7b-chat-1m-v2.5-q8_0", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "8.2GB", + "digest": "ff47159cf206", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:7b-chat-v2.5-fp16", + "name": "internlm2:7b-chat-v2.5-fp16", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "15GB", + "digest": "5b289197c4b4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:7b-chat-v2.5-q2_K", + "name": "internlm2:7b-chat-v2.5-q2_K", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "3.0GB", + "digest": "49bfefea4f49", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:7b-chat-v2.5-q3_K_L", + "name": "internlm2:7b-chat-v2.5-q3_K_L", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "4.1GB", + "digest": "c64aca8ea43c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:7b-chat-v2.5-q3_K_M", + "name": "internlm2:7b-chat-v2.5-q3_K_M", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "3.8GB", + "digest": "84781d712afc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:7b-chat-v2.5-q3_K_S", + "name": "internlm2:7b-chat-v2.5-q3_K_S", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "3.5GB", + "digest": "6cfb8055242b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:7b-chat-v2.5-q4_0", + "name": "internlm2:7b-chat-v2.5-q4_0", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "4.5GB", + "digest": "5050e36678ab", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:7b-chat-v2.5-q4_1", + "name": "internlm2:7b-chat-v2.5-q4_1", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "4.9GB", + "digest": "8f50455862f0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:7b-chat-v2.5-q4_K_M", + "name": "internlm2:7b-chat-v2.5-q4_K_M", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "4.7GB", + "digest": "aa0c9b808286", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:7b-chat-v2.5-q4_K_S", + "name": "internlm2:7b-chat-v2.5-q4_K_S", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "4.5GB", + "digest": "e978b21250f8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:7b-chat-v2.5-q5_0", + "name": "internlm2:7b-chat-v2.5-q5_0", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "5.4GB", + "digest": "472749a597ec", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:7b-chat-v2.5-q5_1", + "name": "internlm2:7b-chat-v2.5-q5_1", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "5.8GB", + "digest": "15e08b317f2c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:7b-chat-v2.5-q5_K_M", + "name": "internlm2:7b-chat-v2.5-q5_K_M", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "5.5GB", + "digest": "3be8d46eeb16", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:7b-chat-v2.5-q5_K_S", + "name": "internlm2:7b-chat-v2.5-q5_K_S", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "5.4GB", + "digest": "03a8263a7983", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:7b-chat-v2.5-q6_K", + "name": "internlm2:7b-chat-v2.5-q6_K", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "6.4GB", + "digest": "d1e1c05708e3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "internlm2:7b-chat-v2.5-q8_0", + "name": "internlm2:7b-chat-v2.5-q8_0", + "description": "InternLM2.5 is a 7B parameter model tailored for practical scenarios with outstanding reasoning capability.", + "size": "8.2GB", + "digest": "5aeab5b4cbc2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "samantha-mistral", + "name": "samantha-mistral", + "description": "A companion assistant trained in philosophy, psychology, and personal relationships. Based on Mistral.", + "size": "4.1GB", + "digest": "f7c8c9be1da0", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "samantha-mistral:7b", + "name": "samantha-mistral:7b", + "description": "A companion assistant trained in philosophy, psychology, and personal relationships. Based on Mistral.", + "size": "4.1GB", + "digest": "f7c8c9be1da0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "samantha-mistral:7b-instruct-fp16", + "name": "samantha-mistral:7b-instruct-fp16", + "description": "A companion assistant trained in philosophy, psychology, and personal relationships. Based on Mistral.", + "size": "14GB", + "digest": "84081f5ce595", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "samantha-mistral:7b-instruct-q2_K", + "name": "samantha-mistral:7b-instruct-q2_K", + "description": "A companion assistant trained in philosophy, psychology, and personal relationships. Based on Mistral.", + "size": "3.1GB", + "digest": "96a147f46c78", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "samantha-mistral:7b-instruct-q3_K_L", + "name": "samantha-mistral:7b-instruct-q3_K_L", + "description": "A companion assistant trained in philosophy, psychology, and personal relationships. Based on Mistral.", + "size": "3.8GB", + "digest": "8a362799bb4c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "samantha-mistral:7b-instruct-q3_K_M", + "name": "samantha-mistral:7b-instruct-q3_K_M", + "description": "A companion assistant trained in philosophy, psychology, and personal relationships. Based on Mistral.", + "size": "3.5GB", + "digest": "d15ec1ea22a4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "samantha-mistral:7b-instruct-q3_K_S", + "name": "samantha-mistral:7b-instruct-q3_K_S", + "description": "A companion assistant trained in philosophy, psychology, and personal relationships. Based on Mistral.", + "size": "3.2GB", + "digest": "62fd2b9a2876", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "samantha-mistral:7b-instruct-q4_0", + "name": "samantha-mistral:7b-instruct-q4_0", + "description": "A companion assistant trained in philosophy, psychology, and personal relationships. Based on Mistral.", + "size": "4.1GB", + "digest": "024406c7422a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "samantha-mistral:7b-instruct-q4_1", + "name": "samantha-mistral:7b-instruct-q4_1", + "description": "A companion assistant trained in philosophy, psychology, and personal relationships. Based on Mistral.", + "size": "4.6GB", + "digest": "8794444548a4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "samantha-mistral:7b-instruct-q4_K_M", + "name": "samantha-mistral:7b-instruct-q4_K_M", + "description": "A companion assistant trained in philosophy, psychology, and personal relationships. Based on Mistral.", + "size": "4.4GB", + "digest": "0f6d2b5ca5e2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "samantha-mistral:7b-instruct-q4_K_S", + "name": "samantha-mistral:7b-instruct-q4_K_S", + "description": "A companion assistant trained in philosophy, psychology, and personal relationships. Based on Mistral.", + "size": "4.1GB", + "digest": "7628c0eabf6e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "samantha-mistral:7b-instruct-q5_0", + "name": "samantha-mistral:7b-instruct-q5_0", + "description": "A companion assistant trained in philosophy, psychology, and personal relationships. Based on Mistral.", + "size": "5.0GB", + "digest": "68d25cf334e8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "samantha-mistral:7b-instruct-q5_1", + "name": "samantha-mistral:7b-instruct-q5_1", + "description": "A companion assistant trained in philosophy, psychology, and personal relationships. Based on Mistral.", + "size": "5.4GB", + "digest": "4f2a05b98ad7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "samantha-mistral:7b-instruct-q5_K_M", + "name": "samantha-mistral:7b-instruct-q5_K_M", + "description": "A companion assistant trained in philosophy, psychology, and personal relationships. Based on Mistral.", + "size": "5.1GB", + "digest": "c74ed33532e3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "samantha-mistral:7b-instruct-q5_K_S", + "name": "samantha-mistral:7b-instruct-q5_K_S", + "description": "A companion assistant trained in philosophy, psychology, and personal relationships. Based on Mistral.", + "size": "5.0GB", + "digest": "d3a4b4169288", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "samantha-mistral:7b-instruct-q6_K", + "name": "samantha-mistral:7b-instruct-q6_K", + "description": "A companion assistant trained in philosophy, psychology, and personal relationships. Based on Mistral.", + "size": "5.9GB", + "digest": "8fdefc023b71", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "samantha-mistral:7b-instruct-q8_0", + "name": "samantha-mistral:7b-instruct-q8_0", + "description": "A companion assistant trained in philosophy, psychology, and personal relationships. Based on Mistral.", + "size": "7.7GB", + "digest": "c555922ee59b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "samantha-mistral:7b-text", + "name": "samantha-mistral:7b-text", + "description": "A companion assistant trained in philosophy, psychology, and personal relationships. Based on Mistral.", + "size": "4.1GB", + "digest": "b085c9c5fcec", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "samantha-mistral:7b-text-fp16", + "name": "samantha-mistral:7b-text-fp16", + "description": "A companion assistant trained in philosophy, psychology, and personal relationships. Based on Mistral.", + "size": "14GB", + "digest": "18f0d3b9dab7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "samantha-mistral:7b-text-q2_K", + "name": "samantha-mistral:7b-text-q2_K", + "description": "A companion assistant trained in philosophy, psychology, and personal relationships. Based on Mistral.", + "size": "3.1GB", + "digest": "fad0a3e1761e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "samantha-mistral:7b-text-q3_K_L", + "name": "samantha-mistral:7b-text-q3_K_L", + "description": "A companion assistant trained in philosophy, psychology, and personal relationships. Based on Mistral.", + "size": "3.8GB", + "digest": "e7eda3fb21ce", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "samantha-mistral:7b-text-q3_K_M", + "name": "samantha-mistral:7b-text-q3_K_M", + "description": "A companion assistant trained in philosophy, psychology, and personal relationships. Based on Mistral.", + "size": "3.5GB", + "digest": "2b119f04be81", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "samantha-mistral:7b-text-q3_K_S", + "name": "samantha-mistral:7b-text-q3_K_S", + "description": "A companion assistant trained in philosophy, psychology, and personal relationships. Based on Mistral.", + "size": "3.2GB", + "digest": "e9be9d2c1626", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "samantha-mistral:7b-text-q4_0", + "name": "samantha-mistral:7b-text-q4_0", + "description": "A companion assistant trained in philosophy, psychology, and personal relationships. Based on Mistral.", + "size": "4.1GB", + "digest": "b085c9c5fcec", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "samantha-mistral:7b-text-q4_1", + "name": "samantha-mistral:7b-text-q4_1", + "description": "A companion assistant trained in philosophy, psychology, and personal relationships. Based on Mistral.", + "size": "4.6GB", + "digest": "85970f1f192a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "samantha-mistral:7b-text-q4_K_M", + "name": "samantha-mistral:7b-text-q4_K_M", + "description": "A companion assistant trained in philosophy, psychology, and personal relationships. Based on Mistral.", + "size": "4.4GB", + "digest": "39cf8171959a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "samantha-mistral:7b-text-q4_K_S", + "name": "samantha-mistral:7b-text-q4_K_S", + "description": "A companion assistant trained in philosophy, psychology, and personal relationships. Based on Mistral.", + "size": "4.1GB", + "digest": "7b0b68d63c1f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "samantha-mistral:7b-text-q5_0", + "name": "samantha-mistral:7b-text-q5_0", + "description": "A companion assistant trained in philosophy, psychology, and personal relationships. Based on Mistral.", + "size": "5.0GB", + "digest": "d4bfb5684edc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "samantha-mistral:7b-text-q5_1", + "name": "samantha-mistral:7b-text-q5_1", + "description": "A companion assistant trained in philosophy, psychology, and personal relationships. Based on Mistral.", + "size": "5.4GB", + "digest": "80d8a3a2cda0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "samantha-mistral:7b-text-q5_K_M", + "name": "samantha-mistral:7b-text-q5_K_M", + "description": "A companion assistant trained in philosophy, psychology, and personal relationships. Based on Mistral.", + "size": "5.1GB", + "digest": "5c857161b387", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "samantha-mistral:7b-text-q5_K_S", + "name": "samantha-mistral:7b-text-q5_K_S", + "description": "A companion assistant trained in philosophy, psychology, and personal relationships. Based on Mistral.", + "size": "5.0GB", + "digest": "5dcb0fd60a87", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "samantha-mistral:7b-text-q6_K", + "name": "samantha-mistral:7b-text-q6_K", + "description": "A companion assistant trained in philosophy, psychology, and personal relationships. Based on Mistral.", + "size": "5.9GB", + "digest": "a06d56b9f941", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "samantha-mistral:7b-text-q8_0", + "name": "samantha-mistral:7b-text-q8_0", + "description": "A companion assistant trained in philosophy, psychology, and personal relationships. Based on Mistral.", + "size": "7.7GB", + "digest": "f77f5c9b59eb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "samantha-mistral:7b-v1.2-text", + "name": "samantha-mistral:7b-v1.2-text", + "description": "A companion assistant trained in philosophy, psychology, and personal relationships. Based on Mistral.", + "size": "4.1GB", + "digest": "f7c8c9be1da0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "samantha-mistral:7b-v1.2-text-fp16", + "name": "samantha-mistral:7b-v1.2-text-fp16", + "description": "A companion assistant trained in philosophy, psychology, and personal relationships. Based on Mistral.", + "size": "14GB", + "digest": "463d6b8187c1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "samantha-mistral:7b-v1.2-text-q2_K", + "name": "samantha-mistral:7b-v1.2-text-q2_K", + "description": "A companion assistant trained in philosophy, psychology, and personal relationships. Based on Mistral.", + "size": "3.1GB", + "digest": "7b218927bbd2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "samantha-mistral:7b-v1.2-text-q3_K_L", + "name": "samantha-mistral:7b-v1.2-text-q3_K_L", + "description": "A companion assistant trained in philosophy, psychology, and personal relationships. Based on Mistral.", + "size": "3.8GB", + "digest": "58fb1513b0bd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "samantha-mistral:7b-v1.2-text-q3_K_M", + "name": "samantha-mistral:7b-v1.2-text-q3_K_M", + "description": "A companion assistant trained in philosophy, psychology, and personal relationships. Based on Mistral.", + "size": "3.5GB", + "digest": "b6193d2efa40", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "samantha-mistral:7b-v1.2-text-q3_K_S", + "name": "samantha-mistral:7b-v1.2-text-q3_K_S", + "description": "A companion assistant trained in philosophy, psychology, and personal relationships. Based on Mistral.", + "size": "3.2GB", + "digest": "9b8db3fe08c2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "samantha-mistral:7b-v1.2-text-q4_0", + "name": "samantha-mistral:7b-v1.2-text-q4_0", + "description": "A companion assistant trained in philosophy, psychology, and personal relationships. Based on Mistral.", + "size": "4.1GB", + "digest": "f7c8c9be1da0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "samantha-mistral:7b-v1.2-text-q4_1", + "name": "samantha-mistral:7b-v1.2-text-q4_1", + "description": "A companion assistant trained in philosophy, psychology, and personal relationships. Based on Mistral.", + "size": "4.6GB", + "digest": "1f5844c5902c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "samantha-mistral:7b-v1.2-text-q4_K_M", + "name": "samantha-mistral:7b-v1.2-text-q4_K_M", + "description": "A companion assistant trained in philosophy, psychology, and personal relationships. Based on Mistral.", + "size": "4.4GB", + "digest": "ff1e08836eec", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "samantha-mistral:7b-v1.2-text-q4_K_S", + "name": "samantha-mistral:7b-v1.2-text-q4_K_S", + "description": "A companion assistant trained in philosophy, psychology, and personal relationships. Based on Mistral.", + "size": "4.1GB", + "digest": "444790e2878d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "samantha-mistral:7b-v1.2-text-q5_0", + "name": "samantha-mistral:7b-v1.2-text-q5_0", + "description": "A companion assistant trained in philosophy, psychology, and personal relationships. Based on Mistral.", + "size": "5.0GB", + "digest": "3871c24e3323", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "samantha-mistral:7b-v1.2-text-q5_1", + "name": "samantha-mistral:7b-v1.2-text-q5_1", + "description": "A companion assistant trained in philosophy, psychology, and personal relationships. Based on Mistral.", + "size": "5.4GB", + "digest": "141eea79136d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "samantha-mistral:7b-v1.2-text-q5_K_M", + "name": "samantha-mistral:7b-v1.2-text-q5_K_M", + "description": "A companion assistant trained in philosophy, psychology, and personal relationships. Based on Mistral.", + "size": "5.1GB", + "digest": "759bccff2e2e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "samantha-mistral:7b-v1.2-text-q5_K_S", + "name": "samantha-mistral:7b-v1.2-text-q5_K_S", + "description": "A companion assistant trained in philosophy, psychology, and personal relationships. Based on Mistral.", + "size": "5.0GB", + "digest": "192548ac3ab0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "samantha-mistral:7b-v1.2-text-q6_K", + "name": "samantha-mistral:7b-v1.2-text-q6_K", + "description": "A companion assistant trained in philosophy, psychology, and personal relationships. Based on Mistral.", + "size": "5.9GB", + "digest": "28b60c3a346d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "samantha-mistral:7b-v1.2-text-q8_0", + "name": "samantha-mistral:7b-v1.2-text-q8_0", + "description": "A companion assistant trained in philosophy, psychology, and personal relationships. Based on Mistral.", + "size": "7.7GB", + "digest": "495b300e8bb1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon", + "name": "falcon", + "description": "A large language model built by the Technology Innovation Institute (TII) for use in summarization, text generation, and chat bots.", + "size": "4.2GB", + "digest": "4280f7257e73", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "falcon:7b", + "name": "falcon:7b", + "description": "A large language model built by the Technology Innovation Institute (TII) for use in summarization, text generation, and chat bots.", + "size": "4.2GB", + "digest": "4280f7257e73", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon:40b", + "name": "falcon:40b", + "description": "A large language model built by the Technology Innovation Institute (TII) for use in summarization, text generation, and chat bots.", + "size": "24GB", + "digest": "bc9368437a24", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon:180b", + "name": "falcon:180b", + "description": "A large language model built by the Technology Innovation Institute (TII) for use in summarization, text generation, and chat bots.", + "size": "101GB", + "digest": "e2bc879d7cee", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon:180b-chat", + "name": "falcon:180b-chat", + "description": "A large language model built by the Technology Innovation Institute (TII) for use in summarization, text generation, and chat bots.", + "size": "101GB", + "digest": "e2bc879d7cee", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon:180b-chat-q4_0", + "name": "falcon:180b-chat-q4_0", + "description": "A large language model built by the Technology Innovation Institute (TII) for use in summarization, text generation, and chat bots.", + "size": "101GB", + "digest": "e2bc879d7cee", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon:180b-text", + "name": "falcon:180b-text", + "description": "A large language model built by the Technology Innovation Institute (TII) for use in summarization, text generation, and chat bots.", + "size": "101GB", + "digest": "f5905a53ed4b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon:180b-text-q4_0", + "name": "falcon:180b-text-q4_0", + "description": "A large language model built by the Technology Innovation Institute (TII) for use in summarization, text generation, and chat bots.", + "size": "101GB", + "digest": "f5905a53ed4b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon:40b-instruct", + "name": "falcon:40b-instruct", + "description": "A large language model built by the Technology Innovation Institute (TII) for use in summarization, text generation, and chat bots.", + "size": "24GB", + "digest": "bc9368437a24", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon:40b-instruct-fp16", + "name": "falcon:40b-instruct-fp16", + "description": "A large language model built by the Technology Innovation Institute (TII) for use in summarization, text generation, and chat bots.", + "size": "84GB", + "digest": "7cbd92dfea70", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon:40b-instruct-q4_0", + "name": "falcon:40b-instruct-q4_0", + "description": "A large language model built by the Technology Innovation Institute (TII) for use in summarization, text generation, and chat bots.", + "size": "24GB", + "digest": "bc9368437a24", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon:40b-instruct-q4_1", + "name": "falcon:40b-instruct-q4_1", + "description": "A large language model built by the Technology Innovation Institute (TII) for use in summarization, text generation, and chat bots.", + "size": "26GB", + "digest": "9ec7eaf6cd59", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon:40b-instruct-q5_0", + "name": "falcon:40b-instruct-q5_0", + "description": "A large language model built by the Technology Innovation Institute (TII) for use in summarization, text generation, and chat bots.", + "size": "29GB", + "digest": "ca8da6223021", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon:40b-instruct-q5_1", + "name": "falcon:40b-instruct-q5_1", + "description": "A large language model built by the Technology Innovation Institute (TII) for use in summarization, text generation, and chat bots.", + "size": "32GB", + "digest": "9e4a62b9534b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon:40b-instruct-q8_0", + "name": "falcon:40b-instruct-q8_0", + "description": "A large language model built by the Technology Innovation Institute (TII) for use in summarization, text generation, and chat bots.", + "size": "44GB", + "digest": "6f9c09b99fc6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon:40b-text", + "name": "falcon:40b-text", + "description": "A large language model built by the Technology Innovation Institute (TII) for use in summarization, text generation, and chat bots.", + "size": "24GB", + "digest": "b4137657e4e9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon:40b-text-fp16", + "name": "falcon:40b-text-fp16", + "description": "A large language model built by the Technology Innovation Institute (TII) for use in summarization, text generation, and chat bots.", + "size": "84GB", + "digest": "bc0d50593221", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon:40b-text-q4_0", + "name": "falcon:40b-text-q4_0", + "description": "A large language model built by the Technology Innovation Institute (TII) for use in summarization, text generation, and chat bots.", + "size": "24GB", + "digest": "b4137657e4e9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon:40b-text-q4_1", + "name": "falcon:40b-text-q4_1", + "description": "A large language model built by the Technology Innovation Institute (TII) for use in summarization, text generation, and chat bots.", + "size": "26GB", + "digest": "d9b1df212f90", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon:40b-text-q5_0", + "name": "falcon:40b-text-q5_0", + "description": "A large language model built by the Technology Innovation Institute (TII) for use in summarization, text generation, and chat bots.", + "size": "29GB", + "digest": "753deb72fbcd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon:40b-text-q5_1", + "name": "falcon:40b-text-q5_1", + "description": "A large language model built by the Technology Innovation Institute (TII) for use in summarization, text generation, and chat bots.", + "size": "32GB", + "digest": "10c176bb433f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon:40b-text-q8_0", + "name": "falcon:40b-text-q8_0", + "description": "A large language model built by the Technology Innovation Institute (TII) for use in summarization, text generation, and chat bots.", + "size": "44GB", + "digest": "3573ccb06045", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon:7b-instruct", + "name": "falcon:7b-instruct", + "description": "A large language model built by the Technology Innovation Institute (TII) for use in summarization, text generation, and chat bots.", + "size": "4.2GB", + "digest": "4280f7257e73", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon:7b-instruct-fp16", + "name": "falcon:7b-instruct-fp16", + "description": "A large language model built by the Technology Innovation Institute (TII) for use in summarization, text generation, and chat bots.", + "size": "14GB", + "digest": "696dae724ad2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon:7b-instruct-q4_0", + "name": "falcon:7b-instruct-q4_0", + "description": "A large language model built by the Technology Innovation Institute (TII) for use in summarization, text generation, and chat bots.", + "size": "4.2GB", + "digest": "4280f7257e73", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon:7b-instruct-q4_1", + "name": "falcon:7b-instruct-q4_1", + "description": "A large language model built by the Technology Innovation Institute (TII) for use in summarization, text generation, and chat bots.", + "size": "4.6GB", + "digest": "f06a70f0b7d2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon:7b-instruct-q5_0", + "name": "falcon:7b-instruct-q5_0", + "description": "A large language model built by the Technology Innovation Institute (TII) for use in summarization, text generation, and chat bots.", + "size": "5.1GB", + "digest": "ef910bf6af84", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon:7b-instruct-q5_1", + "name": "falcon:7b-instruct-q5_1", + "description": "A large language model built by the Technology Innovation Institute (TII) for use in summarization, text generation, and chat bots.", + "size": "5.5GB", + "digest": "878a7290ef26", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon:7b-instruct-q8_0", + "name": "falcon:7b-instruct-q8_0", + "description": "A large language model built by the Technology Innovation Institute (TII) for use in summarization, text generation, and chat bots.", + "size": "7.7GB", + "digest": "836fb3b71733", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon:7b-text", + "name": "falcon:7b-text", + "description": "A large language model built by the Technology Innovation Institute (TII) for use in summarization, text generation, and chat bots.", + "size": "4.2GB", + "digest": "e449cf4ba505", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon:7b-text-fp16", + "name": "falcon:7b-text-fp16", + "description": "A large language model built by the Technology Innovation Institute (TII) for use in summarization, text generation, and chat bots.", + "size": "14GB", + "digest": "c2de45e2ed45", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon:7b-text-q4_0", + "name": "falcon:7b-text-q4_0", + "description": "A large language model built by the Technology Innovation Institute (TII) for use in summarization, text generation, and chat bots.", + "size": "4.2GB", + "digest": "e449cf4ba505", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon:7b-text-q4_1", + "name": "falcon:7b-text-q4_1", + "description": "A large language model built by the Technology Innovation Institute (TII) for use in summarization, text generation, and chat bots.", + "size": "4.6GB", + "digest": "51498c22efa8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon:7b-text-q5_0", + "name": "falcon:7b-text-q5_0", + "description": "A large language model built by the Technology Innovation Institute (TII) for use in summarization, text generation, and chat bots.", + "size": "5.1GB", + "digest": "539880f876a8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon:7b-text-q5_1", + "name": "falcon:7b-text-q5_1", + "description": "A large language model built by the Technology Innovation Institute (TII) for use in summarization, text generation, and chat bots.", + "size": "5.5GB", + "digest": "3a4e772d215e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon:7b-text-q8_0", + "name": "falcon:7b-text-q8_0", + "description": "A large language model built by the Technology Innovation Institute (TII) for use in summarization, text generation, and chat bots.", + "size": "7.7GB", + "digest": "9e4ddb71d35d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon:instruct", + "name": "falcon:instruct", + "description": "A large language model built by the Technology Innovation Institute (TII) for use in summarization, text generation, and chat bots.", + "size": "4.2GB", + "digest": "4280f7257e73", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon:text", + "name": "falcon:text", + "description": "A large language model built by the Technology Innovation Institute (TII) for use in summarization, text generation, and chat bots.", + "size": "4.2GB", + "digest": "e449cf4ba505", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-phi", + "name": "dolphin-phi", + "description": "2.7B uncensored Dolphin model by Eric Hartford, based on the Phi language model by Microsoft Research.", + "size": "1.6GB", + "digest": "c5761fc77240", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "dolphin-phi:2.7b", + "name": "dolphin-phi:2.7b", + "description": "2.7B uncensored Dolphin model by Eric Hartford, based on the Phi language model by Microsoft Research.", + "size": "1.6GB", + "digest": "c5761fc77240", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-phi:2.7b-v2.6", + "name": "dolphin-phi:2.7b-v2.6", + "description": "2.7B uncensored Dolphin model by Eric Hartford, based on the Phi language model by Microsoft Research.", + "size": "1.6GB", + "digest": "c5761fc77240", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-phi:2.7b-v2.6-q2_K", + "name": "dolphin-phi:2.7b-v2.6-q2_K", + "description": "2.7B uncensored Dolphin model by Eric Hartford, based on the Phi language model by Microsoft Research.", + "size": "1.2GB", + "digest": "7f54cec626b6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-phi:2.7b-v2.6-q3_K_L", + "name": "dolphin-phi:2.7b-v2.6-q3_K_L", + "description": "2.7B uncensored Dolphin model by Eric Hartford, based on the Phi language model by Microsoft Research.", + "size": "1.6GB", + "digest": "60c080a5bd9a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-phi:2.7b-v2.6-q3_K_M", + "name": "dolphin-phi:2.7b-v2.6-q3_K_M", + "description": "2.7B uncensored Dolphin model by Eric Hartford, based on the Phi language model by Microsoft Research.", + "size": "1.5GB", + "digest": "5e99163c66d3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-phi:2.7b-v2.6-q3_K_S", + "name": "dolphin-phi:2.7b-v2.6-q3_K_S", + "description": "2.7B uncensored Dolphin model by Eric Hartford, based on the Phi language model by Microsoft Research.", + "size": "1.3GB", + "digest": "5c03deb374c8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-phi:2.7b-v2.6-q4_0", + "name": "dolphin-phi:2.7b-v2.6-q4_0", + "description": "2.7B uncensored Dolphin model by Eric Hartford, based on the Phi language model by Microsoft Research.", + "size": "1.6GB", + "digest": "c5761fc77240", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-phi:2.7b-v2.6-q4_K_M", + "name": "dolphin-phi:2.7b-v2.6-q4_K_M", + "description": "2.7B uncensored Dolphin model by Eric Hartford, based on the Phi language model by Microsoft Research.", + "size": "1.8GB", + "digest": "cff9506fc46b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-phi:2.7b-v2.6-q4_K_S", + "name": "dolphin-phi:2.7b-v2.6-q4_K_S", + "description": "2.7B uncensored Dolphin model by Eric Hartford, based on the Phi language model by Microsoft Research.", + "size": "1.6GB", + "digest": "9ce1a8be68f2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-phi:2.7b-v2.6-q5_0", + "name": "dolphin-phi:2.7b-v2.6-q5_0", + "description": "2.7B uncensored Dolphin model by Eric Hartford, based on the Phi language model by Microsoft Research.", + "size": "1.9GB", + "digest": "7346eb8f523d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-phi:2.7b-v2.6-q5_K_M", + "name": "dolphin-phi:2.7b-v2.6-q5_K_M", + "description": "2.7B uncensored Dolphin model by Eric Hartford, based on the Phi language model by Microsoft Research.", + "size": "2.1GB", + "digest": "175d2f641dea", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-phi:2.7b-v2.6-q5_K_S", + "name": "dolphin-phi:2.7b-v2.6-q5_K_S", + "description": "2.7B uncensored Dolphin model by Eric Hartford, based on the Phi language model by Microsoft Research.", + "size": "1.9GB", + "digest": "3284ea06df25", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-phi:2.7b-v2.6-q6_K", + "name": "dolphin-phi:2.7b-v2.6-q6_K", + "description": "2.7B uncensored Dolphin model by Eric Hartford, based on the Phi language model by Microsoft Research.", + "size": "2.3GB", + "digest": "4a7162481650", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dolphin-phi:2.7b-v2.6-q8_0", + "name": "dolphin-phi:2.7b-v2.6-q8_0", + "description": "2.7B uncensored Dolphin model by Eric Hartford, based on the Phi language model by Microsoft Research.", + "size": "3.0GB", + "digest": "b6ba7363045d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nemotron-mini", + "name": "nemotron-mini", + "description": "A commercial-friendly small language model by NVIDIA optimized for roleplay, RAG QA, and function calling.", + "size": "2.7GB", + "digest": "ed76ab18784f", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "nemotron-mini:4b", + "name": "nemotron-mini:4b", + "description": "A commercial-friendly small language model by NVIDIA optimized for roleplay, RAG QA, and function calling.", + "size": "2.7GB", + "digest": "ed76ab18784f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nemotron-mini:4b-instruct-fp16", + "name": "nemotron-mini:4b-instruct-fp16", + "description": "A commercial-friendly small language model by NVIDIA optimized for roleplay, RAG QA, and function calling.", + "size": "8.4GB", + "digest": "d0d806e9853c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nemotron-mini:4b-instruct-q2_K", + "name": "nemotron-mini:4b-instruct-q2_K", + "description": "A commercial-friendly small language model by NVIDIA optimized for roleplay, RAG QA, and function calling.", + "size": "1.9GB", + "digest": "71c1aed58cc4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nemotron-mini:4b-instruct-q3_K_L", + "name": "nemotron-mini:4b-instruct-q3_K_L", + "description": "A commercial-friendly small language model by NVIDIA optimized for roleplay, RAG QA, and function calling.", + "size": "2.5GB", + "digest": "899020cd5b1e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nemotron-mini:4b-instruct-q3_K_M", + "name": "nemotron-mini:4b-instruct-q3_K_M", + "description": "A commercial-friendly small language model by NVIDIA optimized for roleplay, RAG QA, and function calling.", + "size": "2.3GB", + "digest": "91b07164ba46", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nemotron-mini:4b-instruct-q3_K_S", + "name": "nemotron-mini:4b-instruct-q3_K_S", + "description": "A commercial-friendly small language model by NVIDIA optimized for roleplay, RAG QA, and function calling.", + "size": "2.1GB", + "digest": "28cabdeeb76e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nemotron-mini:4b-instruct-q4_0", + "name": "nemotron-mini:4b-instruct-q4_0", + "description": "A commercial-friendly small language model by NVIDIA optimized for roleplay, RAG QA, and function calling.", + "size": "2.6GB", + "digest": "041bd339f71f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nemotron-mini:4b-instruct-q4_1", + "name": "nemotron-mini:4b-instruct-q4_1", + "description": "A commercial-friendly small language model by NVIDIA optimized for roleplay, RAG QA, and function calling.", + "size": "2.8GB", + "digest": "715f0114b145", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nemotron-mini:4b-instruct-q4_K_M", + "name": "nemotron-mini:4b-instruct-q4_K_M", + "description": "A commercial-friendly small language model by NVIDIA optimized for roleplay, RAG QA, and function calling.", + "size": "2.7GB", + "digest": "ed76ab18784f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nemotron-mini:4b-instruct-q4_K_S", + "name": "nemotron-mini:4b-instruct-q4_K_S", + "description": "A commercial-friendly small language model by NVIDIA optimized for roleplay, RAG QA, and function calling.", + "size": "2.6GB", + "digest": "59f3d2ea76f8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nemotron-mini:4b-instruct-q5_0", + "name": "nemotron-mini:4b-instruct-q5_0", + "description": "A commercial-friendly small language model by NVIDIA optimized for roleplay, RAG QA, and function calling.", + "size": "3.0GB", + "digest": "e5f64c7116d1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nemotron-mini:4b-instruct-q5_1", + "name": "nemotron-mini:4b-instruct-q5_1", + "description": "A commercial-friendly small language model by NVIDIA optimized for roleplay, RAG QA, and function calling.", + "size": "3.2GB", + "digest": "8c244be13dfe", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nemotron-mini:4b-instruct-q5_K_M", + "name": "nemotron-mini:4b-instruct-q5_K_M", + "description": "A commercial-friendly small language model by NVIDIA optimized for roleplay, RAG QA, and function calling.", + "size": "3.1GB", + "digest": "9e36e563dbdd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nemotron-mini:4b-instruct-q5_K_S", + "name": "nemotron-mini:4b-instruct-q5_K_S", + "description": "A commercial-friendly small language model by NVIDIA optimized for roleplay, RAG QA, and function calling.", + "size": "3.0GB", + "digest": "072f4b7daa17", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nemotron-mini:4b-instruct-q6_K", + "name": "nemotron-mini:4b-instruct-q6_K", + "description": "A commercial-friendly small language model by NVIDIA optimized for roleplay, RAG QA, and function calling.", + "size": "3.4GB", + "digest": "4cf36901911e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nemotron-mini:4b-instruct-q8_0", + "name": "nemotron-mini:4b-instruct-q8_0", + "description": "A commercial-friendly small language model by NVIDIA optimized for roleplay, RAG QA, and function calling.", + "size": "4.5GB", + "digest": "fe86a4d04f9f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca2", + "name": "orca2", + "description": "Orca 2 is built by Microsoft research, and are a fine-tuned version of Meta's Llama 2 models. The model is designed to excel particularly in reasoning.", + "size": "3.8GB", + "digest": "ea98cc422de3", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "orca2:7b", + "name": "orca2:7b", + "description": "Orca 2 is built by Microsoft research, and are a fine-tuned version of Meta's Llama 2 models. The model is designed to excel particularly in reasoning.", + "size": "3.8GB", + "digest": "ea98cc422de3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca2:13b", + "name": "orca2:13b", + "description": "Orca 2 is built by Microsoft research, and are a fine-tuned version of Meta's Llama 2 models. The model is designed to excel particularly in reasoning.", + "size": "7.4GB", + "digest": "a8dcfac3ac32", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca2:13b-fp16", + "name": "orca2:13b-fp16", + "description": "Orca 2 is built by Microsoft research, and are a fine-tuned version of Meta's Llama 2 models. The model is designed to excel particularly in reasoning.", + "size": "26GB", + "digest": "05c18f850182", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca2:13b-q2_K", + "name": "orca2:13b-q2_K", + "description": "Orca 2 is built by Microsoft research, and are a fine-tuned version of Meta's Llama 2 models. The model is designed to excel particularly in reasoning.", + "size": "5.4GB", + "digest": "1894951dcdf4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca2:13b-q3_K_L", + "name": "orca2:13b-q3_K_L", + "description": "Orca 2 is built by Microsoft research, and are a fine-tuned version of Meta's Llama 2 models. The model is designed to excel particularly in reasoning.", + "size": "6.9GB", + "digest": "9fcd1fe1c136", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca2:13b-q3_K_M", + "name": "orca2:13b-q3_K_M", + "description": "Orca 2 is built by Microsoft research, and are a fine-tuned version of Meta's Llama 2 models. The model is designed to excel particularly in reasoning.", + "size": "6.3GB", + "digest": "bfb9c1d63867", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca2:13b-q3_K_S", + "name": "orca2:13b-q3_K_S", + "description": "Orca 2 is built by Microsoft research, and are a fine-tuned version of Meta's Llama 2 models. The model is designed to excel particularly in reasoning.", + "size": "5.7GB", + "digest": "2f11b018f3d9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca2:13b-q4_0", + "name": "orca2:13b-q4_0", + "description": "Orca 2 is built by Microsoft research, and are a fine-tuned version of Meta's Llama 2 models. The model is designed to excel particularly in reasoning.", + "size": "7.4GB", + "digest": "a8dcfac3ac32", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca2:13b-q4_1", + "name": "orca2:13b-q4_1", + "description": "Orca 2 is built by Microsoft research, and are a fine-tuned version of Meta's Llama 2 models. The model is designed to excel particularly in reasoning.", + "size": "8.2GB", + "digest": "5f4ea0781d67", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca2:13b-q4_K_M", + "name": "orca2:13b-q4_K_M", + "description": "Orca 2 is built by Microsoft research, and are a fine-tuned version of Meta's Llama 2 models. The model is designed to excel particularly in reasoning.", + "size": "7.9GB", + "digest": "d379f87d30c1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca2:13b-q4_K_S", + "name": "orca2:13b-q4_K_S", + "description": "Orca 2 is built by Microsoft research, and are a fine-tuned version of Meta's Llama 2 models. The model is designed to excel particularly in reasoning.", + "size": "7.4GB", + "digest": "474f0b43f3d9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca2:13b-q5_0", + "name": "orca2:13b-q5_0", + "description": "Orca 2 is built by Microsoft research, and are a fine-tuned version of Meta's Llama 2 models. The model is designed to excel particularly in reasoning.", + "size": "9.0GB", + "digest": "eee22c031e7b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca2:13b-q5_1", + "name": "orca2:13b-q5_1", + "description": "Orca 2 is built by Microsoft research, and are a fine-tuned version of Meta's Llama 2 models. The model is designed to excel particularly in reasoning.", + "size": "9.8GB", + "digest": "3a321577ac7e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca2:13b-q5_K_M", + "name": "orca2:13b-q5_K_M", + "description": "Orca 2 is built by Microsoft research, and are a fine-tuned version of Meta's Llama 2 models. The model is designed to excel particularly in reasoning.", + "size": "9.2GB", + "digest": "d5e443067226", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca2:13b-q5_K_S", + "name": "orca2:13b-q5_K_S", + "description": "Orca 2 is built by Microsoft research, and are a fine-tuned version of Meta's Llama 2 models. The model is designed to excel particularly in reasoning.", + "size": "9.0GB", + "digest": "f8e9283dfba9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca2:13b-q6_K", + "name": "orca2:13b-q6_K", + "description": "Orca 2 is built by Microsoft research, and are a fine-tuned version of Meta's Llama 2 models. The model is designed to excel particularly in reasoning.", + "size": "11GB", + "digest": "4c059cbdfec7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca2:13b-q8_0", + "name": "orca2:13b-q8_0", + "description": "Orca 2 is built by Microsoft research, and are a fine-tuned version of Meta's Llama 2 models. The model is designed to excel particularly in reasoning.", + "size": "14GB", + "digest": "4e9ddd77d77f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca2:7b-fp16", + "name": "orca2:7b-fp16", + "description": "Orca 2 is built by Microsoft research, and are a fine-tuned version of Meta's Llama 2 models. The model is designed to excel particularly in reasoning.", + "size": "13GB", + "digest": "61bd6364c766", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca2:7b-q2_K", + "name": "orca2:7b-q2_K", + "description": "Orca 2 is built by Microsoft research, and are a fine-tuned version of Meta's Llama 2 models. The model is designed to excel particularly in reasoning.", + "size": "2.8GB", + "digest": "2f2dab4b40ee", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca2:7b-q3_K_L", + "name": "orca2:7b-q3_K_L", + "description": "Orca 2 is built by Microsoft research, and are a fine-tuned version of Meta's Llama 2 models. The model is designed to excel particularly in reasoning.", + "size": "3.6GB", + "digest": "49d05d9decd4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca2:7b-q3_K_M", + "name": "orca2:7b-q3_K_M", + "description": "Orca 2 is built by Microsoft research, and are a fine-tuned version of Meta's Llama 2 models. The model is designed to excel particularly in reasoning.", + "size": "3.3GB", + "digest": "d4399b54aee2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca2:7b-q3_K_S", + "name": "orca2:7b-q3_K_S", + "description": "Orca 2 is built by Microsoft research, and are a fine-tuned version of Meta's Llama 2 models. The model is designed to excel particularly in reasoning.", + "size": "2.9GB", + "digest": "f0dd7ec070fa", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca2:7b-q4_0", + "name": "orca2:7b-q4_0", + "description": "Orca 2 is built by Microsoft research, and are a fine-tuned version of Meta's Llama 2 models. The model is designed to excel particularly in reasoning.", + "size": "3.8GB", + "digest": "ea98cc422de3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca2:7b-q4_1", + "name": "orca2:7b-q4_1", + "description": "Orca 2 is built by Microsoft research, and are a fine-tuned version of Meta's Llama 2 models. The model is designed to excel particularly in reasoning.", + "size": "4.2GB", + "digest": "3fea2b93215d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca2:7b-q4_K_M", + "name": "orca2:7b-q4_K_M", + "description": "Orca 2 is built by Microsoft research, and are a fine-tuned version of Meta's Llama 2 models. The model is designed to excel particularly in reasoning.", + "size": "4.1GB", + "digest": "93619d71625e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca2:7b-q4_K_S", + "name": "orca2:7b-q4_K_S", + "description": "Orca 2 is built by Microsoft research, and are a fine-tuned version of Meta's Llama 2 models. The model is designed to excel particularly in reasoning.", + "size": "3.9GB", + "digest": "d535ef02a017", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca2:7b-q5_0", + "name": "orca2:7b-q5_0", + "description": "Orca 2 is built by Microsoft research, and are a fine-tuned version of Meta's Llama 2 models. The model is designed to excel particularly in reasoning.", + "size": "4.7GB", + "digest": "0da3e963986f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca2:7b-q5_1", + "name": "orca2:7b-q5_1", + "description": "Orca 2 is built by Microsoft research, and are a fine-tuned version of Meta's Llama 2 models. The model is designed to excel particularly in reasoning.", + "size": "5.1GB", + "digest": "9e505122b129", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca2:7b-q5_K_M", + "name": "orca2:7b-q5_K_M", + "description": "Orca 2 is built by Microsoft research, and are a fine-tuned version of Meta's Llama 2 models. The model is designed to excel particularly in reasoning.", + "size": "4.8GB", + "digest": "156c325b1780", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca2:7b-q5_K_S", + "name": "orca2:7b-q5_K_S", + "description": "Orca 2 is built by Microsoft research, and are a fine-tuned version of Meta's Llama 2 models. The model is designed to excel particularly in reasoning.", + "size": "4.7GB", + "digest": "8e8d3fad4a9c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca2:7b-q6_K", + "name": "orca2:7b-q6_K", + "description": "Orca 2 is built by Microsoft research, and are a fine-tuned version of Meta's Llama 2 models. The model is designed to excel particularly in reasoning.", + "size": "5.5GB", + "digest": "5268e870e74e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "orca2:7b-q8_0", + "name": "orca2:7b-q8_0", + "description": "Orca 2 is built by Microsoft research, and are a fine-tuned version of Meta's Llama 2 models. The model is designed to excel particularly in reasoning.", + "size": "7.2GB", + "digest": "74bc8213e567", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nemotron", + "name": "nemotron", + "description": "Llama-3.1-Nemotron-70B-Instruct is a large language model customized by NVIDIA to improve the helpfulness of LLM generated responses to user queries.", + "size": "43GB", + "digest": "2262f047a28a", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "nemotron:70b", + "name": "nemotron:70b", + "description": "Llama-3.1-Nemotron-70B-Instruct is a large language model customized by NVIDIA to improve the helpfulness of LLM generated responses to user queries.", + "size": "43GB", + "digest": "2262f047a28a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nemotron:70b-instruct-fp16", + "name": "nemotron:70b-instruct-fp16", + "description": "Llama-3.1-Nemotron-70B-Instruct is a large language model customized by NVIDIA to improve the helpfulness of LLM generated responses to user queries.", + "size": "141GB", + "digest": "e02a46ff1109", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nemotron:70b-instruct-q2_K", + "name": "nemotron:70b-instruct-q2_K", + "description": "Llama-3.1-Nemotron-70B-Instruct is a large language model customized by NVIDIA to improve the helpfulness of LLM generated responses to user queries.", + "size": "26GB", + "digest": "f4743c4c6e52", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nemotron:70b-instruct-q3_K_L", + "name": "nemotron:70b-instruct-q3_K_L", + "description": "Llama-3.1-Nemotron-70B-Instruct is a large language model customized by NVIDIA to improve the helpfulness of LLM generated responses to user queries.", + "size": "37GB", + "digest": "a6c94d07d7c9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nemotron:70b-instruct-q3_K_M", + "name": "nemotron:70b-instruct-q3_K_M", + "description": "Llama-3.1-Nemotron-70B-Instruct is a large language model customized by NVIDIA to improve the helpfulness of LLM generated responses to user queries.", + "size": "34GB", + "digest": "a0a786c3dc39", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nemotron:70b-instruct-q3_K_S", + "name": "nemotron:70b-instruct-q3_K_S", + "description": "Llama-3.1-Nemotron-70B-Instruct is a large language model customized by NVIDIA to improve the helpfulness of LLM generated responses to user queries.", + "size": "31GB", + "digest": "49258a4a766a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nemotron:70b-instruct-q4_0", + "name": "nemotron:70b-instruct-q4_0", + "description": "Llama-3.1-Nemotron-70B-Instruct is a large language model customized by NVIDIA to improve the helpfulness of LLM generated responses to user queries.", + "size": "40GB", + "digest": "aade1b26eba3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nemotron:70b-instruct-q4_1", + "name": "nemotron:70b-instruct-q4_1", + "description": "Llama-3.1-Nemotron-70B-Instruct is a large language model customized by NVIDIA to improve the helpfulness of LLM generated responses to user queries.", + "size": "44GB", + "digest": "c463f99d4c5e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nemotron:70b-instruct-q4_K_M", + "name": "nemotron:70b-instruct-q4_K_M", + "description": "Llama-3.1-Nemotron-70B-Instruct is a large language model customized by NVIDIA to improve the helpfulness of LLM generated responses to user queries.", + "size": "43GB", + "digest": "2262f047a28a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nemotron:70b-instruct-q4_K_S", + "name": "nemotron:70b-instruct-q4_K_S", + "description": "Llama-3.1-Nemotron-70B-Instruct is a large language model customized by NVIDIA to improve the helpfulness of LLM generated responses to user queries.", + "size": "40GB", + "digest": "0e32f30ad742", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nemotron:70b-instruct-q5_0", + "name": "nemotron:70b-instruct-q5_0", + "description": "Llama-3.1-Nemotron-70B-Instruct is a large language model customized by NVIDIA to improve the helpfulness of LLM generated responses to user queries.", + "size": "49GB", + "digest": "4c83a56211a0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nemotron:70b-instruct-q5_1", + "name": "nemotron:70b-instruct-q5_1", + "description": "Llama-3.1-Nemotron-70B-Instruct is a large language model customized by NVIDIA to improve the helpfulness of LLM generated responses to user queries.", + "size": "53GB", + "digest": "32ce9fe7477b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nemotron:70b-instruct-q5_K_M", + "name": "nemotron:70b-instruct-q5_K_M", + "description": "Llama-3.1-Nemotron-70B-Instruct is a large language model customized by NVIDIA to improve the helpfulness of LLM generated responses to user queries.", + "size": "50GB", + "digest": "def2cefbe818", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nemotron:70b-instruct-q5_K_S", + "name": "nemotron:70b-instruct-q5_K_S", + "description": "Llama-3.1-Nemotron-70B-Instruct is a large language model customized by NVIDIA to improve the helpfulness of LLM generated responses to user queries.", + "size": "49GB", + "digest": "c5dfebb28f5f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nemotron:70b-instruct-q6_K", + "name": "nemotron:70b-instruct-q6_K", + "description": "Llama-3.1-Nemotron-70B-Instruct is a large language model customized by NVIDIA to improve the helpfulness of LLM generated responses to user queries.", + "size": "58GB", + "digest": "8d12c48f836a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nemotron:70b-instruct-q8_0", + "name": "nemotron:70b-instruct-q8_0", + "description": "Llama-3.1-Nemotron-70B-Instruct is a large language model customized by NVIDIA to improve the helpfulness of LLM generated responses to user queries.", + "size": "75GB", + "digest": "8865b9ab3285", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-dense", + "name": "granite3.1-dense", + "description": "The IBM Granite 2B and 8B models are text-only dense LLMs trained on over 12 trillion tokens of data, demonstrated significant improvements over their predecessors in performance and speed in IBM’s initial testing.", + "size": "5.0GB", + "digest": "34d3be74ec54", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "granite3.1-dense:2b", + "name": "granite3.1-dense:2b", + "description": "The IBM Granite 2B and 8B models are text-only dense LLMs trained on over 12 trillion tokens of data, demonstrated significant improvements over their predecessors in performance and speed in IBM’s initial testing.", + "size": "1.6GB", + "digest": "fba1ad01113e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-dense:8b", + "name": "granite3.1-dense:8b", + "description": "The IBM Granite 2B and 8B models are text-only dense LLMs trained on over 12 trillion tokens of data, demonstrated significant improvements over their predecessors in performance and speed in IBM’s initial testing.", + "size": "5.0GB", + "digest": "34d3be74ec54", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-dense:2b-instruct-fp16", + "name": "granite3.1-dense:2b-instruct-fp16", + "description": "The IBM Granite 2B and 8B models are text-only dense LLMs trained on over 12 trillion tokens of data, demonstrated significant improvements over their predecessors in performance and speed in IBM’s initial testing.", + "size": "5.1GB", + "digest": "1f64b4541957", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-dense:2b-instruct-q2_K", + "name": "granite3.1-dense:2b-instruct-q2_K", + "description": "The IBM Granite 2B and 8B models are text-only dense LLMs trained on over 12 trillion tokens of data, demonstrated significant improvements over their predecessors in performance and speed in IBM’s initial testing.", + "size": "1.0GB", + "digest": "f412eb659c66", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-dense:2b-instruct-q3_K_L", + "name": "granite3.1-dense:2b-instruct-q3_K_L", + "description": "The IBM Granite 2B and 8B models are text-only dense LLMs trained on over 12 trillion tokens of data, demonstrated significant improvements over their predecessors in performance and speed in IBM’s initial testing.", + "size": "1.4GB", + "digest": "85ad99cb9a18", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-dense:2b-instruct-q3_K_M", + "name": "granite3.1-dense:2b-instruct-q3_K_M", + "description": "The IBM Granite 2B and 8B models are text-only dense LLMs trained on over 12 trillion tokens of data, demonstrated significant improvements over their predecessors in performance and speed in IBM’s initial testing.", + "size": "1.3GB", + "digest": "d65eb61a1e65", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-dense:2b-instruct-q3_K_S", + "name": "granite3.1-dense:2b-instruct-q3_K_S", + "description": "The IBM Granite 2B and 8B models are text-only dense LLMs trained on over 12 trillion tokens of data, demonstrated significant improvements over their predecessors in performance and speed in IBM’s initial testing.", + "size": "1.2GB", + "digest": "74791f52899c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-dense:2b-instruct-q4_0", + "name": "granite3.1-dense:2b-instruct-q4_0", + "description": "The IBM Granite 2B and 8B models are text-only dense LLMs trained on over 12 trillion tokens of data, demonstrated significant improvements over their predecessors in performance and speed in IBM’s initial testing.", + "size": "1.5GB", + "digest": "7ed050a70760", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-dense:2b-instruct-q4_1", + "name": "granite3.1-dense:2b-instruct-q4_1", + "description": "The IBM Granite 2B and 8B models are text-only dense LLMs trained on over 12 trillion tokens of data, demonstrated significant improvements over their predecessors in performance and speed in IBM’s initial testing.", + "size": "1.6GB", + "digest": "c265a649f4f8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-dense:2b-instruct-q4_K_M", + "name": "granite3.1-dense:2b-instruct-q4_K_M", + "description": "The IBM Granite 2B and 8B models are text-only dense LLMs trained on over 12 trillion tokens of data, demonstrated significant improvements over their predecessors in performance and speed in IBM’s initial testing.", + "size": "1.6GB", + "digest": "fba1ad01113e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-dense:2b-instruct-q4_K_S", + "name": "granite3.1-dense:2b-instruct-q4_K_S", + "description": "The IBM Granite 2B and 8B models are text-only dense LLMs trained on over 12 trillion tokens of data, demonstrated significant improvements over their predecessors in performance and speed in IBM’s initial testing.", + "size": "1.5GB", + "digest": "a8d7602ade5f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-dense:2b-instruct-q5_0", + "name": "granite3.1-dense:2b-instruct-q5_0", + "description": "The IBM Granite 2B and 8B models are text-only dense LLMs trained on over 12 trillion tokens of data, demonstrated significant improvements over their predecessors in performance and speed in IBM’s initial testing.", + "size": "1.8GB", + "digest": "f26890da1451", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-dense:2b-instruct-q5_1", + "name": "granite3.1-dense:2b-instruct-q5_1", + "description": "The IBM Granite 2B and 8B models are text-only dense LLMs trained on over 12 trillion tokens of data, demonstrated significant improvements over their predecessors in performance and speed in IBM’s initial testing.", + "size": "1.9GB", + "digest": "35c067239cb5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-dense:2b-instruct-q5_K_M", + "name": "granite3.1-dense:2b-instruct-q5_K_M", + "description": "The IBM Granite 2B and 8B models are text-only dense LLMs trained on over 12 trillion tokens of data, demonstrated significant improvements over their predecessors in performance and speed in IBM’s initial testing.", + "size": "1.8GB", + "digest": "86cdcdb94cd6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-dense:2b-instruct-q5_K_S", + "name": "granite3.1-dense:2b-instruct-q5_K_S", + "description": "The IBM Granite 2B and 8B models are text-only dense LLMs trained on over 12 trillion tokens of data, demonstrated significant improvements over their predecessors in performance and speed in IBM’s initial testing.", + "size": "1.8GB", + "digest": "1a2b39f6e69c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-dense:2b-instruct-q6_K", + "name": "granite3.1-dense:2b-instruct-q6_K", + "description": "The IBM Granite 2B and 8B models are text-only dense LLMs trained on over 12 trillion tokens of data, demonstrated significant improvements over their predecessors in performance and speed in IBM’s initial testing.", + "size": "2.1GB", + "digest": "66d07595e1dc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-dense:2b-instruct-q8_0", + "name": "granite3.1-dense:2b-instruct-q8_0", + "description": "The IBM Granite 2B and 8B models are text-only dense LLMs trained on over 12 trillion tokens of data, demonstrated significant improvements over their predecessors in performance and speed in IBM’s initial testing.", + "size": "2.7GB", + "digest": "ef1441680161", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-dense:8b-instruct-fp16", + "name": "granite3.1-dense:8b-instruct-fp16", + "description": "The IBM Granite 2B and 8B models are text-only dense LLMs trained on over 12 trillion tokens of data, demonstrated significant improvements over their predecessors in performance and speed in IBM’s initial testing.", + "size": "16GB", + "digest": "51d4ae6e2b23", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-dense:8b-instruct-q2_K", + "name": "granite3.1-dense:8b-instruct-q2_K", + "description": "The IBM Granite 2B and 8B models are text-only dense LLMs trained on over 12 trillion tokens of data, demonstrated significant improvements over their predecessors in performance and speed in IBM’s initial testing.", + "size": "3.2GB", + "digest": "4b18119a5086", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-dense:8b-instruct-q3_K_L", + "name": "granite3.1-dense:8b-instruct-q3_K_L", + "description": "The IBM Granite 2B and 8B models are text-only dense LLMs trained on over 12 trillion tokens of data, demonstrated significant improvements over their predecessors in performance and speed in IBM’s initial testing.", + "size": "4.4GB", + "digest": "8f28ec28aafc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-dense:8b-instruct-q3_K_M", + "name": "granite3.1-dense:8b-instruct-q3_K_M", + "description": "The IBM Granite 2B and 8B models are text-only dense LLMs trained on over 12 trillion tokens of data, demonstrated significant improvements over their predecessors in performance and speed in IBM’s initial testing.", + "size": "4.0GB", + "digest": "0dc5c3ac8a1e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-dense:8b-instruct-q3_K_S", + "name": "granite3.1-dense:8b-instruct-q3_K_S", + "description": "The IBM Granite 2B and 8B models are text-only dense LLMs trained on over 12 trillion tokens of data, demonstrated significant improvements over their predecessors in performance and speed in IBM’s initial testing.", + "size": "3.6GB", + "digest": "338340c340cb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-dense:8b-instruct-q4_0", + "name": "granite3.1-dense:8b-instruct-q4_0", + "description": "The IBM Granite 2B and 8B models are text-only dense LLMs trained on over 12 trillion tokens of data, demonstrated significant improvements over their predecessors in performance and speed in IBM’s initial testing.", + "size": "4.7GB", + "digest": "fc2c18155205", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-dense:8b-instruct-q4_1", + "name": "granite3.1-dense:8b-instruct-q4_1", + "description": "The IBM Granite 2B and 8B models are text-only dense LLMs trained on over 12 trillion tokens of data, demonstrated significant improvements over their predecessors in performance and speed in IBM’s initial testing.", + "size": "5.2GB", + "digest": "a94882d992cf", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-dense:8b-instruct-q4_K_M", + "name": "granite3.1-dense:8b-instruct-q4_K_M", + "description": "The IBM Granite 2B and 8B models are text-only dense LLMs trained on over 12 trillion tokens of data, demonstrated significant improvements over their predecessors in performance and speed in IBM’s initial testing.", + "size": "5.0GB", + "digest": "34d3be74ec54", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-dense:8b-instruct-q4_K_S", + "name": "granite3.1-dense:8b-instruct-q4_K_S", + "description": "The IBM Granite 2B and 8B models are text-only dense LLMs trained on over 12 trillion tokens of data, demonstrated significant improvements over their predecessors in performance and speed in IBM’s initial testing.", + "size": "4.7GB", + "digest": "4707086b3bed", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-dense:8b-instruct-q5_0", + "name": "granite3.1-dense:8b-instruct-q5_0", + "description": "The IBM Granite 2B and 8B models are text-only dense LLMs trained on over 12 trillion tokens of data, demonstrated significant improvements over their predecessors in performance and speed in IBM’s initial testing.", + "size": "5.7GB", + "digest": "3ec7544ebcb8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-dense:8b-instruct-q5_1", + "name": "granite3.1-dense:8b-instruct-q5_1", + "description": "The IBM Granite 2B and 8B models are text-only dense LLMs trained on over 12 trillion tokens of data, demonstrated significant improvements over their predecessors in performance and speed in IBM’s initial testing.", + "size": "6.2GB", + "digest": "5f3faea362a7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-dense:8b-instruct-q5_K_M", + "name": "granite3.1-dense:8b-instruct-q5_K_M", + "description": "The IBM Granite 2B and 8B models are text-only dense LLMs trained on over 12 trillion tokens of data, demonstrated significant improvements over their predecessors in performance and speed in IBM’s initial testing.", + "size": "5.8GB", + "digest": "4ae40e965ca7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-dense:8b-instruct-q5_K_S", + "name": "granite3.1-dense:8b-instruct-q5_K_S", + "description": "The IBM Granite 2B and 8B models are text-only dense LLMs trained on over 12 trillion tokens of data, demonstrated significant improvements over their predecessors in performance and speed in IBM’s initial testing.", + "size": "5.7GB", + "digest": "8c98cd3dd70e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-dense:8b-instruct-q6_K", + "name": "granite3.1-dense:8b-instruct-q6_K", + "description": "The IBM Granite 2B and 8B models are text-only dense LLMs trained on over 12 trillion tokens of data, demonstrated significant improvements over their predecessors in performance and speed in IBM’s initial testing.", + "size": "6.8GB", + "digest": "8e5691d17175", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-dense:8b-instruct-q8_0", + "name": "granite3.1-dense:8b-instruct-q8_0", + "description": "The IBM Granite 2B and 8B models are text-only dense LLMs trained on over 12 trillion tokens of data, demonstrated significant improvements over their predecessors in performance and speed in IBM’s initial testing.", + "size": "8.7GB", + "digest": "fd5499afc361", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm-uncensored", + "name": "wizardlm-uncensored", + "description": "Uncensored version of Wizard LM model", + "size": "7.4GB", + "digest": "886a369d74fc", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "wizardlm-uncensored:13b", + "name": "wizardlm-uncensored:13b", + "description": "Uncensored version of Wizard LM model", + "size": "7.4GB", + "digest": "886a369d74fc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm-uncensored:13b-llama2", + "name": "wizardlm-uncensored:13b-llama2", + "description": "Uncensored version of Wizard LM model", + "size": "7.4GB", + "digest": "886a369d74fc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm-uncensored:13b-llama2-fp16", + "name": "wizardlm-uncensored:13b-llama2-fp16", + "description": "Uncensored version of Wizard LM model", + "size": "26GB", + "digest": "b972b4fcf399", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm-uncensored:13b-llama2-q2_K", + "name": "wizardlm-uncensored:13b-llama2-q2_K", + "description": "Uncensored version of Wizard LM model", + "size": "5.4GB", + "digest": "d121c5fe7def", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm-uncensored:13b-llama2-q3_K_L", + "name": "wizardlm-uncensored:13b-llama2-q3_K_L", + "description": "Uncensored version of Wizard LM model", + "size": "6.9GB", + "digest": "dd676f4c69db", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm-uncensored:13b-llama2-q3_K_M", + "name": "wizardlm-uncensored:13b-llama2-q3_K_M", + "description": "Uncensored version of Wizard LM model", + "size": "6.3GB", + "digest": "c7a5f73c0b10", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm-uncensored:13b-llama2-q3_K_S", + "name": "wizardlm-uncensored:13b-llama2-q3_K_S", + "description": "Uncensored version of Wizard LM model", + "size": "5.7GB", + "digest": "c19a0f853fde", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm-uncensored:13b-llama2-q4_0", + "name": "wizardlm-uncensored:13b-llama2-q4_0", + "description": "Uncensored version of Wizard LM model", + "size": "7.4GB", + "digest": "886a369d74fc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm-uncensored:13b-llama2-q4_1", + "name": "wizardlm-uncensored:13b-llama2-q4_1", + "description": "Uncensored version of Wizard LM model", + "size": "8.2GB", + "digest": "588ad528410f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm-uncensored:13b-llama2-q4_K_M", + "name": "wizardlm-uncensored:13b-llama2-q4_K_M", + "description": "Uncensored version of Wizard LM model", + "size": "7.9GB", + "digest": "f39570459d4d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm-uncensored:13b-llama2-q4_K_S", + "name": "wizardlm-uncensored:13b-llama2-q4_K_S", + "description": "Uncensored version of Wizard LM model", + "size": "7.4GB", + "digest": "1834c3fd3d21", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm-uncensored:13b-llama2-q5_0", + "name": "wizardlm-uncensored:13b-llama2-q5_0", + "description": "Uncensored version of Wizard LM model", + "size": "9.0GB", + "digest": "37d9827a0835", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm-uncensored:13b-llama2-q5_1", + "name": "wizardlm-uncensored:13b-llama2-q5_1", + "description": "Uncensored version of Wizard LM model", + "size": "9.8GB", + "digest": "c229574569e6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm-uncensored:13b-llama2-q5_K_M", + "name": "wizardlm-uncensored:13b-llama2-q5_K_M", + "description": "Uncensored version of Wizard LM model", + "size": "9.2GB", + "digest": "3338ad97787e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm-uncensored:13b-llama2-q5_K_S", + "name": "wizardlm-uncensored:13b-llama2-q5_K_S", + "description": "Uncensored version of Wizard LM model", + "size": "9.0GB", + "digest": "e106a5fdba1e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm-uncensored:13b-llama2-q6_K", + "name": "wizardlm-uncensored:13b-llama2-q6_K", + "description": "Uncensored version of Wizard LM model", + "size": "11GB", + "digest": "0128ad0108a6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizardlm-uncensored:13b-llama2-q8_0", + "name": "wizardlm-uncensored:13b-llama2-q8_0", + "description": "Uncensored version of Wizard LM model", + "size": "14GB", + "digest": "4265729a3fca", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-beluga", + "name": "stable-beluga", + "description": "Llama 2 based model fine tuned on an Orca-style dataset. Originally called Free Willy.", + "size": "3.8GB", + "digest": "e5d7b4def1b8", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "stable-beluga:7b", + "name": "stable-beluga:7b", + "description": "Llama 2 based model fine tuned on an Orca-style dataset. Originally called Free Willy.", + "size": "3.8GB", + "digest": "e5d7b4def1b8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-beluga:13b", + "name": "stable-beluga:13b", + "description": "Llama 2 based model fine tuned on an Orca-style dataset. Originally called Free Willy.", + "size": "7.4GB", + "digest": "ac691f885162", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-beluga:70b", + "name": "stable-beluga:70b", + "description": "Llama 2 based model fine tuned on an Orca-style dataset. Originally called Free Willy.", + "size": "39GB", + "digest": "31f4bfb3a050", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-beluga:13b-fp16", + "name": "stable-beluga:13b-fp16", + "description": "Llama 2 based model fine tuned on an Orca-style dataset. Originally called Free Willy.", + "size": "26GB", + "digest": "b1f8fdd5c504", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-beluga:13b-q2_K", + "name": "stable-beluga:13b-q2_K", + "description": "Llama 2 based model fine tuned on an Orca-style dataset. Originally called Free Willy.", + "size": "5.4GB", + "digest": "2af19c43ca9f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-beluga:13b-q3_K_L", + "name": "stable-beluga:13b-q3_K_L", + "description": "Llama 2 based model fine tuned on an Orca-style dataset. Originally called Free Willy.", + "size": "6.9GB", + "digest": "fcaba894245c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-beluga:13b-q3_K_M", + "name": "stable-beluga:13b-q3_K_M", + "description": "Llama 2 based model fine tuned on an Orca-style dataset. Originally called Free Willy.", + "size": "6.3GB", + "digest": "43fac1166987", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-beluga:13b-q3_K_S", + "name": "stable-beluga:13b-q3_K_S", + "description": "Llama 2 based model fine tuned on an Orca-style dataset. Originally called Free Willy.", + "size": "5.7GB", + "digest": "4f719468cd78", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-beluga:13b-q4_0", + "name": "stable-beluga:13b-q4_0", + "description": "Llama 2 based model fine tuned on an Orca-style dataset. Originally called Free Willy.", + "size": "7.4GB", + "digest": "ac691f885162", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-beluga:13b-q4_1", + "name": "stable-beluga:13b-q4_1", + "description": "Llama 2 based model fine tuned on an Orca-style dataset. Originally called Free Willy.", + "size": "8.2GB", + "digest": "6d7cc4241e83", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-beluga:13b-q4_K_M", + "name": "stable-beluga:13b-q4_K_M", + "description": "Llama 2 based model fine tuned on an Orca-style dataset. Originally called Free Willy.", + "size": "7.9GB", + "digest": "409417bcf275", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-beluga:13b-q4_K_S", + "name": "stable-beluga:13b-q4_K_S", + "description": "Llama 2 based model fine tuned on an Orca-style dataset. Originally called Free Willy.", + "size": "7.4GB", + "digest": "61a6317dbeb1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-beluga:13b-q5_0", + "name": "stable-beluga:13b-q5_0", + "description": "Llama 2 based model fine tuned on an Orca-style dataset. Originally called Free Willy.", + "size": "9.0GB", + "digest": "ebf894679227", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-beluga:13b-q5_1", + "name": "stable-beluga:13b-q5_1", + "description": "Llama 2 based model fine tuned on an Orca-style dataset. Originally called Free Willy.", + "size": "9.8GB", + "digest": "33fa2f4b882e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-beluga:13b-q5_K_M", + "name": "stable-beluga:13b-q5_K_M", + "description": "Llama 2 based model fine tuned on an Orca-style dataset. Originally called Free Willy.", + "size": "9.2GB", + "digest": "72350608e9fc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-beluga:13b-q5_K_S", + "name": "stable-beluga:13b-q5_K_S", + "description": "Llama 2 based model fine tuned on an Orca-style dataset. Originally called Free Willy.", + "size": "9.0GB", + "digest": "60a6dc36d412", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-beluga:13b-q6_K", + "name": "stable-beluga:13b-q6_K", + "description": "Llama 2 based model fine tuned on an Orca-style dataset. Originally called Free Willy.", + "size": "11GB", + "digest": "dcad1b848fac", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-beluga:13b-q8_0", + "name": "stable-beluga:13b-q8_0", + "description": "Llama 2 based model fine tuned on an Orca-style dataset. Originally called Free Willy.", + "size": "14GB", + "digest": "238aa61ea830", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-beluga:70b-fp16", + "name": "stable-beluga:70b-fp16", + "description": "Llama 2 based model fine tuned on an Orca-style dataset. Originally called Free Willy.", + "size": "138GB", + "digest": "6efd37ee83ff", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-beluga:70b-q2_K", + "name": "stable-beluga:70b-q2_K", + "description": "Llama 2 based model fine tuned on an Orca-style dataset. Originally called Free Willy.", + "size": "29GB", + "digest": "0bc71d6c7953", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-beluga:70b-q3_K_L", + "name": "stable-beluga:70b-q3_K_L", + "description": "Llama 2 based model fine tuned on an Orca-style dataset. Originally called Free Willy.", + "size": "36GB", + "digest": "3cbf7b1f5b08", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-beluga:70b-q3_K_M", + "name": "stable-beluga:70b-q3_K_M", + "description": "Llama 2 based model fine tuned on an Orca-style dataset. Originally called Free Willy.", + "size": "33GB", + "digest": "15cf6a892614", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-beluga:70b-q3_K_S", + "name": "stable-beluga:70b-q3_K_S", + "description": "Llama 2 based model fine tuned on an Orca-style dataset. Originally called Free Willy.", + "size": "30GB", + "digest": "50bbba9133ff", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-beluga:70b-q4_0", + "name": "stable-beluga:70b-q4_0", + "description": "Llama 2 based model fine tuned on an Orca-style dataset. Originally called Free Willy.", + "size": "39GB", + "digest": "31f4bfb3a050", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-beluga:70b-q4_1", + "name": "stable-beluga:70b-q4_1", + "description": "Llama 2 based model fine tuned on an Orca-style dataset. Originally called Free Willy.", + "size": "43GB", + "digest": "6f2d4b51d4ee", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-beluga:70b-q4_K_M", + "name": "stable-beluga:70b-q4_K_M", + "description": "Llama 2 based model fine tuned on an Orca-style dataset. Originally called Free Willy.", + "size": "41GB", + "digest": "a9667c2e7a79", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-beluga:70b-q4_K_S", + "name": "stable-beluga:70b-q4_K_S", + "description": "Llama 2 based model fine tuned on an Orca-style dataset. Originally called Free Willy.", + "size": "39GB", + "digest": "d09f155890f9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-beluga:70b-q5_0", + "name": "stable-beluga:70b-q5_0", + "description": "Llama 2 based model fine tuned on an Orca-style dataset. Originally called Free Willy.", + "size": "47GB", + "digest": "e94ee1e01926", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-beluga:70b-q5_1", + "name": "stable-beluga:70b-q5_1", + "description": "Llama 2 based model fine tuned on an Orca-style dataset. Originally called Free Willy.", + "size": "52GB", + "digest": "312114b54a99", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-beluga:70b-q5_K_M", + "name": "stable-beluga:70b-q5_K_M", + "description": "Llama 2 based model fine tuned on an Orca-style dataset. Originally called Free Willy.", + "size": "49GB", + "digest": "fc28b6e46237", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-beluga:70b-q5_K_S", + "name": "stable-beluga:70b-q5_K_S", + "description": "Llama 2 based model fine tuned on an Orca-style dataset. Originally called Free Willy.", + "size": "47GB", + "digest": "dc346a6c7ec1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-beluga:70b-q6_K", + "name": "stable-beluga:70b-q6_K", + "description": "Llama 2 based model fine tuned on an Orca-style dataset. Originally called Free Willy.", + "size": "57GB", + "digest": "0bda093a53a7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-beluga:70b-q8_0", + "name": "stable-beluga:70b-q8_0", + "description": "Llama 2 based model fine tuned on an Orca-style dataset. Originally called Free Willy.", + "size": "73GB", + "digest": "ef96a5763db5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-beluga:7b-fp16", + "name": "stable-beluga:7b-fp16", + "description": "Llama 2 based model fine tuned on an Orca-style dataset. Originally called Free Willy.", + "size": "13GB", + "digest": "b54b49ca7642", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-beluga:7b-q2_K", + "name": "stable-beluga:7b-q2_K", + "description": "Llama 2 based model fine tuned on an Orca-style dataset. Originally called Free Willy.", + "size": "2.8GB", + "digest": "ad7a5c22378e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-beluga:7b-q3_K_L", + "name": "stable-beluga:7b-q3_K_L", + "description": "Llama 2 based model fine tuned on an Orca-style dataset. Originally called Free Willy.", + "size": "3.6GB", + "digest": "5a22f57cfba1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-beluga:7b-q3_K_M", + "name": "stable-beluga:7b-q3_K_M", + "description": "Llama 2 based model fine tuned on an Orca-style dataset. Originally called Free Willy.", + "size": "3.3GB", + "digest": "029e59da8e4f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-beluga:7b-q3_K_S", + "name": "stable-beluga:7b-q3_K_S", + "description": "Llama 2 based model fine tuned on an Orca-style dataset. Originally called Free Willy.", + "size": "2.9GB", + "digest": "c7c708cc367a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-beluga:7b-q4_0", + "name": "stable-beluga:7b-q4_0", + "description": "Llama 2 based model fine tuned on an Orca-style dataset. Originally called Free Willy.", + "size": "3.8GB", + "digest": "e5d7b4def1b8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-beluga:7b-q4_1", + "name": "stable-beluga:7b-q4_1", + "description": "Llama 2 based model fine tuned on an Orca-style dataset. Originally called Free Willy.", + "size": "4.2GB", + "digest": "bbdc02c211db", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-beluga:7b-q4_K_M", + "name": "stable-beluga:7b-q4_K_M", + "description": "Llama 2 based model fine tuned on an Orca-style dataset. Originally called Free Willy.", + "size": "4.1GB", + "digest": "8b8fdc4068e8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-beluga:7b-q4_K_S", + "name": "stable-beluga:7b-q4_K_S", + "description": "Llama 2 based model fine tuned on an Orca-style dataset. Originally called Free Willy.", + "size": "3.9GB", + "digest": "9761240d2719", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-beluga:7b-q5_0", + "name": "stable-beluga:7b-q5_0", + "description": "Llama 2 based model fine tuned on an Orca-style dataset. Originally called Free Willy.", + "size": "4.7GB", + "digest": "e377545d3a30", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-beluga:7b-q5_1", + "name": "stable-beluga:7b-q5_1", + "description": "Llama 2 based model fine tuned on an Orca-style dataset. Originally called Free Willy.", + "size": "5.1GB", + "digest": "a325f866b912", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-beluga:7b-q5_K_M", + "name": "stable-beluga:7b-q5_K_M", + "description": "Llama 2 based model fine tuned on an Orca-style dataset. Originally called Free Willy.", + "size": "4.8GB", + "digest": "879cd0824514", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-beluga:7b-q5_K_S", + "name": "stable-beluga:7b-q5_K_S", + "description": "Llama 2 based model fine tuned on an Orca-style dataset. Originally called Free Willy.", + "size": "4.7GB", + "digest": "23468cda5a29", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-beluga:7b-q6_K", + "name": "stable-beluga:7b-q6_K", + "description": "Llama 2 based model fine tuned on an Orca-style dataset. Originally called Free Willy.", + "size": "5.5GB", + "digest": "f81787691a8c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stable-beluga:7b-q8_0", + "name": "stable-beluga:7b-q8_0", + "description": "Llama 2 based model fine tuned on an Orca-style dataset. Originally called Free Willy.", + "size": "7.2GB", + "digest": "6589e954f98e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-groq-tool-use", + "name": "llama3-groq-tool-use", + "description": "A series of models from Groq that represent a significant advancement in open-source AI capabilities for tool use/function calling.", + "size": "4.7GB", + "digest": "36211dad2b15", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "llama3-groq-tool-use:8b", + "name": "llama3-groq-tool-use:8b", + "description": "A series of models from Groq that represent a significant advancement in open-source AI capabilities for tool use/function calling.", + "size": "4.7GB", + "digest": "36211dad2b15", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-groq-tool-use:70b", + "name": "llama3-groq-tool-use:70b", + "description": "A series of models from Groq that represent a significant advancement in open-source AI capabilities for tool use/function calling.", + "size": "40GB", + "digest": "696d50e6fc55", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-groq-tool-use:70b-fp16", + "name": "llama3-groq-tool-use:70b-fp16", + "description": "A series of models from Groq that represent a significant advancement in open-source AI capabilities for tool use/function calling.", + "size": "141GB", + "digest": "8ef2a1906612", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-groq-tool-use:70b-q2_K", + "name": "llama3-groq-tool-use:70b-q2_K", + "description": "A series of models from Groq that represent a significant advancement in open-source AI capabilities for tool use/function calling.", + "size": "26GB", + "digest": "dab8a158f092", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-groq-tool-use:70b-q3_K_L", + "name": "llama3-groq-tool-use:70b-q3_K_L", + "description": "A series of models from Groq that represent a significant advancement in open-source AI capabilities for tool use/function calling.", + "size": "37GB", + "digest": "94b979ce931c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-groq-tool-use:70b-q3_K_M", + "name": "llama3-groq-tool-use:70b-q3_K_M", + "description": "A series of models from Groq that represent a significant advancement in open-source AI capabilities for tool use/function calling.", + "size": "34GB", + "digest": "5e0c9286cabe", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-groq-tool-use:70b-q3_K_S", + "name": "llama3-groq-tool-use:70b-q3_K_S", + "description": "A series of models from Groq that represent a significant advancement in open-source AI capabilities for tool use/function calling.", + "size": "31GB", + "digest": "4f446f9b1b86", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-groq-tool-use:70b-q4_0", + "name": "llama3-groq-tool-use:70b-q4_0", + "description": "A series of models from Groq that represent a significant advancement in open-source AI capabilities for tool use/function calling.", + "size": "40GB", + "digest": "696d50e6fc55", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-groq-tool-use:70b-q4_1", + "name": "llama3-groq-tool-use:70b-q4_1", + "description": "A series of models from Groq that represent a significant advancement in open-source AI capabilities for tool use/function calling.", + "size": "44GB", + "digest": "35972e96c25d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-groq-tool-use:70b-q4_K_M", + "name": "llama3-groq-tool-use:70b-q4_K_M", + "description": "A series of models from Groq that represent a significant advancement in open-source AI capabilities for tool use/function calling.", + "size": "43GB", + "digest": "45eafa1bfbd8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-groq-tool-use:70b-q4_K_S", + "name": "llama3-groq-tool-use:70b-q4_K_S", + "description": "A series of models from Groq that represent a significant advancement in open-source AI capabilities for tool use/function calling.", + "size": "40GB", + "digest": "464bc22f0c7f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-groq-tool-use:70b-q5_0", + "name": "llama3-groq-tool-use:70b-q5_0", + "description": "A series of models from Groq that represent a significant advancement in open-source AI capabilities for tool use/function calling.", + "size": "49GB", + "digest": "5c52fd8e4ba7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-groq-tool-use:70b-q5_1", + "name": "llama3-groq-tool-use:70b-q5_1", + "description": "A series of models from Groq that represent a significant advancement in open-source AI capabilities for tool use/function calling.", + "size": "53GB", + "digest": "337622a2615e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-groq-tool-use:70b-q5_K_M", + "name": "llama3-groq-tool-use:70b-q5_K_M", + "description": "A series of models from Groq that represent a significant advancement in open-source AI capabilities for tool use/function calling.", + "size": "50GB", + "digest": "7e1f34171905", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-groq-tool-use:70b-q5_K_S", + "name": "llama3-groq-tool-use:70b-q5_K_S", + "description": "A series of models from Groq that represent a significant advancement in open-source AI capabilities for tool use/function calling.", + "size": "49GB", + "digest": "88450a6c4bc7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-groq-tool-use:70b-q6_K", + "name": "llama3-groq-tool-use:70b-q6_K", + "description": "A series of models from Groq that represent a significant advancement in open-source AI capabilities for tool use/function calling.", + "size": "58GB", + "digest": "fe241542dd2b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-groq-tool-use:70b-q8_0", + "name": "llama3-groq-tool-use:70b-q8_0", + "description": "A series of models from Groq that represent a significant advancement in open-source AI capabilities for tool use/function calling.", + "size": "75GB", + "digest": "e998a1023200", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-groq-tool-use:8b-fp16", + "name": "llama3-groq-tool-use:8b-fp16", + "description": "A series of models from Groq that represent a significant advancement in open-source AI capabilities for tool use/function calling.", + "size": "16GB", + "digest": "be9b2c0775a5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-groq-tool-use:8b-q2_K", + "name": "llama3-groq-tool-use:8b-q2_K", + "description": "A series of models from Groq that represent a significant advancement in open-source AI capabilities for tool use/function calling.", + "size": "3.2GB", + "digest": "37fac70005b1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-groq-tool-use:8b-q3_K_L", + "name": "llama3-groq-tool-use:8b-q3_K_L", + "description": "A series of models from Groq that represent a significant advancement in open-source AI capabilities for tool use/function calling.", + "size": "4.3GB", + "digest": "57fbbf9656ef", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-groq-tool-use:8b-q3_K_M", + "name": "llama3-groq-tool-use:8b-q3_K_M", + "description": "A series of models from Groq that represent a significant advancement in open-source AI capabilities for tool use/function calling.", + "size": "4.0GB", + "digest": "def359e8ef42", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-groq-tool-use:8b-q3_K_S", + "name": "llama3-groq-tool-use:8b-q3_K_S", + "description": "A series of models from Groq that represent a significant advancement in open-source AI capabilities for tool use/function calling.", + "size": "3.7GB", + "digest": "3f7165ed6ac3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-groq-tool-use:8b-q4_0", + "name": "llama3-groq-tool-use:8b-q4_0", + "description": "A series of models from Groq that represent a significant advancement in open-source AI capabilities for tool use/function calling.", + "size": "4.7GB", + "digest": "36211dad2b15", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-groq-tool-use:8b-q4_1", + "name": "llama3-groq-tool-use:8b-q4_1", + "description": "A series of models from Groq that represent a significant advancement in open-source AI capabilities for tool use/function calling.", + "size": "5.1GB", + "digest": "b927899ecb62", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-groq-tool-use:8b-q4_K_M", + "name": "llama3-groq-tool-use:8b-q4_K_M", + "description": "A series of models from Groq that represent a significant advancement in open-source AI capabilities for tool use/function calling.", + "size": "4.9GB", + "digest": "5fa325bad307", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-groq-tool-use:8b-q4_K_S", + "name": "llama3-groq-tool-use:8b-q4_K_S", + "description": "A series of models from Groq that represent a significant advancement in open-source AI capabilities for tool use/function calling.", + "size": "4.7GB", + "digest": "9dc66563ded8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-groq-tool-use:8b-q5_0", + "name": "llama3-groq-tool-use:8b-q5_0", + "description": "A series of models from Groq that represent a significant advancement in open-source AI capabilities for tool use/function calling.", + "size": "5.6GB", + "digest": "0482e45a0517", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-groq-tool-use:8b-q5_1", + "name": "llama3-groq-tool-use:8b-q5_1", + "description": "A series of models from Groq that represent a significant advancement in open-source AI capabilities for tool use/function calling.", + "size": "6.1GB", + "digest": "45984ff6d001", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-groq-tool-use:8b-q5_K_M", + "name": "llama3-groq-tool-use:8b-q5_K_M", + "description": "A series of models from Groq that represent a significant advancement in open-source AI capabilities for tool use/function calling.", + "size": "5.7GB", + "digest": "50c9c554ddd4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-groq-tool-use:8b-q5_K_S", + "name": "llama3-groq-tool-use:8b-q5_K_S", + "description": "A series of models from Groq that represent a significant advancement in open-source AI capabilities for tool use/function calling.", + "size": "5.6GB", + "digest": "6a1775abde02", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-groq-tool-use:8b-q6_K", + "name": "llama3-groq-tool-use:8b-q6_K", + "description": "A series of models from Groq that represent a significant advancement in open-source AI capabilities for tool use/function calling.", + "size": "6.6GB", + "digest": "7ec6fd768fe0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama3-groq-tool-use:8b-q8_0", + "name": "llama3-groq-tool-use:8b-q8_0", + "description": "A series of models from Groq that represent a significant advancement in open-source AI capabilities for tool use/function calling.", + "size": "8.5GB", + "digest": "58ab12b11127", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-dense", + "name": "granite3-dense", + "description": "The IBM Granite 2B and 8B models are designed to support tool-based use cases and support for retrieval augmented generation (RAG), streamlining code generation, translation and bug fixing.", + "size": "1.6GB", + "digest": "5c2e6f3112f4", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "granite3-dense:2b", + "name": "granite3-dense:2b", + "description": "The IBM Granite 2B and 8B models are designed to support tool-based use cases and support for retrieval augmented generation (RAG), streamlining code generation, translation and bug fixing.", + "size": "1.6GB", + "digest": "5c2e6f3112f4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-dense:8b", + "name": "granite3-dense:8b", + "description": "The IBM Granite 2B and 8B models are designed to support tool-based use cases and support for retrieval augmented generation (RAG), streamlining code generation, translation and bug fixing.", + "size": "4.9GB", + "digest": "199456d876ee", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-dense:2b-instruct-fp16", + "name": "granite3-dense:2b-instruct-fp16", + "description": "The IBM Granite 2B and 8B models are designed to support tool-based use cases and support for retrieval augmented generation (RAG), streamlining code generation, translation and bug fixing.", + "size": "5.3GB", + "digest": "24e5c0a35f78", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-dense:2b-instruct-q2_K", + "name": "granite3-dense:2b-instruct-q2_K", + "description": "The IBM Granite 2B and 8B models are designed to support tool-based use cases and support for retrieval augmented generation (RAG), streamlining code generation, translation and bug fixing.", + "size": "1.0GB", + "digest": "2261d92d6175", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-dense:2b-instruct-q3_K_L", + "name": "granite3-dense:2b-instruct-q3_K_L", + "description": "The IBM Granite 2B and 8B models are designed to support tool-based use cases and support for retrieval augmented generation (RAG), streamlining code generation, translation and bug fixing.", + "size": "1.4GB", + "digest": "201ccf1522e8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-dense:2b-instruct-q3_K_M", + "name": "granite3-dense:2b-instruct-q3_K_M", + "description": "The IBM Granite 2B and 8B models are designed to support tool-based use cases and support for retrieval augmented generation (RAG), streamlining code generation, translation and bug fixing.", + "size": "1.3GB", + "digest": "c08ae454856c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-dense:2b-instruct-q3_K_S", + "name": "granite3-dense:2b-instruct-q3_K_S", + "description": "The IBM Granite 2B and 8B models are designed to support tool-based use cases and support for retrieval augmented generation (RAG), streamlining code generation, translation and bug fixing.", + "size": "1.2GB", + "digest": "7c6af70b9f11", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-dense:2b-instruct-q4_0", + "name": "granite3-dense:2b-instruct-q4_0", + "description": "The IBM Granite 2B and 8B models are designed to support tool-based use cases and support for retrieval augmented generation (RAG), streamlining code generation, translation and bug fixing.", + "size": "1.5GB", + "digest": "dd4a07b9e1b7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-dense:2b-instruct-q4_1", + "name": "granite3-dense:2b-instruct-q4_1", + "description": "The IBM Granite 2B and 8B models are designed to support tool-based use cases and support for retrieval augmented generation (RAG), streamlining code generation, translation and bug fixing.", + "size": "1.7GB", + "digest": "e12ad0fad2ad", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-dense:2b-instruct-q4_K_M", + "name": "granite3-dense:2b-instruct-q4_K_M", + "description": "The IBM Granite 2B and 8B models are designed to support tool-based use cases and support for retrieval augmented generation (RAG), streamlining code generation, translation and bug fixing.", + "size": "1.6GB", + "digest": "5c2e6f3112f4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-dense:2b-instruct-q4_K_S", + "name": "granite3-dense:2b-instruct-q4_K_S", + "description": "The IBM Granite 2B and 8B models are designed to support tool-based use cases and support for retrieval augmented generation (RAG), streamlining code generation, translation and bug fixing.", + "size": "1.5GB", + "digest": "0f87f54eb387", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-dense:2b-instruct-q5_0", + "name": "granite3-dense:2b-instruct-q5_0", + "description": "The IBM Granite 2B and 8B models are designed to support tool-based use cases and support for retrieval augmented generation (RAG), streamlining code generation, translation and bug fixing.", + "size": "1.8GB", + "digest": "db3fbcdec89b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-dense:2b-instruct-q5_1", + "name": "granite3-dense:2b-instruct-q5_1", + "description": "The IBM Granite 2B and 8B models are designed to support tool-based use cases and support for retrieval augmented generation (RAG), streamlining code generation, translation and bug fixing.", + "size": "2.0GB", + "digest": "bc5ed577d64f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-dense:2b-instruct-q5_K_M", + "name": "granite3-dense:2b-instruct-q5_K_M", + "description": "The IBM Granite 2B and 8B models are designed to support tool-based use cases and support for retrieval augmented generation (RAG), streamlining code generation, translation and bug fixing.", + "size": "1.9GB", + "digest": "dcace13d6d34", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-dense:2b-instruct-q5_K_S", + "name": "granite3-dense:2b-instruct-q5_K_S", + "description": "The IBM Granite 2B and 8B models are designed to support tool-based use cases and support for retrieval augmented generation (RAG), streamlining code generation, translation and bug fixing.", + "size": "1.8GB", + "digest": "be9d8efefd30", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-dense:2b-instruct-q6_K", + "name": "granite3-dense:2b-instruct-q6_K", + "description": "The IBM Granite 2B and 8B models are designed to support tool-based use cases and support for retrieval augmented generation (RAG), streamlining code generation, translation and bug fixing.", + "size": "2.2GB", + "digest": "7f374efdad9b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-dense:2b-instruct-q8_0", + "name": "granite3-dense:2b-instruct-q8_0", + "description": "The IBM Granite 2B and 8B models are designed to support tool-based use cases and support for retrieval augmented generation (RAG), streamlining code generation, translation and bug fixing.", + "size": "2.8GB", + "digest": "f35cd2e1e433", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-dense:8b-instruct-fp16", + "name": "granite3-dense:8b-instruct-fp16", + "description": "The IBM Granite 2B and 8B models are designed to support tool-based use cases and support for retrieval augmented generation (RAG), streamlining code generation, translation and bug fixing.", + "size": "16GB", + "digest": "d3a4062e339e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-dense:8b-instruct-q2_K", + "name": "granite3-dense:8b-instruct-q2_K", + "description": "The IBM Granite 2B and 8B models are designed to support tool-based use cases and support for retrieval augmented generation (RAG), streamlining code generation, translation and bug fixing.", + "size": "3.1GB", + "digest": "2ea57f8bc8fd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-dense:8b-instruct-q3_K_L", + "name": "granite3-dense:8b-instruct-q3_K_L", + "description": "The IBM Granite 2B and 8B models are designed to support tool-based use cases and support for retrieval augmented generation (RAG), streamlining code generation, translation and bug fixing.", + "size": "4.3GB", + "digest": "c74b04a2513f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-dense:8b-instruct-q3_K_M", + "name": "granite3-dense:8b-instruct-q3_K_M", + "description": "The IBM Granite 2B and 8B models are designed to support tool-based use cases and support for retrieval augmented generation (RAG), streamlining code generation, translation and bug fixing.", + "size": "4.0GB", + "digest": "c1a94d47b25c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-dense:8b-instruct-q3_K_S", + "name": "granite3-dense:8b-instruct-q3_K_S", + "description": "The IBM Granite 2B and 8B models are designed to support tool-based use cases and support for retrieval augmented generation (RAG), streamlining code generation, translation and bug fixing.", + "size": "3.6GB", + "digest": "4c5f0dba11a8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-dense:8b-instruct-q4_0", + "name": "granite3-dense:8b-instruct-q4_0", + "description": "The IBM Granite 2B and 8B models are designed to support tool-based use cases and support for retrieval augmented generation (RAG), streamlining code generation, translation and bug fixing.", + "size": "4.7GB", + "digest": "16473222519f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-dense:8b-instruct-q4_1", + "name": "granite3-dense:8b-instruct-q4_1", + "description": "The IBM Granite 2B and 8B models are designed to support tool-based use cases and support for retrieval augmented generation (RAG), streamlining code generation, translation and bug fixing.", + "size": "5.1GB", + "digest": "8a47472a11f2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-dense:8b-instruct-q4_K_M", + "name": "granite3-dense:8b-instruct-q4_K_M", + "description": "The IBM Granite 2B and 8B models are designed to support tool-based use cases and support for retrieval augmented generation (RAG), streamlining code generation, translation and bug fixing.", + "size": "4.9GB", + "digest": "199456d876ee", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-dense:8b-instruct-q4_K_S", + "name": "granite3-dense:8b-instruct-q4_K_S", + "description": "The IBM Granite 2B and 8B models are designed to support tool-based use cases and support for retrieval augmented generation (RAG), streamlining code generation, translation and bug fixing.", + "size": "4.7GB", + "digest": "8fc1ce76b8f2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-dense:8b-instruct-q5_0", + "name": "granite3-dense:8b-instruct-q5_0", + "description": "The IBM Granite 2B and 8B models are designed to support tool-based use cases and support for retrieval augmented generation (RAG), streamlining code generation, translation and bug fixing.", + "size": "5.6GB", + "digest": "449cddb1864d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-dense:8b-instruct-q5_1", + "name": "granite3-dense:8b-instruct-q5_1", + "description": "The IBM Granite 2B and 8B models are designed to support tool-based use cases and support for retrieval augmented generation (RAG), streamlining code generation, translation and bug fixing.", + "size": "6.1GB", + "digest": "ae4ab94be005", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-dense:8b-instruct-q5_K_M", + "name": "granite3-dense:8b-instruct-q5_K_M", + "description": "The IBM Granite 2B and 8B models are designed to support tool-based use cases and support for retrieval augmented generation (RAG), streamlining code generation, translation and bug fixing.", + "size": "5.8GB", + "digest": "e85361d1973c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-dense:8b-instruct-q5_K_S", + "name": "granite3-dense:8b-instruct-q5_K_S", + "description": "The IBM Granite 2B and 8B models are designed to support tool-based use cases and support for retrieval augmented generation (RAG), streamlining code generation, translation and bug fixing.", + "size": "5.6GB", + "digest": "49055e666925", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-dense:8b-instruct-q6_K", + "name": "granite3-dense:8b-instruct-q6_K", + "description": "The IBM Granite 2B and 8B models are designed to support tool-based use cases and support for retrieval augmented generation (RAG), streamlining code generation, translation and bug fixing.", + "size": "6.7GB", + "digest": "ec258d53940b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-dense:8b-instruct-q8_0", + "name": "granite3-dense:8b-instruct-q8_0", + "description": "The IBM Granite 2B and 8B models are designed to support tool-based use cases and support for retrieval augmented generation (RAG), streamlining code generation, translation and bug fixing.", + "size": "8.7GB", + "digest": "f1466e70a7be", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "medllama2", + "name": "medllama2", + "description": "Fine-tuned Llama 2 model to answer medical questions based on an open source medical dataset.", + "size": "3.8GB", + "digest": "a53737ec0c72", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "medllama2:7b", + "name": "medllama2:7b", + "description": "Fine-tuned Llama 2 model to answer medical questions based on an open source medical dataset.", + "size": "3.8GB", + "digest": "a53737ec0c72", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "medllama2:7b-fp16", + "name": "medllama2:7b-fp16", + "description": "Fine-tuned Llama 2 model to answer medical questions based on an open source medical dataset.", + "size": "13GB", + "digest": "6f397a061510", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "medllama2:7b-q2_K", + "name": "medllama2:7b-q2_K", + "description": "Fine-tuned Llama 2 model to answer medical questions based on an open source medical dataset.", + "size": "2.8GB", + "digest": "c22649a7cd87", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "medllama2:7b-q3_K_L", + "name": "medllama2:7b-q3_K_L", + "description": "Fine-tuned Llama 2 model to answer medical questions based on an open source medical dataset.", + "size": "3.6GB", + "digest": "fafc256d6f10", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "medllama2:7b-q3_K_M", + "name": "medllama2:7b-q3_K_M", + "description": "Fine-tuned Llama 2 model to answer medical questions based on an open source medical dataset.", + "size": "3.3GB", + "digest": "c9fba0828b5e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "medllama2:7b-q3_K_S", + "name": "medllama2:7b-q3_K_S", + "description": "Fine-tuned Llama 2 model to answer medical questions based on an open source medical dataset.", + "size": "2.9GB", + "digest": "db2e50ef4dfe", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "medllama2:7b-q4_0", + "name": "medllama2:7b-q4_0", + "description": "Fine-tuned Llama 2 model to answer medical questions based on an open source medical dataset.", + "size": "3.8GB", + "digest": "a53737ec0c72", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "medllama2:7b-q4_1", + "name": "medllama2:7b-q4_1", + "description": "Fine-tuned Llama 2 model to answer medical questions based on an open source medical dataset.", + "size": "4.2GB", + "digest": "1aa988b1b658", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "medllama2:7b-q4_K_M", + "name": "medllama2:7b-q4_K_M", + "description": "Fine-tuned Llama 2 model to answer medical questions based on an open source medical dataset.", + "size": "4.1GB", + "digest": "2943f4b668e1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "medllama2:7b-q4_K_S", + "name": "medllama2:7b-q4_K_S", + "description": "Fine-tuned Llama 2 model to answer medical questions based on an open source medical dataset.", + "size": "3.9GB", + "digest": "a421e466ef1b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "medllama2:7b-q5_0", + "name": "medllama2:7b-q5_0", + "description": "Fine-tuned Llama 2 model to answer medical questions based on an open source medical dataset.", + "size": "4.7GB", + "digest": "19923b8d70e7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "medllama2:7b-q5_1", + "name": "medllama2:7b-q5_1", + "description": "Fine-tuned Llama 2 model to answer medical questions based on an open source medical dataset.", + "size": "5.1GB", + "digest": "04e08f5f3742", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "medllama2:7b-q5_K_M", + "name": "medllama2:7b-q5_K_M", + "description": "Fine-tuned Llama 2 model to answer medical questions based on an open source medical dataset.", + "size": "4.8GB", + "digest": "7f1509d663e8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "medllama2:7b-q5_K_S", + "name": "medllama2:7b-q5_K_S", + "description": "Fine-tuned Llama 2 model to answer medical questions based on an open source medical dataset.", + "size": "4.7GB", + "digest": "23a9f20d4a00", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "medllama2:7b-q6_K", + "name": "medllama2:7b-q6_K", + "description": "Fine-tuned Llama 2 model to answer medical questions based on an open source medical dataset.", + "size": "5.5GB", + "digest": "7c66af1d9c4b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "medllama2:7b-q8_0", + "name": "medllama2:7b-q8_0", + "description": "Fine-tuned Llama 2 model to answer medical questions based on an open source medical dataset.", + "size": "7.2GB", + "digest": "1bc066950c7a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "meditron", + "name": "meditron", + "description": "Open-source medical large language model adapted from Llama 2 to the medical domain.", + "size": "3.8GB", + "digest": "ad11a6250f54", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "meditron:7b", + "name": "meditron:7b", + "description": "Open-source medical large language model adapted from Llama 2 to the medical domain.", + "size": "3.8GB", + "digest": "ad11a6250f54", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "meditron:70b", + "name": "meditron:70b", + "description": "Open-source medical large language model adapted from Llama 2 to the medical domain.", + "size": "39GB", + "digest": "315d466c452f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "meditron:70b-q4_0", + "name": "meditron:70b-q4_0", + "description": "Open-source medical large language model adapted from Llama 2 to the medical domain.", + "size": "39GB", + "digest": "315d466c452f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "meditron:70b-q4_1", + "name": "meditron:70b-q4_1", + "description": "Open-source medical large language model adapted from Llama 2 to the medical domain.", + "size": "43GB", + "digest": "d0395a457ce6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "meditron:70b-q4_K_S", + "name": "meditron:70b-q4_K_S", + "description": "Open-source medical large language model adapted from Llama 2 to the medical domain.", + "size": "39GB", + "digest": "4f8102818cd7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "meditron:70b-q5_1", + "name": "meditron:70b-q5_1", + "description": "Open-source medical large language model adapted from Llama 2 to the medical domain.", + "size": "52GB", + "digest": "b12076361e76", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "meditron:7b-fp16", + "name": "meditron:7b-fp16", + "description": "Open-source medical large language model adapted from Llama 2 to the medical domain.", + "size": "13GB", + "digest": "809731a3f1a9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "meditron:7b-q2_K", + "name": "meditron:7b-q2_K", + "description": "Open-source medical large language model adapted from Llama 2 to the medical domain.", + "size": "2.8GB", + "digest": "f330bdb16b9e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "meditron:7b-q3_K_L", + "name": "meditron:7b-q3_K_L", + "description": "Open-source medical large language model adapted from Llama 2 to the medical domain.", + "size": "3.6GB", + "digest": "a6fa27f88bbc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "meditron:7b-q3_K_M", + "name": "meditron:7b-q3_K_M", + "description": "Open-source medical large language model adapted from Llama 2 to the medical domain.", + "size": "3.3GB", + "digest": "9c9c4636a4b8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "meditron:7b-q3_K_S", + "name": "meditron:7b-q3_K_S", + "description": "Open-source medical large language model adapted from Llama 2 to the medical domain.", + "size": "2.9GB", + "digest": "6d5aa9319b05", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "meditron:7b-q4_0", + "name": "meditron:7b-q4_0", + "description": "Open-source medical large language model adapted from Llama 2 to the medical domain.", + "size": "3.8GB", + "digest": "ad11a6250f54", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "meditron:7b-q4_1", + "name": "meditron:7b-q4_1", + "description": "Open-source medical large language model adapted from Llama 2 to the medical domain.", + "size": "4.2GB", + "digest": "876165f9f2df", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "meditron:7b-q4_K_M", + "name": "meditron:7b-q4_K_M", + "description": "Open-source medical large language model adapted from Llama 2 to the medical domain.", + "size": "4.1GB", + "digest": "a917f4ff62ba", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "meditron:7b-q4_K_S", + "name": "meditron:7b-q4_K_S", + "description": "Open-source medical large language model adapted from Llama 2 to the medical domain.", + "size": "3.9GB", + "digest": "615f994626bd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "meditron:7b-q5_0", + "name": "meditron:7b-q5_0", + "description": "Open-source medical large language model adapted from Llama 2 to the medical domain.", + "size": "4.7GB", + "digest": "79d156131358", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "meditron:7b-q5_1", + "name": "meditron:7b-q5_1", + "description": "Open-source medical large language model adapted from Llama 2 to the medical domain.", + "size": "5.1GB", + "digest": "04278d55ad3f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "meditron:7b-q5_K_M", + "name": "meditron:7b-q5_K_M", + "description": "Open-source medical large language model adapted from Llama 2 to the medical domain.", + "size": "4.8GB", + "digest": "1e91d442c62d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "meditron:7b-q5_K_S", + "name": "meditron:7b-q5_K_S", + "description": "Open-source medical large language model adapted from Llama 2 to the medical domain.", + "size": "4.7GB", + "digest": "ff3d673fc3ab", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "meditron:7b-q6_K", + "name": "meditron:7b-q6_K", + "description": "Open-source medical large language model adapted from Llama 2 to the medical domain.", + "size": "5.5GB", + "digest": "e98363fbb20a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "meditron:7b-q8_0", + "name": "meditron:7b-q8_0", + "description": "Open-source medical large language model adapted from Llama 2 to the medical domain.", + "size": "7.2GB", + "digest": "902db8ed250b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-pro", + "name": "llama-pro", + "description": "An expansion of Llama 2 that specializes in integrating both general language understanding and domain-specific knowledge, particularly in programming and mathematics.", + "size": "4.7GB", + "digest": "fc5c0d744444", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "llama-pro:8b-instruct-fp16", + "name": "llama-pro:8b-instruct-fp16", + "description": "An expansion of Llama 2 that specializes in integrating both general language understanding and domain-specific knowledge, particularly in programming and mathematics.", + "size": "17GB", + "digest": "df774285c05f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-pro:8b-instruct-q2_K", + "name": "llama-pro:8b-instruct-q2_K", + "description": "An expansion of Llama 2 that specializes in integrating both general language understanding and domain-specific knowledge, particularly in programming and mathematics.", + "size": "3.5GB", + "digest": "24ca2680af67", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-pro:8b-instruct-q3_K_L", + "name": "llama-pro:8b-instruct-q3_K_L", + "description": "An expansion of Llama 2 that specializes in integrating both general language understanding and domain-specific knowledge, particularly in programming and mathematics.", + "size": "4.5GB", + "digest": "7c638269f710", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-pro:8b-instruct-q3_K_M", + "name": "llama-pro:8b-instruct-q3_K_M", + "description": "An expansion of Llama 2 that specializes in integrating both general language understanding and domain-specific knowledge, particularly in programming and mathematics.", + "size": "4.1GB", + "digest": "147024ec7610", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-pro:8b-instruct-q3_K_S", + "name": "llama-pro:8b-instruct-q3_K_S", + "description": "An expansion of Llama 2 that specializes in integrating both general language understanding and domain-specific knowledge, particularly in programming and mathematics.", + "size": "3.6GB", + "digest": "0269187072dd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-pro:8b-instruct-q4_0", + "name": "llama-pro:8b-instruct-q4_0", + "description": "An expansion of Llama 2 that specializes in integrating both general language understanding and domain-specific knowledge, particularly in programming and mathematics.", + "size": "4.7GB", + "digest": "fc5c0d744444", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-pro:8b-instruct-q4_1", + "name": "llama-pro:8b-instruct-q4_1", + "description": "An expansion of Llama 2 that specializes in integrating both general language understanding and domain-specific knowledge, particularly in programming and mathematics.", + "size": "5.3GB", + "digest": "2c59213d1ec9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-pro:8b-instruct-q4_K_M", + "name": "llama-pro:8b-instruct-q4_K_M", + "description": "An expansion of Llama 2 that specializes in integrating both general language understanding and domain-specific knowledge, particularly in programming and mathematics.", + "size": "5.1GB", + "digest": "072859d9f324", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-pro:8b-instruct-q4_K_S", + "name": "llama-pro:8b-instruct-q4_K_S", + "description": "An expansion of Llama 2 that specializes in integrating both general language understanding and domain-specific knowledge, particularly in programming and mathematics.", + "size": "4.8GB", + "digest": "0ed36f6dfb91", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-pro:8b-instruct-q5_0", + "name": "llama-pro:8b-instruct-q5_0", + "description": "An expansion of Llama 2 that specializes in integrating both general language understanding and domain-specific knowledge, particularly in programming and mathematics.", + "size": "5.8GB", + "digest": "26e8677969ff", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-pro:8b-instruct-q5_1", + "name": "llama-pro:8b-instruct-q5_1", + "description": "An expansion of Llama 2 that specializes in integrating both general language understanding and domain-specific knowledge, particularly in programming and mathematics.", + "size": "6.3GB", + "digest": "8fbd7f2ef127", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-pro:8b-instruct-q5_K_M", + "name": "llama-pro:8b-instruct-q5_K_M", + "description": "An expansion of Llama 2 that specializes in integrating both general language understanding and domain-specific knowledge, particularly in programming and mathematics.", + "size": "5.9GB", + "digest": "d18736b3cdd5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-pro:8b-instruct-q5_K_S", + "name": "llama-pro:8b-instruct-q5_K_S", + "description": "An expansion of Llama 2 that specializes in integrating both general language understanding and domain-specific knowledge, particularly in programming and mathematics.", + "size": "5.8GB", + "digest": "afbe4eee1009", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-pro:8b-instruct-q6_K", + "name": "llama-pro:8b-instruct-q6_K", + "description": "An expansion of Llama 2 that specializes in integrating both general language understanding and domain-specific knowledge, particularly in programming and mathematics.", + "size": "6.9GB", + "digest": "7df5d721dbc0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-pro:8b-instruct-q8_0", + "name": "llama-pro:8b-instruct-q8_0", + "description": "An expansion of Llama 2 that specializes in integrating both general language understanding and domain-specific knowledge, particularly in programming and mathematics.", + "size": "8.9GB", + "digest": "d968aafc79e7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-pro:8b-text-fp16", + "name": "llama-pro:8b-text-fp16", + "description": "An expansion of Llama 2 that specializes in integrating both general language understanding and domain-specific knowledge, particularly in programming and mathematics.", + "size": "17GB", + "digest": "9b790fecf7f8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-pro:8b-text-q2_K", + "name": "llama-pro:8b-text-q2_K", + "description": "An expansion of Llama 2 that specializes in integrating both general language understanding and domain-specific knowledge, particularly in programming and mathematics.", + "size": "3.5GB", + "digest": "2ed5b17591cc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-pro:8b-text-q3_K_L", + "name": "llama-pro:8b-text-q3_K_L", + "description": "An expansion of Llama 2 that specializes in integrating both general language understanding and domain-specific knowledge, particularly in programming and mathematics.", + "size": "4.5GB", + "digest": "f07e73f68fc8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-pro:8b-text-q3_K_M", + "name": "llama-pro:8b-text-q3_K_M", + "description": "An expansion of Llama 2 that specializes in integrating both general language understanding and domain-specific knowledge, particularly in programming and mathematics.", + "size": "4.1GB", + "digest": "3c9f65d0a7e6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-pro:8b-text-q3_K_S", + "name": "llama-pro:8b-text-q3_K_S", + "description": "An expansion of Llama 2 that specializes in integrating both general language understanding and domain-specific knowledge, particularly in programming and mathematics.", + "size": "3.6GB", + "digest": "ebda8f31804a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-pro:8b-text-q4_0", + "name": "llama-pro:8b-text-q4_0", + "description": "An expansion of Llama 2 that specializes in integrating both general language understanding and domain-specific knowledge, particularly in programming and mathematics.", + "size": "4.7GB", + "digest": "37a8c2df2159", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-pro:8b-text-q4_1", + "name": "llama-pro:8b-text-q4_1", + "description": "An expansion of Llama 2 that specializes in integrating both general language understanding and domain-specific knowledge, particularly in programming and mathematics.", + "size": "5.3GB", + "digest": "35bd6f694acb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-pro:8b-text-q4_K_M", + "name": "llama-pro:8b-text-q4_K_M", + "description": "An expansion of Llama 2 that specializes in integrating both general language understanding and domain-specific knowledge, particularly in programming and mathematics.", + "size": "5.1GB", + "digest": "5178b12d303b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-pro:8b-text-q4_K_S", + "name": "llama-pro:8b-text-q4_K_S", + "description": "An expansion of Llama 2 that specializes in integrating both general language understanding and domain-specific knowledge, particularly in programming and mathematics.", + "size": "4.8GB", + "digest": "a73903f963eb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-pro:8b-text-q5_0", + "name": "llama-pro:8b-text-q5_0", + "description": "An expansion of Llama 2 that specializes in integrating both general language understanding and domain-specific knowledge, particularly in programming and mathematics.", + "size": "5.8GB", + "digest": "15000cc2d299", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-pro:8b-text-q5_1", + "name": "llama-pro:8b-text-q5_1", + "description": "An expansion of Llama 2 that specializes in integrating both general language understanding and domain-specific knowledge, particularly in programming and mathematics.", + "size": "6.3GB", + "digest": "5395c603b159", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-pro:8b-text-q5_K_M", + "name": "llama-pro:8b-text-q5_K_M", + "description": "An expansion of Llama 2 that specializes in integrating both general language understanding and domain-specific knowledge, particularly in programming and mathematics.", + "size": "5.9GB", + "digest": "36d45bb71a26", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-pro:8b-text-q5_K_S", + "name": "llama-pro:8b-text-q5_K_S", + "description": "An expansion of Llama 2 that specializes in integrating both general language understanding and domain-specific knowledge, particularly in programming and mathematics.", + "size": "5.8GB", + "digest": "96d47e3e009f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-pro:8b-text-q6_K", + "name": "llama-pro:8b-text-q6_K", + "description": "An expansion of Llama 2 that specializes in integrating both general language understanding and domain-specific knowledge, particularly in programming and mathematics.", + "size": "6.9GB", + "digest": "7d3cb1a24c98", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-pro:8b-text-q8_0", + "name": "llama-pro:8b-text-q8_0", + "description": "An expansion of Llama 2 that specializes in integrating both general language understanding and domain-specific knowledge, particularly in programming and mathematics.", + "size": "8.9GB", + "digest": "69c9ae3d927b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-pro:instruct", + "name": "llama-pro:instruct", + "description": "An expansion of Llama 2 that specializes in integrating both general language understanding and domain-specific knowledge, particularly in programming and mathematics.", + "size": "4.7GB", + "digest": "fc5c0d744444", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-pro:text", + "name": "llama-pro:text", + "description": "An expansion of Llama 2 that specializes in integrating both general language understanding and domain-specific knowledge, particularly in programming and mathematics.", + "size": "4.7GB", + "digest": "37a8c2df2159", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-mistral", + "name": "yarn-mistral", + "description": "An extension of Mistral to support context windows of 64K or 128K.", + "size": "4.1GB", + "digest": "8e9c368a0ae4", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "yarn-mistral:7b", + "name": "yarn-mistral:7b", + "description": "An extension of Mistral to support context windows of 64K or 128K.", + "size": "4.1GB", + "digest": "8e9c368a0ae4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-mistral:7b-128k", + "name": "yarn-mistral:7b-128k", + "description": "An extension of Mistral to support context windows of 64K or 128K.", + "size": "4.1GB", + "digest": "6511b83c33d5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-mistral:7b-128k-fp16", + "name": "yarn-mistral:7b-128k-fp16", + "description": "An extension of Mistral to support context windows of 64K or 128K.", + "size": "14GB", + "digest": "24fcccd3ec98", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-mistral:7b-128k-q2_K", + "name": "yarn-mistral:7b-128k-q2_K", + "description": "An extension of Mistral to support context windows of 64K or 128K.", + "size": "3.1GB", + "digest": "4801801e65c9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-mistral:7b-128k-q3_K_L", + "name": "yarn-mistral:7b-128k-q3_K_L", + "description": "An extension of Mistral to support context windows of 64K or 128K.", + "size": "3.8GB", + "digest": "04e1735cc221", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-mistral:7b-128k-q3_K_M", + "name": "yarn-mistral:7b-128k-q3_K_M", + "description": "An extension of Mistral to support context windows of 64K or 128K.", + "size": "3.5GB", + "digest": "c910ed0b2220", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-mistral:7b-128k-q3_K_S", + "name": "yarn-mistral:7b-128k-q3_K_S", + "description": "An extension of Mistral to support context windows of 64K or 128K.", + "size": "3.2GB", + "digest": "150773407811", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-mistral:7b-128k-q4_0", + "name": "yarn-mistral:7b-128k-q4_0", + "description": "An extension of Mistral to support context windows of 64K or 128K.", + "size": "4.1GB", + "digest": "6511b83c33d5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-mistral:7b-128k-q4_1", + "name": "yarn-mistral:7b-128k-q4_1", + "description": "An extension of Mistral to support context windows of 64K or 128K.", + "size": "4.6GB", + "digest": "2f2460d79fe1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-mistral:7b-128k-q4_K_M", + "name": "yarn-mistral:7b-128k-q4_K_M", + "description": "An extension of Mistral to support context windows of 64K or 128K.", + "size": "4.4GB", + "digest": "b29d79d2f3ef", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-mistral:7b-128k-q4_K_S", + "name": "yarn-mistral:7b-128k-q4_K_S", + "description": "An extension of Mistral to support context windows of 64K or 128K.", + "size": "4.1GB", + "digest": "60021a54efbe", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-mistral:7b-128k-q5_0", + "name": "yarn-mistral:7b-128k-q5_0", + "description": "An extension of Mistral to support context windows of 64K or 128K.", + "size": "5.0GB", + "digest": "f6e752bb89ba", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-mistral:7b-128k-q5_1", + "name": "yarn-mistral:7b-128k-q5_1", + "description": "An extension of Mistral to support context windows of 64K or 128K.", + "size": "5.4GB", + "digest": "27a21ac0ee02", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-mistral:7b-128k-q5_K_M", + "name": "yarn-mistral:7b-128k-q5_K_M", + "description": "An extension of Mistral to support context windows of 64K or 128K.", + "size": "5.1GB", + "digest": "e73d718076ea", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-mistral:7b-128k-q5_K_S", + "name": "yarn-mistral:7b-128k-q5_K_S", + "description": "An extension of Mistral to support context windows of 64K or 128K.", + "size": "5.0GB", + "digest": "48e075e27562", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-mistral:7b-128k-q6_K", + "name": "yarn-mistral:7b-128k-q6_K", + "description": "An extension of Mistral to support context windows of 64K or 128K.", + "size": "5.9GB", + "digest": "d2efb1f4a053", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-mistral:7b-128k-q8_0", + "name": "yarn-mistral:7b-128k-q8_0", + "description": "An extension of Mistral to support context windows of 64K or 128K.", + "size": "7.7GB", + "digest": "c7d7fcc635b3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-mistral:7b-64k", + "name": "yarn-mistral:7b-64k", + "description": "An extension of Mistral to support context windows of 64K or 128K.", + "size": "4.1GB", + "digest": "8e9c368a0ae4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-mistral:7b-64k-q2_K", + "name": "yarn-mistral:7b-64k-q2_K", + "description": "An extension of Mistral to support context windows of 64K or 128K.", + "size": "3.1GB", + "digest": "7e69098a0185", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-mistral:7b-64k-q3_K_L", + "name": "yarn-mistral:7b-64k-q3_K_L", + "description": "An extension of Mistral to support context windows of 64K or 128K.", + "size": "3.8GB", + "digest": "6fec537d7505", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-mistral:7b-64k-q3_K_M", + "name": "yarn-mistral:7b-64k-q3_K_M", + "description": "An extension of Mistral to support context windows of 64K or 128K.", + "size": "3.5GB", + "digest": "2fe3d1edecaa", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-mistral:7b-64k-q3_K_S", + "name": "yarn-mistral:7b-64k-q3_K_S", + "description": "An extension of Mistral to support context windows of 64K or 128K.", + "size": "3.2GB", + "digest": "9f1a8b3eec09", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-mistral:7b-64k-q4_0", + "name": "yarn-mistral:7b-64k-q4_0", + "description": "An extension of Mistral to support context windows of 64K or 128K.", + "size": "4.1GB", + "digest": "8e9c368a0ae4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-mistral:7b-64k-q4_1", + "name": "yarn-mistral:7b-64k-q4_1", + "description": "An extension of Mistral to support context windows of 64K or 128K.", + "size": "4.6GB", + "digest": "0b1ddb2af722", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-mistral:7b-64k-q4_K_M", + "name": "yarn-mistral:7b-64k-q4_K_M", + "description": "An extension of Mistral to support context windows of 64K or 128K.", + "size": "4.4GB", + "digest": "f9434e5ec017", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-mistral:7b-64k-q4_K_S", + "name": "yarn-mistral:7b-64k-q4_K_S", + "description": "An extension of Mistral to support context windows of 64K or 128K.", + "size": "4.1GB", + "digest": "6a3c24b1e938", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-mistral:7b-64k-q5_0", + "name": "yarn-mistral:7b-64k-q5_0", + "description": "An extension of Mistral to support context windows of 64K or 128K.", + "size": "5.0GB", + "digest": "917060ebb0d8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-mistral:7b-64k-q5_1", + "name": "yarn-mistral:7b-64k-q5_1", + "description": "An extension of Mistral to support context windows of 64K or 128K.", + "size": "5.4GB", + "digest": "5efec29a0821", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-mistral:7b-64k-q5_K_M", + "name": "yarn-mistral:7b-64k-q5_K_M", + "description": "An extension of Mistral to support context windows of 64K or 128K.", + "size": "5.1GB", + "digest": "1ac045b0f86f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-mistral:7b-64k-q5_K_S", + "name": "yarn-mistral:7b-64k-q5_K_S", + "description": "An extension of Mistral to support context windows of 64K or 128K.", + "size": "5.0GB", + "digest": "1fb11cbfb6ad", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-mistral:7b-64k-q6_K", + "name": "yarn-mistral:7b-64k-q6_K", + "description": "An extension of Mistral to support context windows of 64K or 128K.", + "size": "5.9GB", + "digest": "c3108d901ef7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "yarn-mistral:7b-64k-q8_0", + "name": "yarn-mistral:7b-64k-q8_0", + "description": "An extension of Mistral to support context windows of 64K or 128K.", + "size": "7.7GB", + "digest": "236ce568b73c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smallthinker", + "name": "smallthinker", + "description": "A new small reasoning model fine-tuned from the Qwen 2.5 3B Instruct model.", + "size": "3.6GB", + "digest": "945eb1864589", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "smallthinker:3b", + "name": "smallthinker:3b", + "description": "A new small reasoning model fine-tuned from the Qwen 2.5 3B Instruct model.", + "size": "3.6GB", + "digest": "945eb1864589", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smallthinker:3b-preview-fp16", + "name": "smallthinker:3b-preview-fp16", + "description": "A new small reasoning model fine-tuned from the Qwen 2.5 3B Instruct model.", + "size": "6.8GB", + "digest": "71cf19d4f87a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smallthinker:3b-preview-q4_K_M", + "name": "smallthinker:3b-preview-q4_K_M", + "description": "A new small reasoning model fine-tuned from the Qwen 2.5 3B Instruct model.", + "size": "2.1GB", + "digest": "b136f0e0ef96", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "smallthinker:3b-preview-q8_0", + "name": "smallthinker:3b-preview-q8_0", + "description": "A new small reasoning model fine-tuned from the Qwen 2.5 3B Instruct model.", + "size": "3.6GB", + "digest": "945eb1864589", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nexusraven", + "name": "nexusraven", + "description": "Nexus Raven is a 13B instruction tuned model for function calling tasks.", + "size": "7.4GB", + "digest": "483a8282af74", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "nexusraven:13b", + "name": "nexusraven:13b", + "description": "Nexus Raven is a 13B instruction tuned model for function calling tasks.", + "size": "7.4GB", + "digest": "483a8282af74", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nexusraven:13b-fp16", + "name": "nexusraven:13b-fp16", + "description": "Nexus Raven is a 13B instruction tuned model for function calling tasks.", + "size": "26GB", + "digest": "038c3ee38ca3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nexusraven:13b-q2_K", + "name": "nexusraven:13b-q2_K", + "description": "Nexus Raven is a 13B instruction tuned model for function calling tasks.", + "size": "5.4GB", + "digest": "88af7c885f6d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nexusraven:13b-q3_K_L", + "name": "nexusraven:13b-q3_K_L", + "description": "Nexus Raven is a 13B instruction tuned model for function calling tasks.", + "size": "6.9GB", + "digest": "be1c4d4ebf80", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nexusraven:13b-q3_K_M", + "name": "nexusraven:13b-q3_K_M", + "description": "Nexus Raven is a 13B instruction tuned model for function calling tasks.", + "size": "6.3GB", + "digest": "32ee186898d8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nexusraven:13b-q3_K_S", + "name": "nexusraven:13b-q3_K_S", + "description": "Nexus Raven is a 13B instruction tuned model for function calling tasks.", + "size": "5.7GB", + "digest": "c327bf4400c3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nexusraven:13b-q4_0", + "name": "nexusraven:13b-q4_0", + "description": "Nexus Raven is a 13B instruction tuned model for function calling tasks.", + "size": "7.4GB", + "digest": "336957c1d527", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nexusraven:13b-q4_1", + "name": "nexusraven:13b-q4_1", + "description": "Nexus Raven is a 13B instruction tuned model for function calling tasks.", + "size": "8.2GB", + "digest": "cc0185e939a9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nexusraven:13b-q4_K_M", + "name": "nexusraven:13b-q4_K_M", + "description": "Nexus Raven is a 13B instruction tuned model for function calling tasks.", + "size": "7.9GB", + "digest": "869ecaf32849", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nexusraven:13b-q4_K_S", + "name": "nexusraven:13b-q4_K_S", + "description": "Nexus Raven is a 13B instruction tuned model for function calling tasks.", + "size": "7.4GB", + "digest": "01ab3a1e2bd0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nexusraven:13b-q5_0", + "name": "nexusraven:13b-q5_0", + "description": "Nexus Raven is a 13B instruction tuned model for function calling tasks.", + "size": "9.0GB", + "digest": "1edef32ba6b0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nexusraven:13b-q5_1", + "name": "nexusraven:13b-q5_1", + "description": "Nexus Raven is a 13B instruction tuned model for function calling tasks.", + "size": "9.8GB", + "digest": "5695d35736eb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nexusraven:13b-q5_K_M", + "name": "nexusraven:13b-q5_K_M", + "description": "Nexus Raven is a 13B instruction tuned model for function calling tasks.", + "size": "9.2GB", + "digest": "3ba5150eacb6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nexusraven:13b-q5_K_S", + "name": "nexusraven:13b-q5_K_S", + "description": "Nexus Raven is a 13B instruction tuned model for function calling tasks.", + "size": "9.0GB", + "digest": "d47e757e2f8a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nexusraven:13b-q6_K", + "name": "nexusraven:13b-q6_K", + "description": "Nexus Raven is a 13B instruction tuned model for function calling tasks.", + "size": "11GB", + "digest": "fa629e4e0d35", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nexusraven:13b-q8_0", + "name": "nexusraven:13b-q8_0", + "description": "Nexus Raven is a 13B instruction tuned model for function calling tasks.", + "size": "14GB", + "digest": "25fba36ef0af", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nexusraven:13b-v2-fp16", + "name": "nexusraven:13b-v2-fp16", + "description": "Nexus Raven is a 13B instruction tuned model for function calling tasks.", + "size": "26GB", + "digest": "6e9f4b4dff57", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nexusraven:13b-v2-q2_K", + "name": "nexusraven:13b-v2-q2_K", + "description": "Nexus Raven is a 13B instruction tuned model for function calling tasks.", + "size": "5.4GB", + "digest": "335cee44ee6e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nexusraven:13b-v2-q3_K_L", + "name": "nexusraven:13b-v2-q3_K_L", + "description": "Nexus Raven is a 13B instruction tuned model for function calling tasks.", + "size": "6.9GB", + "digest": "030244bdb058", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nexusraven:13b-v2-q3_K_M", + "name": "nexusraven:13b-v2-q3_K_M", + "description": "Nexus Raven is a 13B instruction tuned model for function calling tasks.", + "size": "6.3GB", + "digest": "9c3abc556fee", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nexusraven:13b-v2-q3_K_S", + "name": "nexusraven:13b-v2-q3_K_S", + "description": "Nexus Raven is a 13B instruction tuned model for function calling tasks.", + "size": "5.7GB", + "digest": "e05ddc03a204", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nexusraven:13b-v2-q4_0", + "name": "nexusraven:13b-v2-q4_0", + "description": "Nexus Raven is a 13B instruction tuned model for function calling tasks.", + "size": "7.4GB", + "digest": "483a8282af74", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nexusraven:13b-v2-q4_1", + "name": "nexusraven:13b-v2-q4_1", + "description": "Nexus Raven is a 13B instruction tuned model for function calling tasks.", + "size": "8.2GB", + "digest": "9d97f7422b57", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nexusraven:13b-v2-q4_K_M", + "name": "nexusraven:13b-v2-q4_K_M", + "description": "Nexus Raven is a 13B instruction tuned model for function calling tasks.", + "size": "7.9GB", + "digest": "c686cfb91b9b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nexusraven:13b-v2-q4_K_S", + "name": "nexusraven:13b-v2-q4_K_S", + "description": "Nexus Raven is a 13B instruction tuned model for function calling tasks.", + "size": "7.4GB", + "digest": "d922b5f359d4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nexusraven:13b-v2-q5_0", + "name": "nexusraven:13b-v2-q5_0", + "description": "Nexus Raven is a 13B instruction tuned model for function calling tasks.", + "size": "9.0GB", + "digest": "93d134582405", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nexusraven:13b-v2-q5_1", + "name": "nexusraven:13b-v2-q5_1", + "description": "Nexus Raven is a 13B instruction tuned model for function calling tasks.", + "size": "9.8GB", + "digest": "223215c51cfb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nexusraven:13b-v2-q5_K_M", + "name": "nexusraven:13b-v2-q5_K_M", + "description": "Nexus Raven is a 13B instruction tuned model for function calling tasks.", + "size": "9.2GB", + "digest": "8754f5363618", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nexusraven:13b-v2-q5_K_S", + "name": "nexusraven:13b-v2-q5_K_S", + "description": "Nexus Raven is a 13B instruction tuned model for function calling tasks.", + "size": "9.0GB", + "digest": "506b8b5250ba", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nexusraven:13b-v2-q6_K", + "name": "nexusraven:13b-v2-q6_K", + "description": "Nexus Raven is a 13B instruction tuned model for function calling tasks.", + "size": "11GB", + "digest": "d81ebb5a6f93", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nexusraven:13b-v2-q8_0", + "name": "nexusraven:13b-v2-q8_0", + "description": "Nexus Raven is a 13B instruction tuned model for function calling tasks.", + "size": "14GB", + "digest": "2f770812d079", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes2-mixtral", + "name": "nous-hermes2-mixtral", + "description": "The Nous Hermes 2 model from Nous Research, now trained over Mixtral.", + "size": "26GB", + "digest": "da8c35896cff", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "nous-hermes2-mixtral:8x7b", + "name": "nous-hermes2-mixtral:8x7b", + "description": "The Nous Hermes 2 model from Nous Research, now trained over Mixtral.", + "size": "26GB", + "digest": "da8c35896cff", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes2-mixtral:8x7b-dpo-fp16", + "name": "nous-hermes2-mixtral:8x7b-dpo-fp16", + "description": "The Nous Hermes 2 model from Nous Research, now trained over Mixtral.", + "size": "93GB", + "digest": "42c40087888d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes2-mixtral:8x7b-dpo-q2_K", + "name": "nous-hermes2-mixtral:8x7b-dpo-q2_K", + "description": "The Nous Hermes 2 model from Nous Research, now trained over Mixtral.", + "size": "17GB", + "digest": "def75f44e678", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes2-mixtral:8x7b-dpo-q3_K_L", + "name": "nous-hermes2-mixtral:8x7b-dpo-q3_K_L", + "description": "The Nous Hermes 2 model from Nous Research, now trained over Mixtral.", + "size": "24GB", + "digest": "d3f241b3fa43", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes2-mixtral:8x7b-dpo-q3_K_M", + "name": "nous-hermes2-mixtral:8x7b-dpo-q3_K_M", + "description": "The Nous Hermes 2 model from Nous Research, now trained over Mixtral.", + "size": "23GB", + "digest": "e401c6cff6ee", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes2-mixtral:8x7b-dpo-q3_K_S", + "name": "nous-hermes2-mixtral:8x7b-dpo-q3_K_S", + "description": "The Nous Hermes 2 model from Nous Research, now trained over Mixtral.", + "size": "20GB", + "digest": "b83102712906", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes2-mixtral:8x7b-dpo-q4_0", + "name": "nous-hermes2-mixtral:8x7b-dpo-q4_0", + "description": "The Nous Hermes 2 model from Nous Research, now trained over Mixtral.", + "size": "26GB", + "digest": "da8c35896cff", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes2-mixtral:8x7b-dpo-q4_1", + "name": "nous-hermes2-mixtral:8x7b-dpo-q4_1", + "description": "The Nous Hermes 2 model from Nous Research, now trained over Mixtral.", + "size": "29GB", + "digest": "6b8631272ae5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes2-mixtral:8x7b-dpo-q4_K_M", + "name": "nous-hermes2-mixtral:8x7b-dpo-q4_K_M", + "description": "The Nous Hermes 2 model from Nous Research, now trained over Mixtral.", + "size": "28GB", + "digest": "5ce16766078d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes2-mixtral:8x7b-dpo-q4_K_S", + "name": "nous-hermes2-mixtral:8x7b-dpo-q4_K_S", + "description": "The Nous Hermes 2 model from Nous Research, now trained over Mixtral.", + "size": "27GB", + "digest": "72597fc38d4a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes2-mixtral:8x7b-dpo-q5_0", + "name": "nous-hermes2-mixtral:8x7b-dpo-q5_0", + "description": "The Nous Hermes 2 model from Nous Research, now trained over Mixtral.", + "size": "32GB", + "digest": "2d30ec45b54c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes2-mixtral:8x7b-dpo-q5_1", + "name": "nous-hermes2-mixtral:8x7b-dpo-q5_1", + "description": "The Nous Hermes 2 model from Nous Research, now trained over Mixtral.", + "size": "35GB", + "digest": "d37f3798cec9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes2-mixtral:8x7b-dpo-q5_K_M", + "name": "nous-hermes2-mixtral:8x7b-dpo-q5_K_M", + "description": "The Nous Hermes 2 model from Nous Research, now trained over Mixtral.", + "size": "33GB", + "digest": "c95f2fb1bbb0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes2-mixtral:8x7b-dpo-q5_K_S", + "name": "nous-hermes2-mixtral:8x7b-dpo-q5_K_S", + "description": "The Nous Hermes 2 model from Nous Research, now trained over Mixtral.", + "size": "32GB", + "digest": "78bf09c60f45", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes2-mixtral:8x7b-dpo-q6_K", + "name": "nous-hermes2-mixtral:8x7b-dpo-q6_K", + "description": "The Nous Hermes 2 model from Nous Research, now trained over Mixtral.", + "size": "38GB", + "digest": "af9b1e15b356", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes2-mixtral:8x7b-dpo-q8_0", + "name": "nous-hermes2-mixtral:8x7b-dpo-q8_0", + "description": "The Nous Hermes 2 model from Nous Research, now trained over Mixtral.", + "size": "50GB", + "digest": "a6f9a3257097", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nous-hermes2-mixtral:dpo", + "name": "nous-hermes2-mixtral:dpo", + "description": "The Nous Hermes 2 model from Nous Research, now trained over Mixtral.", + "size": "26GB", + "digest": "da8c35896cff", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codeup", + "name": "codeup", + "description": "Great code generation model based on Llama2.", + "size": "7.4GB", + "digest": "54289661f7a9", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "codeup:13b", + "name": "codeup:13b", + "description": "Great code generation model based on Llama2.", + "size": "7.4GB", + "digest": "54289661f7a9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codeup:13b-llama2", + "name": "codeup:13b-llama2", + "description": "Great code generation model based on Llama2.", + "size": "7.4GB", + "digest": "54289661f7a9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codeup:13b-llama2-chat", + "name": "codeup:13b-llama2-chat", + "description": "Great code generation model based on Llama2.", + "size": "7.4GB", + "digest": "54289661f7a9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codeup:13b-llama2-chat-fp16", + "name": "codeup:13b-llama2-chat-fp16", + "description": "Great code generation model based on Llama2.", + "size": "26GB", + "digest": "601feec09706", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codeup:13b-llama2-chat-q2_K", + "name": "codeup:13b-llama2-chat-q2_K", + "description": "Great code generation model based on Llama2.", + "size": "5.4GB", + "digest": "771830732a3d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codeup:13b-llama2-chat-q3_K_L", + "name": "codeup:13b-llama2-chat-q3_K_L", + "description": "Great code generation model based on Llama2.", + "size": "6.9GB", + "digest": "e9a4c68b3484", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codeup:13b-llama2-chat-q3_K_M", + "name": "codeup:13b-llama2-chat-q3_K_M", + "description": "Great code generation model based on Llama2.", + "size": "6.3GB", + "digest": "9357098e7c6c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codeup:13b-llama2-chat-q3_K_S", + "name": "codeup:13b-llama2-chat-q3_K_S", + "description": "Great code generation model based on Llama2.", + "size": "5.7GB", + "digest": "6986119d6001", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codeup:13b-llama2-chat-q4_0", + "name": "codeup:13b-llama2-chat-q4_0", + "description": "Great code generation model based on Llama2.", + "size": "7.4GB", + "digest": "54289661f7a9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codeup:13b-llama2-chat-q4_1", + "name": "codeup:13b-llama2-chat-q4_1", + "description": "Great code generation model based on Llama2.", + "size": "8.2GB", + "digest": "bb109d5814e0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codeup:13b-llama2-chat-q4_K_M", + "name": "codeup:13b-llama2-chat-q4_K_M", + "description": "Great code generation model based on Llama2.", + "size": "7.9GB", + "digest": "fe7c559371e0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codeup:13b-llama2-chat-q4_K_S", + "name": "codeup:13b-llama2-chat-q4_K_S", + "description": "Great code generation model based on Llama2.", + "size": "7.4GB", + "digest": "d73ef3d9d616", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codeup:13b-llama2-chat-q5_0", + "name": "codeup:13b-llama2-chat-q5_0", + "description": "Great code generation model based on Llama2.", + "size": "9.0GB", + "digest": "e33f1092521e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codeup:13b-llama2-chat-q5_1", + "name": "codeup:13b-llama2-chat-q5_1", + "description": "Great code generation model based on Llama2.", + "size": "9.8GB", + "digest": "37f387ed0970", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codeup:13b-llama2-chat-q5_K_M", + "name": "codeup:13b-llama2-chat-q5_K_M", + "description": "Great code generation model based on Llama2.", + "size": "9.2GB", + "digest": "ec5d06ff705d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codeup:13b-llama2-chat-q5_K_S", + "name": "codeup:13b-llama2-chat-q5_K_S", + "description": "Great code generation model based on Llama2.", + "size": "9.0GB", + "digest": "c8780e1a9e94", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codeup:13b-llama2-chat-q6_K", + "name": "codeup:13b-llama2-chat-q6_K", + "description": "Great code generation model based on Llama2.", + "size": "11GB", + "digest": "bd8f6908c033", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codeup:13b-llama2-chat-q8_0", + "name": "codeup:13b-llama2-chat-q8_0", + "description": "Great code generation model based on Llama2.", + "size": "14GB", + "digest": "773d7e80460c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya-expanse", + "name": "aya-expanse", + "description": "Cohere For AI's language models trained to perform well across 23 different languages.", + "size": "5.1GB", + "digest": "65f986688a01", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "aya-expanse:8b", + "name": "aya-expanse:8b", + "description": "Cohere For AI's language models trained to perform well across 23 different languages.", + "size": "5.1GB", + "digest": "65f986688a01", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya-expanse:32b", + "name": "aya-expanse:32b", + "description": "Cohere For AI's language models trained to perform well across 23 different languages.", + "size": "20GB", + "digest": "1603440383bd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya-expanse:32b-fp16", + "name": "aya-expanse:32b-fp16", + "description": "Cohere For AI's language models trained to perform well across 23 different languages.", + "size": "65GB", + "digest": "c65e9ab0846f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya-expanse:32b-q2_K", + "name": "aya-expanse:32b-q2_K", + "description": "Cohere For AI's language models trained to perform well across 23 different languages.", + "size": "13GB", + "digest": "f44c9317d435", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya-expanse:32b-q3_K_L", + "name": "aya-expanse:32b-q3_K_L", + "description": "Cohere For AI's language models trained to perform well across 23 different languages.", + "size": "18GB", + "digest": "ae8cf77b0ed5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya-expanse:32b-q3_K_M", + "name": "aya-expanse:32b-q3_K_M", + "description": "Cohere For AI's language models trained to perform well across 23 different languages.", + "size": "16GB", + "digest": "0fda43e48571", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya-expanse:32b-q3_K_S", + "name": "aya-expanse:32b-q3_K_S", + "description": "Cohere For AI's language models trained to perform well across 23 different languages.", + "size": "15GB", + "digest": "f9b00ae9fa64", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya-expanse:32b-q4_0", + "name": "aya-expanse:32b-q4_0", + "description": "Cohere For AI's language models trained to perform well across 23 different languages.", + "size": "19GB", + "digest": "a9a6ef593b6d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya-expanse:32b-q4_1", + "name": "aya-expanse:32b-q4_1", + "description": "Cohere For AI's language models trained to perform well across 23 different languages.", + "size": "21GB", + "digest": "873205537e77", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya-expanse:32b-q4_K_M", + "name": "aya-expanse:32b-q4_K_M", + "description": "Cohere For AI's language models trained to perform well across 23 different languages.", + "size": "20GB", + "digest": "1603440383bd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya-expanse:32b-q4_K_S", + "name": "aya-expanse:32b-q4_K_S", + "description": "Cohere For AI's language models trained to perform well across 23 different languages.", + "size": "19GB", + "digest": "c01efb135e53", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya-expanse:32b-q5_0", + "name": "aya-expanse:32b-q5_0", + "description": "Cohere For AI's language models trained to perform well across 23 different languages.", + "size": "22GB", + "digest": "067679252f1c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya-expanse:32b-q5_1", + "name": "aya-expanse:32b-q5_1", + "description": "Cohere For AI's language models trained to perform well across 23 different languages.", + "size": "24GB", + "digest": "ef9e49740da1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya-expanse:32b-q5_K_M", + "name": "aya-expanse:32b-q5_K_M", + "description": "Cohere For AI's language models trained to perform well across 23 different languages.", + "size": "23GB", + "digest": "3283f75f7ad8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya-expanse:32b-q5_K_S", + "name": "aya-expanse:32b-q5_K_S", + "description": "Cohere For AI's language models trained to perform well across 23 different languages.", + "size": "22GB", + "digest": "7549163c6f3b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya-expanse:32b-q6_K", + "name": "aya-expanse:32b-q6_K", + "description": "Cohere For AI's language models trained to perform well across 23 different languages.", + "size": "27GB", + "digest": "bddf1344b6a4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya-expanse:32b-q8_0", + "name": "aya-expanse:32b-q8_0", + "description": "Cohere For AI's language models trained to perform well across 23 different languages.", + "size": "34GB", + "digest": "885aef505f9b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya-expanse:8b-fp16", + "name": "aya-expanse:8b-fp16", + "description": "Cohere For AI's language models trained to perform well across 23 different languages.", + "size": "16GB", + "digest": "a865f88ef2d9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya-expanse:8b-q2_K", + "name": "aya-expanse:8b-q2_K", + "description": "Cohere For AI's language models trained to perform well across 23 different languages.", + "size": "3.4GB", + "digest": "4e94e1804ed0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya-expanse:8b-q3_K_L", + "name": "aya-expanse:8b-q3_K_L", + "description": "Cohere For AI's language models trained to perform well across 23 different languages.", + "size": "4.5GB", + "digest": "fc1432804cff", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya-expanse:8b-q3_K_M", + "name": "aya-expanse:8b-q3_K_M", + "description": "Cohere For AI's language models trained to perform well across 23 different languages.", + "size": "4.2GB", + "digest": "a4a9b41eac86", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya-expanse:8b-q3_K_S", + "name": "aya-expanse:8b-q3_K_S", + "description": "Cohere For AI's language models trained to perform well across 23 different languages.", + "size": "3.9GB", + "digest": "6c65053f0521", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya-expanse:8b-q4_0", + "name": "aya-expanse:8b-q4_0", + "description": "Cohere For AI's language models trained to perform well across 23 different languages.", + "size": "4.8GB", + "digest": "c5956345aaa7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya-expanse:8b-q4_1", + "name": "aya-expanse:8b-q4_1", + "description": "Cohere For AI's language models trained to perform well across 23 different languages.", + "size": "5.2GB", + "digest": "e85461db4a4a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya-expanse:8b-q4_K_M", + "name": "aya-expanse:8b-q4_K_M", + "description": "Cohere For AI's language models trained to perform well across 23 different languages.", + "size": "5.1GB", + "digest": "65f986688a01", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya-expanse:8b-q4_K_S", + "name": "aya-expanse:8b-q4_K_S", + "description": "Cohere For AI's language models trained to perform well across 23 different languages.", + "size": "4.8GB", + "digest": "951e4f5b2da0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya-expanse:8b-q5_0", + "name": "aya-expanse:8b-q5_0", + "description": "Cohere For AI's language models trained to perform well across 23 different languages.", + "size": "5.7GB", + "digest": "d1a8566edcdd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya-expanse:8b-q5_1", + "name": "aya-expanse:8b-q5_1", + "description": "Cohere For AI's language models trained to perform well across 23 different languages.", + "size": "6.1GB", + "digest": "d6c4aa0c560e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya-expanse:8b-q5_K_M", + "name": "aya-expanse:8b-q5_K_M", + "description": "Cohere For AI's language models trained to perform well across 23 different languages.", + "size": "5.8GB", + "digest": "f61895fe5ab1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya-expanse:8b-q5_K_S", + "name": "aya-expanse:8b-q5_K_S", + "description": "Cohere For AI's language models trained to perform well across 23 different languages.", + "size": "5.7GB", + "digest": "52275a980a3a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya-expanse:8b-q6_K", + "name": "aya-expanse:8b-q6_K", + "description": "Cohere For AI's language models trained to perform well across 23 different languages.", + "size": "6.6GB", + "digest": "1ac4fd9f8a6e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "aya-expanse:8b-q8_0", + "name": "aya-expanse:8b-q8_0", + "description": "Cohere For AI's language models trained to perform well across 23 different languages.", + "size": "8.5GB", + "digest": "dea9deb4709b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "everythinglm", + "name": "everythinglm", + "description": "Uncensored Llama2 based model with support for a 16K context window.", + "size": "7.4GB", + "digest": "b005372bc34b", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "everythinglm:13b", + "name": "everythinglm:13b", + "description": "Uncensored Llama2 based model with support for a 16K context window.", + "size": "7.4GB", + "digest": "b005372bc34b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "everythinglm:13b-16k", + "name": "everythinglm:13b-16k", + "description": "Uncensored Llama2 based model with support for a 16K context window.", + "size": "7.4GB", + "digest": "b005372bc34b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "everythinglm:13b-16k-fp16", + "name": "everythinglm:13b-16k-fp16", + "description": "Uncensored Llama2 based model with support for a 16K context window.", + "size": "26GB", + "digest": "9751b8872dce", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "everythinglm:13b-16k-q2_K", + "name": "everythinglm:13b-16k-q2_K", + "description": "Uncensored Llama2 based model with support for a 16K context window.", + "size": "5.4GB", + "digest": "f6e45478904a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "everythinglm:13b-16k-q3_K_L", + "name": "everythinglm:13b-16k-q3_K_L", + "description": "Uncensored Llama2 based model with support for a 16K context window.", + "size": "6.9GB", + "digest": "7fb74f20a0e4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "everythinglm:13b-16k-q3_K_M", + "name": "everythinglm:13b-16k-q3_K_M", + "description": "Uncensored Llama2 based model with support for a 16K context window.", + "size": "6.3GB", + "digest": "abcd3603349c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "everythinglm:13b-16k-q3_K_S", + "name": "everythinglm:13b-16k-q3_K_S", + "description": "Uncensored Llama2 based model with support for a 16K context window.", + "size": "5.7GB", + "digest": "5da9c18ce2b1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "everythinglm:13b-16k-q4_0", + "name": "everythinglm:13b-16k-q4_0", + "description": "Uncensored Llama2 based model with support for a 16K context window.", + "size": "7.4GB", + "digest": "b005372bc34b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "everythinglm:13b-16k-q4_1", + "name": "everythinglm:13b-16k-q4_1", + "description": "Uncensored Llama2 based model with support for a 16K context window.", + "size": "8.2GB", + "digest": "9108ed6fceeb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "everythinglm:13b-16k-q4_K_M", + "name": "everythinglm:13b-16k-q4_K_M", + "description": "Uncensored Llama2 based model with support for a 16K context window.", + "size": "7.9GB", + "digest": "73103cdab413", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "everythinglm:13b-16k-q4_K_S", + "name": "everythinglm:13b-16k-q4_K_S", + "description": "Uncensored Llama2 based model with support for a 16K context window.", + "size": "7.4GB", + "digest": "f43bc8c856a8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "everythinglm:13b-16k-q5_0", + "name": "everythinglm:13b-16k-q5_0", + "description": "Uncensored Llama2 based model with support for a 16K context window.", + "size": "9.0GB", + "digest": "abe15ef39e5a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "everythinglm:13b-16k-q5_1", + "name": "everythinglm:13b-16k-q5_1", + "description": "Uncensored Llama2 based model with support for a 16K context window.", + "size": "9.8GB", + "digest": "b9d5566839c3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "everythinglm:13b-16k-q5_K_M", + "name": "everythinglm:13b-16k-q5_K_M", + "description": "Uncensored Llama2 based model with support for a 16K context window.", + "size": "9.2GB", + "digest": "c21345424f88", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "everythinglm:13b-16k-q5_K_S", + "name": "everythinglm:13b-16k-q5_K_S", + "description": "Uncensored Llama2 based model with support for a 16K context window.", + "size": "9.0GB", + "digest": "8311ea92c147", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "everythinglm:13b-16k-q6_K", + "name": "everythinglm:13b-16k-q6_K", + "description": "Uncensored Llama2 based model with support for a 16K context window.", + "size": "11GB", + "digest": "ddbd37e8995f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "everythinglm:13b-16k-q8_0", + "name": "everythinglm:13b-16k-q8_0", + "description": "Uncensored Llama2 based model with support for a 16K context window.", + "size": "14GB", + "digest": "ab1b2beddcb3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-moe", + "name": "granite3-moe", + "description": "The IBM Granite 1B and 3B models are the first mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "822MB", + "digest": "d84e1e38ee39", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "granite3-moe:1b", + "name": "granite3-moe:1b", + "description": "The IBM Granite 1B and 3B models are the first mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "822MB", + "digest": "d84e1e38ee39", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-moe:3b", + "name": "granite3-moe:3b", + "description": "The IBM Granite 1B and 3B models are the first mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "2.1GB", + "digest": "157f538ae66e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-moe:1b-instruct-fp16", + "name": "granite3-moe:1b-instruct-fp16", + "description": "The IBM Granite 1B and 3B models are the first mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "2.7GB", + "digest": "cee5d696574c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-moe:1b-instruct-q2_K", + "name": "granite3-moe:1b-instruct-q2_K", + "description": "The IBM Granite 1B and 3B models are the first mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "512MB", + "digest": "5965f707577c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-moe:1b-instruct-q3_K_L", + "name": "granite3-moe:1b-instruct-q3_K_L", + "description": "The IBM Granite 1B and 3B models are the first mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "711MB", + "digest": "bbb955565d3d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-moe:1b-instruct-q3_K_M", + "name": "granite3-moe:1b-instruct-q3_K_M", + "description": "The IBM Granite 1B and 3B models are the first mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "659MB", + "digest": "ea6a79b9b3cc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-moe:1b-instruct-q3_K_S", + "name": "granite3-moe:1b-instruct-q3_K_S", + "description": "The IBM Granite 1B and 3B models are the first mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "598MB", + "digest": "cab9e1d32d19", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-moe:1b-instruct-q4_0", + "name": "granite3-moe:1b-instruct-q4_0", + "description": "The IBM Granite 1B and 3B models are the first mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "768MB", + "digest": "9b6ee4c08df8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-moe:1b-instruct-q4_1", + "name": "granite3-moe:1b-instruct-q4_1", + "description": "The IBM Granite 1B and 3B models are the first mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "849MB", + "digest": "c3aa5d722767", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-moe:1b-instruct-q4_K_M", + "name": "granite3-moe:1b-instruct-q4_K_M", + "description": "The IBM Granite 1B and 3B models are the first mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "822MB", + "digest": "d84e1e38ee39", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-moe:1b-instruct-q4_K_S", + "name": "granite3-moe:1b-instruct-q4_K_S", + "description": "The IBM Granite 1B and 3B models are the first mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "775MB", + "digest": "76e6392d08a3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-moe:1b-instruct-q5_0", + "name": "granite3-moe:1b-instruct-q5_0", + "description": "The IBM Granite 1B and 3B models are the first mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "929MB", + "digest": "f49b9c68d958", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-moe:1b-instruct-q5_1", + "name": "granite3-moe:1b-instruct-q5_1", + "description": "The IBM Granite 1B and 3B models are the first mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "1.0GB", + "digest": "f1dbdb4ce40f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-moe:1b-instruct-q5_K_M", + "name": "granite3-moe:1b-instruct-q5_K_M", + "description": "The IBM Granite 1B and 3B models are the first mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "956MB", + "digest": "c51ea1c8bab3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-moe:1b-instruct-q5_K_S", + "name": "granite3-moe:1b-instruct-q5_K_S", + "description": "The IBM Granite 1B and 3B models are the first mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "929MB", + "digest": "427124d0793f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-moe:1b-instruct-q6_K", + "name": "granite3-moe:1b-instruct-q6_K", + "description": "The IBM Granite 1B and 3B models are the first mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "1.1GB", + "digest": "a585cc84307b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-moe:1b-instruct-q8_0", + "name": "granite3-moe:1b-instruct-q8_0", + "description": "The IBM Granite 1B and 3B models are the first mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "1.4GB", + "digest": "84f7efa9cc2d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-moe:3b-instruct-fp16", + "name": "granite3-moe:3b-instruct-fp16", + "description": "The IBM Granite 1B and 3B models are the first mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "6.8GB", + "digest": "9433d98bf426", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-moe:3b-instruct-q2_K", + "name": "granite3-moe:3b-instruct-q2_K", + "description": "The IBM Granite 1B and 3B models are the first mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "1.3GB", + "digest": "48ee4c1b7090", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-moe:3b-instruct-q3_K_L", + "name": "granite3-moe:3b-instruct-q3_K_L", + "description": "The IBM Granite 1B and 3B models are the first mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "1.8GB", + "digest": "8c76215f504a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-moe:3b-instruct-q3_K_M", + "name": "granite3-moe:3b-instruct-q3_K_M", + "description": "The IBM Granite 1B and 3B models are the first mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "1.6GB", + "digest": "cc32cde7c1fe", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-moe:3b-instruct-q3_K_S", + "name": "granite3-moe:3b-instruct-q3_K_S", + "description": "The IBM Granite 1B and 3B models are the first mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "1.5GB", + "digest": "5952b23cdd5c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-moe:3b-instruct-q4_0", + "name": "granite3-moe:3b-instruct-q4_0", + "description": "The IBM Granite 1B and 3B models are the first mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "1.9GB", + "digest": "d144aac2b0d8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-moe:3b-instruct-q4_1", + "name": "granite3-moe:3b-instruct-q4_1", + "description": "The IBM Granite 1B and 3B models are the first mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "2.1GB", + "digest": "ac91c7b62cc7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-moe:3b-instruct-q4_K_M", + "name": "granite3-moe:3b-instruct-q4_K_M", + "description": "The IBM Granite 1B and 3B models are the first mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "2.1GB", + "digest": "157f538ae66e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-moe:3b-instruct-q4_K_S", + "name": "granite3-moe:3b-instruct-q4_K_S", + "description": "The IBM Granite 1B and 3B models are the first mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "1.9GB", + "digest": "9f5ecea51621", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-moe:3b-instruct-q5_0", + "name": "granite3-moe:3b-instruct-q5_0", + "description": "The IBM Granite 1B and 3B models are the first mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "2.3GB", + "digest": "e623edd5db90", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-moe:3b-instruct-q5_1", + "name": "granite3-moe:3b-instruct-q5_1", + "description": "The IBM Granite 1B and 3B models are the first mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "2.5GB", + "digest": "709d47478efd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-moe:3b-instruct-q5_K_M", + "name": "granite3-moe:3b-instruct-q5_K_M", + "description": "The IBM Granite 1B and 3B models are the first mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "2.4GB", + "digest": "94e89b071306", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-moe:3b-instruct-q5_K_S", + "name": "granite3-moe:3b-instruct-q5_K_S", + "description": "The IBM Granite 1B and 3B models are the first mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "2.3GB", + "digest": "c84b2a3a27fd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-moe:3b-instruct-q6_K", + "name": "granite3-moe:3b-instruct-q6_K", + "description": "The IBM Granite 1B and 3B models are the first mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "2.8GB", + "digest": "c196db4b29bb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-moe:3b-instruct-q8_0", + "name": "granite3-moe:3b-instruct-q8_0", + "description": "The IBM Granite 1B and 3B models are the first mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "3.6GB", + "digest": "f3b962d19110", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "bge-large", + "name": "bge-large", + "description": "Embedding model from BAAI mapping texts to vectors.", + "size": "671MB", + "digest": "b3d71c928059", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "bge-large:335m", + "name": "bge-large:335m", + "description": "Embedding model from BAAI mapping texts to vectors.", + "size": "671MB", + "digest": "b3d71c928059", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "bge-large:335m-en-v1.5-fp16", + "name": "bge-large:335m-en-v1.5-fp16", + "description": "Embedding model from BAAI mapping texts to vectors.", + "size": "671MB", + "digest": "b3d71c928059", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon2", + "name": "falcon2", + "description": "Falcon2 is an 11B parameters causal decoder-only model built by TII and trained over 5T tokens.", + "size": "6.4GB", + "digest": "d8c09dbc67c3", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "falcon2:11b", + "name": "falcon2:11b", + "description": "Falcon2 is an 11B parameters causal decoder-only model built by TII and trained over 5T tokens.", + "size": "6.4GB", + "digest": "d8c09dbc67c3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon2:11b-fp16", + "name": "falcon2:11b-fp16", + "description": "Falcon2 is an 11B parameters causal decoder-only model built by TII and trained over 5T tokens.", + "size": "22GB", + "digest": "1f71755ad500", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon2:11b-q2_K", + "name": "falcon2:11b-q2_K", + "description": "Falcon2 is an 11B parameters causal decoder-only model built by TII and trained over 5T tokens.", + "size": "4.3GB", + "digest": "4051a7ef69a1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon2:11b-q3_K_L", + "name": "falcon2:11b-q3_K_L", + "description": "Falcon2 is an 11B parameters causal decoder-only model built by TII and trained over 5T tokens.", + "size": "5.8GB", + "digest": "63a1a26d3ddc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon2:11b-q3_K_M", + "name": "falcon2:11b-q3_K_M", + "description": "Falcon2 is an 11B parameters causal decoder-only model built by TII and trained over 5T tokens.", + "size": "5.4GB", + "digest": "6650bb4b1a0e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon2:11b-q3_K_S", + "name": "falcon2:11b-q3_K_S", + "description": "Falcon2 is an 11B parameters causal decoder-only model built by TII and trained over 5T tokens.", + "size": "4.9GB", + "digest": "7e025ac717fb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon2:11b-q4_0", + "name": "falcon2:11b-q4_0", + "description": "Falcon2 is an 11B parameters causal decoder-only model built by TII and trained over 5T tokens.", + "size": "6.4GB", + "digest": "d8c09dbc67c3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon2:11b-q4_1", + "name": "falcon2:11b-q4_1", + "description": "Falcon2 is an 11B parameters causal decoder-only model built by TII and trained over 5T tokens.", + "size": "7.1GB", + "digest": "8e785c2d36e0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon2:11b-q4_K_M", + "name": "falcon2:11b-q4_K_M", + "description": "Falcon2 is an 11B parameters causal decoder-only model built by TII and trained over 5T tokens.", + "size": "6.8GB", + "digest": "6aadb586b79f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon2:11b-q4_K_S", + "name": "falcon2:11b-q4_K_S", + "description": "Falcon2 is an 11B parameters causal decoder-only model built by TII and trained over 5T tokens.", + "size": "6.4GB", + "digest": "57c340e36421", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon2:11b-q5_0", + "name": "falcon2:11b-q5_0", + "description": "Falcon2 is an 11B parameters causal decoder-only model built by TII and trained over 5T tokens.", + "size": "7.7GB", + "digest": "634fd8a33a16", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon2:11b-q5_1", + "name": "falcon2:11b-q5_1", + "description": "Falcon2 is an 11B parameters causal decoder-only model built by TII and trained over 5T tokens.", + "size": "8.4GB", + "digest": "227312808fcc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon2:11b-q5_K_M", + "name": "falcon2:11b-q5_K_M", + "description": "Falcon2 is an 11B parameters causal decoder-only model built by TII and trained over 5T tokens.", + "size": "8.2GB", + "digest": "d47cbd539ec7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon2:11b-q5_K_S", + "name": "falcon2:11b-q5_K_S", + "description": "Falcon2 is an 11B parameters causal decoder-only model built by TII and trained over 5T tokens.", + "size": "7.7GB", + "digest": "c29ab1d2a69a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon2:11b-q6_K", + "name": "falcon2:11b-q6_K", + "description": "Falcon2 is an 11B parameters causal decoder-only model built by TII and trained over 5T tokens.", + "size": "9.2GB", + "digest": "326a76087a5d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon2:11b-q8_0", + "name": "falcon2:11b-q8_0", + "description": "Falcon2 is an 11B parameters causal decoder-only model built by TII and trained over 5T tokens.", + "size": "12GB", + "digest": "2d49820d6bb5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "magicoder", + "name": "magicoder", + "description": "🎩 Magicoder is a family of 7B parameter models trained on 75K synthetic instruction data using OSS-Instruct, a novel approach to enlightening LLMs with open-source code snippets.", + "size": "3.8GB", + "digest": "8007de06f5d9", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "magicoder:7b", + "name": "magicoder:7b", + "description": "🎩 Magicoder is a family of 7B parameter models trained on 75K synthetic instruction data using OSS-Instruct, a novel approach to enlightening LLMs with open-source code snippets.", + "size": "3.8GB", + "digest": "8007de06f5d9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "magicoder:7b-s-cl", + "name": "magicoder:7b-s-cl", + "description": "🎩 Magicoder is a family of 7B parameter models trained on 75K synthetic instruction data using OSS-Instruct, a novel approach to enlightening LLMs with open-source code snippets.", + "size": "3.8GB", + "digest": "8007de06f5d9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "magicoder:7b-s-cl-fp16", + "name": "magicoder:7b-s-cl-fp16", + "description": "🎩 Magicoder is a family of 7B parameter models trained on 75K synthetic instruction data using OSS-Instruct, a novel approach to enlightening LLMs with open-source code snippets.", + "size": "13GB", + "digest": "859e1ae4f566", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "magicoder:7b-s-cl-q2_K", + "name": "magicoder:7b-s-cl-q2_K", + "description": "🎩 Magicoder is a family of 7B parameter models trained on 75K synthetic instruction data using OSS-Instruct, a novel approach to enlightening LLMs with open-source code snippets.", + "size": "2.8GB", + "digest": "86fd329c64b6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "magicoder:7b-s-cl-q3_K_L", + "name": "magicoder:7b-s-cl-q3_K_L", + "description": "🎩 Magicoder is a family of 7B parameter models trained on 75K synthetic instruction data using OSS-Instruct, a novel approach to enlightening LLMs with open-source code snippets.", + "size": "3.6GB", + "digest": "2bf1232fd9c1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "magicoder:7b-s-cl-q3_K_M", + "name": "magicoder:7b-s-cl-q3_K_M", + "description": "🎩 Magicoder is a family of 7B parameter models trained on 75K synthetic instruction data using OSS-Instruct, a novel approach to enlightening LLMs with open-source code snippets.", + "size": "3.3GB", + "digest": "b2a3d9987ff3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "magicoder:7b-s-cl-q3_K_S", + "name": "magicoder:7b-s-cl-q3_K_S", + "description": "🎩 Magicoder is a family of 7B parameter models trained on 75K synthetic instruction data using OSS-Instruct, a novel approach to enlightening LLMs with open-source code snippets.", + "size": "2.9GB", + "digest": "b7e2d7a303f8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "magicoder:7b-s-cl-q4_0", + "name": "magicoder:7b-s-cl-q4_0", + "description": "🎩 Magicoder is a family of 7B parameter models trained on 75K synthetic instruction data using OSS-Instruct, a novel approach to enlightening LLMs with open-source code snippets.", + "size": "3.8GB", + "digest": "8007de06f5d9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "magicoder:7b-s-cl-q4_1", + "name": "magicoder:7b-s-cl-q4_1", + "description": "🎩 Magicoder is a family of 7B parameter models trained on 75K synthetic instruction data using OSS-Instruct, a novel approach to enlightening LLMs with open-source code snippets.", + "size": "4.2GB", + "digest": "b29bf322a686", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "magicoder:7b-s-cl-q4_K_M", + "name": "magicoder:7b-s-cl-q4_K_M", + "description": "🎩 Magicoder is a family of 7B parameter models trained on 75K synthetic instruction data using OSS-Instruct, a novel approach to enlightening LLMs with open-source code snippets.", + "size": "4.1GB", + "digest": "902b6b028113", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "magicoder:7b-s-cl-q4_K_S", + "name": "magicoder:7b-s-cl-q4_K_S", + "description": "🎩 Magicoder is a family of 7B parameter models trained on 75K synthetic instruction data using OSS-Instruct, a novel approach to enlightening LLMs with open-source code snippets.", + "size": "3.9GB", + "digest": "42b56dd9b1da", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "magicoder:7b-s-cl-q5_0", + "name": "magicoder:7b-s-cl-q5_0", + "description": "🎩 Magicoder is a family of 7B parameter models trained on 75K synthetic instruction data using OSS-Instruct, a novel approach to enlightening LLMs with open-source code snippets.", + "size": "4.7GB", + "digest": "10fa66c827ee", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "magicoder:7b-s-cl-q5_1", + "name": "magicoder:7b-s-cl-q5_1", + "description": "🎩 Magicoder is a family of 7B parameter models trained on 75K synthetic instruction data using OSS-Instruct, a novel approach to enlightening LLMs with open-source code snippets.", + "size": "5.1GB", + "digest": "7da1fdad5251", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "magicoder:7b-s-cl-q5_K_M", + "name": "magicoder:7b-s-cl-q5_K_M", + "description": "🎩 Magicoder is a family of 7B parameter models trained on 75K synthetic instruction data using OSS-Instruct, a novel approach to enlightening LLMs with open-source code snippets.", + "size": "4.8GB", + "digest": "057c4f587f41", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "magicoder:7b-s-cl-q5_K_S", + "name": "magicoder:7b-s-cl-q5_K_S", + "description": "🎩 Magicoder is a family of 7B parameter models trained on 75K synthetic instruction data using OSS-Instruct, a novel approach to enlightening LLMs with open-source code snippets.", + "size": "4.7GB", + "digest": "ce0b81d40da6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "magicoder:7b-s-cl-q6_K", + "name": "magicoder:7b-s-cl-q6_K", + "description": "🎩 Magicoder is a family of 7B parameter models trained on 75K synthetic instruction data using OSS-Instruct, a novel approach to enlightening LLMs with open-source code snippets.", + "size": "5.5GB", + "digest": "cf853951ae4a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "magicoder:7b-s-cl-q8_0", + "name": "magicoder:7b-s-cl-q8_0", + "description": "🎩 Magicoder is a family of 7B parameter models trained on 75K synthetic instruction data using OSS-Instruct, a novel approach to enlightening LLMs with open-source code snippets.", + "size": "7.2GB", + "digest": "96b5e4193464", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon3", + "name": "falcon3", + "description": "A family of efficient AI models under 10B parameters performant in science, math, and coding through innovative training techniques.", + "size": "4.6GB", + "digest": "472ea1c89f64", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "falcon3:1b", + "name": "falcon3:1b", + "description": "A family of efficient AI models under 10B parameters performant in science, math, and coding through innovative training techniques.", + "size": "1.8GB", + "digest": "5449d006a9c7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon3:3b", + "name": "falcon3:3b", + "description": "A family of efficient AI models under 10B parameters performant in science, math, and coding through innovative training techniques.", + "size": "2.0GB", + "digest": "784a7eab5b89", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon3:7b", + "name": "falcon3:7b", + "description": "A family of efficient AI models under 10B parameters performant in science, math, and coding through innovative training techniques.", + "size": "4.6GB", + "digest": "472ea1c89f64", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon3:10b", + "name": "falcon3:10b", + "description": "A family of efficient AI models under 10B parameters performant in science, math, and coding through innovative training techniques.", + "size": "6.3GB", + "digest": "1653ff122acd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon3:10b-instruct-fp16", + "name": "falcon3:10b-instruct-fp16", + "description": "A family of efficient AI models under 10B parameters performant in science, math, and coding through innovative training techniques.", + "size": "21GB", + "digest": "bbe05566f48a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon3:10b-instruct-q4_K_M", + "name": "falcon3:10b-instruct-q4_K_M", + "description": "A family of efficient AI models under 10B parameters performant in science, math, and coding through innovative training techniques.", + "size": "6.3GB", + "digest": "1653ff122acd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon3:10b-instruct-q8_0", + "name": "falcon3:10b-instruct-q8_0", + "description": "A family of efficient AI models under 10B parameters performant in science, math, and coding through innovative training techniques.", + "size": "11GB", + "digest": "d56712f1783f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon3:1b-instruct-fp16", + "name": "falcon3:1b-instruct-fp16", + "description": "A family of efficient AI models under 10B parameters performant in science, math, and coding through innovative training techniques.", + "size": "3.3GB", + "digest": "60ee05ac8fa7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon3:1b-instruct-q4_K_M", + "name": "falcon3:1b-instruct-q4_K_M", + "description": "A family of efficient AI models under 10B parameters performant in science, math, and coding through innovative training techniques.", + "size": "1.1GB", + "digest": "13a315879c51", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon3:1b-instruct-q8_0", + "name": "falcon3:1b-instruct-q8_0", + "description": "A family of efficient AI models under 10B parameters performant in science, math, and coding through innovative training techniques.", + "size": "1.8GB", + "digest": "5449d006a9c7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon3:3b-instruct-fp16", + "name": "falcon3:3b-instruct-fp16", + "description": "A family of efficient AI models under 10B parameters performant in science, math, and coding through innovative training techniques.", + "size": "6.5GB", + "digest": "a45a32ae0c91", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon3:3b-instruct-q4_K_M", + "name": "falcon3:3b-instruct-q4_K_M", + "description": "A family of efficient AI models under 10B parameters performant in science, math, and coding through innovative training techniques.", + "size": "2.0GB", + "digest": "784a7eab5b89", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon3:3b-instruct-q8_0", + "name": "falcon3:3b-instruct-q8_0", + "description": "A family of efficient AI models under 10B parameters performant in science, math, and coding through innovative training techniques.", + "size": "3.4GB", + "digest": "05a32e830399", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon3:7b-instruct-fp16", + "name": "falcon3:7b-instruct-fp16", + "description": "A family of efficient AI models under 10B parameters performant in science, math, and coding through innovative training techniques.", + "size": "15GB", + "digest": "770fc0679654", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon3:7b-instruct-q4_K_M", + "name": "falcon3:7b-instruct-q4_K_M", + "description": "A family of efficient AI models under 10B parameters performant in science, math, and coding through innovative training techniques.", + "size": "4.6GB", + "digest": "472ea1c89f64", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "falcon3:7b-instruct-q8_0", + "name": "falcon3:7b-instruct-q8_0", + "description": "A family of efficient AI models under 10B parameters performant in science, math, and coding through innovative training techniques.", + "size": "7.9GB", + "digest": "49ffc7915656", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm-zephyr", + "name": "stablelm-zephyr", + "description": "A lightweight chat model allowing accurate, and responsive output without requiring high-end hardware.", + "size": "1.6GB", + "digest": "0a108dbd846e", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "stablelm-zephyr:3b", + "name": "stablelm-zephyr:3b", + "description": "A lightweight chat model allowing accurate, and responsive output without requiring high-end hardware.", + "size": "1.6GB", + "digest": "0a108dbd846e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm-zephyr:3b-fp16", + "name": "stablelm-zephyr:3b-fp16", + "description": "A lightweight chat model allowing accurate, and responsive output without requiring high-end hardware.", + "size": "5.6GB", + "digest": "2d27f99af6a5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm-zephyr:3b-q2_K", + "name": "stablelm-zephyr:3b-q2_K", + "description": "A lightweight chat model allowing accurate, and responsive output without requiring high-end hardware.", + "size": "1.2GB", + "digest": "5bac743c919f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm-zephyr:3b-q3_K_L", + "name": "stablelm-zephyr:3b-q3_K_L", + "description": "A lightweight chat model allowing accurate, and responsive output without requiring high-end hardware.", + "size": "1.5GB", + "digest": "e1c8dc5c8d34", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm-zephyr:3b-q3_K_M", + "name": "stablelm-zephyr:3b-q3_K_M", + "description": "A lightweight chat model allowing accurate, and responsive output without requiring high-end hardware.", + "size": "1.4GB", + "digest": "c7711232e7f3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm-zephyr:3b-q3_K_S", + "name": "stablelm-zephyr:3b-q3_K_S", + "description": "A lightweight chat model allowing accurate, and responsive output without requiring high-end hardware.", + "size": "1.3GB", + "digest": "e3701c5f77dc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm-zephyr:3b-q4_0", + "name": "stablelm-zephyr:3b-q4_0", + "description": "A lightweight chat model allowing accurate, and responsive output without requiring high-end hardware.", + "size": "1.6GB", + "digest": "0a108dbd846e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm-zephyr:3b-q4_1", + "name": "stablelm-zephyr:3b-q4_1", + "description": "A lightweight chat model allowing accurate, and responsive output without requiring high-end hardware.", + "size": "1.8GB", + "digest": "cd0ff50645c6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm-zephyr:3b-q4_K_M", + "name": "stablelm-zephyr:3b-q4_K_M", + "description": "A lightweight chat model allowing accurate, and responsive output without requiring high-end hardware.", + "size": "1.7GB", + "digest": "309d69b91219", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm-zephyr:3b-q4_K_S", + "name": "stablelm-zephyr:3b-q4_K_S", + "description": "A lightweight chat model allowing accurate, and responsive output without requiring high-end hardware.", + "size": "1.6GB", + "digest": "582279ce4228", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm-zephyr:3b-q5_0", + "name": "stablelm-zephyr:3b-q5_0", + "description": "A lightweight chat model allowing accurate, and responsive output without requiring high-end hardware.", + "size": "1.9GB", + "digest": "edeb9aa03418", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm-zephyr:3b-q5_1", + "name": "stablelm-zephyr:3b-q5_1", + "description": "A lightweight chat model allowing accurate, and responsive output without requiring high-end hardware.", + "size": "2.1GB", + "digest": "eabd69d2ce14", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm-zephyr:3b-q5_K_M", + "name": "stablelm-zephyr:3b-q5_K_M", + "description": "A lightweight chat model allowing accurate, and responsive output without requiring high-end hardware.", + "size": "2.0GB", + "digest": "d8f94059df64", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm-zephyr:3b-q5_K_S", + "name": "stablelm-zephyr:3b-q5_K_S", + "description": "A lightweight chat model allowing accurate, and responsive output without requiring high-end hardware.", + "size": "1.9GB", + "digest": "71033947149d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm-zephyr:3b-q6_K", + "name": "stablelm-zephyr:3b-q6_K", + "description": "A lightweight chat model allowing accurate, and responsive output without requiring high-end hardware.", + "size": "2.3GB", + "digest": "686dc198f785", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "stablelm-zephyr:3b-q8_0", + "name": "stablelm-zephyr:3b-q8_0", + "description": "A lightweight chat model allowing accurate, and responsive output without requiring high-end hardware.", + "size": "3.0GB", + "digest": "8e11ffa757f3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mathstral", + "name": "mathstral", + "description": "MathΣtral: a 7B model designed for math reasoning and scientific discovery by Mistral AI.", + "size": "4.1GB", + "digest": "4ee7052be55a", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "mathstral:7b", + "name": "mathstral:7b", + "description": "MathΣtral: a 7B model designed for math reasoning and scientific discovery by Mistral AI.", + "size": "4.1GB", + "digest": "4ee7052be55a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mathstral:7b-v0.1-fp16", + "name": "mathstral:7b-v0.1-fp16", + "description": "MathΣtral: a 7B model designed for math reasoning and scientific discovery by Mistral AI.", + "size": "14GB", + "digest": "ce1616d5e8c6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mathstral:7b-v0.1-q2_K", + "name": "mathstral:7b-v0.1-q2_K", + "description": "MathΣtral: a 7B model designed for math reasoning and scientific discovery by Mistral AI.", + "size": "2.7GB", + "digest": "5137b80a2f9f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mathstral:7b-v0.1-q3_K_L", + "name": "mathstral:7b-v0.1-q3_K_L", + "description": "MathΣtral: a 7B model designed for math reasoning and scientific discovery by Mistral AI.", + "size": "3.8GB", + "digest": "f1a0d196fc05", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mathstral:7b-v0.1-q3_K_M", + "name": "mathstral:7b-v0.1-q3_K_M", + "description": "MathΣtral: a 7B model designed for math reasoning and scientific discovery by Mistral AI.", + "size": "3.5GB", + "digest": "67dafe37f729", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mathstral:7b-v0.1-q3_K_S", + "name": "mathstral:7b-v0.1-q3_K_S", + "description": "MathΣtral: a 7B model designed for math reasoning and scientific discovery by Mistral AI.", + "size": "3.2GB", + "digest": "b75c7eed8cf3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mathstral:7b-v0.1-q4_0", + "name": "mathstral:7b-v0.1-q4_0", + "description": "MathΣtral: a 7B model designed for math reasoning and scientific discovery by Mistral AI.", + "size": "4.1GB", + "digest": "4ee7052be55a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mathstral:7b-v0.1-q4_1", + "name": "mathstral:7b-v0.1-q4_1", + "description": "MathΣtral: a 7B model designed for math reasoning and scientific discovery by Mistral AI.", + "size": "4.6GB", + "digest": "7d1005348e61", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mathstral:7b-v0.1-q4_K_M", + "name": "mathstral:7b-v0.1-q4_K_M", + "description": "MathΣtral: a 7B model designed for math reasoning and scientific discovery by Mistral AI.", + "size": "4.4GB", + "digest": "8cf37cd9128d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mathstral:7b-v0.1-q4_K_S", + "name": "mathstral:7b-v0.1-q4_K_S", + "description": "MathΣtral: a 7B model designed for math reasoning and scientific discovery by Mistral AI.", + "size": "4.1GB", + "digest": "4c06df180823", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mathstral:7b-v0.1-q5_0", + "name": "mathstral:7b-v0.1-q5_0", + "description": "MathΣtral: a 7B model designed for math reasoning and scientific discovery by Mistral AI.", + "size": "5.0GB", + "digest": "c766c6cbd32e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mathstral:7b-v0.1-q5_1", + "name": "mathstral:7b-v0.1-q5_1", + "description": "MathΣtral: a 7B model designed for math reasoning and scientific discovery by Mistral AI.", + "size": "5.4GB", + "digest": "f0082439d2ba", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mathstral:7b-v0.1-q5_K_M", + "name": "mathstral:7b-v0.1-q5_K_M", + "description": "MathΣtral: a 7B model designed for math reasoning and scientific discovery by Mistral AI.", + "size": "5.1GB", + "digest": "562985e7a5a8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mathstral:7b-v0.1-q5_K_S", + "name": "mathstral:7b-v0.1-q5_K_S", + "description": "MathΣtral: a 7B model designed for math reasoning and scientific discovery by Mistral AI.", + "size": "5.0GB", + "digest": "e37cf555b2ed", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mathstral:7b-v0.1-q6_K", + "name": "mathstral:7b-v0.1-q6_K", + "description": "MathΣtral: a 7B model designed for math reasoning and scientific discovery by Mistral AI.", + "size": "5.9GB", + "digest": "696c00e5bba0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mathstral:7b-v0.1-q8_0", + "name": "mathstral:7b-v0.1-q8_0", + "description": "MathΣtral: a 7B model designed for math reasoning and scientific discovery by Mistral AI.", + "size": "7.7GB", + "digest": "939f2d6f06c5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codebooga", + "name": "codebooga", + "description": "A high-performing code instruct model created by merging two existing code models.", + "size": "19GB", + "digest": "05b83c5673dc", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "codebooga:34b", + "name": "codebooga:34b", + "description": "A high-performing code instruct model created by merging two existing code models.", + "size": "19GB", + "digest": "05b83c5673dc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codebooga:34b-v0.1-fp16", + "name": "codebooga:34b-v0.1-fp16", + "description": "A high-performing code instruct model created by merging two existing code models.", + "size": "67GB", + "digest": "1500811547ff", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codebooga:34b-v0.1-q2_K", + "name": "codebooga:34b-v0.1-q2_K", + "description": "A high-performing code instruct model created by merging two existing code models.", + "size": "14GB", + "digest": "66d0bfbea65d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codebooga:34b-v0.1-q3_K_L", + "name": "codebooga:34b-v0.1-q3_K_L", + "description": "A high-performing code instruct model created by merging two existing code models.", + "size": "18GB", + "digest": "25a417277d3f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codebooga:34b-v0.1-q3_K_M", + "name": "codebooga:34b-v0.1-q3_K_M", + "description": "A high-performing code instruct model created by merging two existing code models.", + "size": "16GB", + "digest": "2c0498ca682e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codebooga:34b-v0.1-q3_K_S", + "name": "codebooga:34b-v0.1-q3_K_S", + "description": "A high-performing code instruct model created by merging two existing code models.", + "size": "15GB", + "digest": "f3b33c3f73de", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codebooga:34b-v0.1-q4_0", + "name": "codebooga:34b-v0.1-q4_0", + "description": "A high-performing code instruct model created by merging two existing code models.", + "size": "19GB", + "digest": "05b83c5673dc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codebooga:34b-v0.1-q4_1", + "name": "codebooga:34b-v0.1-q4_1", + "description": "A high-performing code instruct model created by merging two existing code models.", + "size": "21GB", + "digest": "cd14b581918a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codebooga:34b-v0.1-q4_K_M", + "name": "codebooga:34b-v0.1-q4_K_M", + "description": "A high-performing code instruct model created by merging two existing code models.", + "size": "20GB", + "digest": "e08c0bf3eb90", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codebooga:34b-v0.1-q5_0", + "name": "codebooga:34b-v0.1-q5_0", + "description": "A high-performing code instruct model created by merging two existing code models.", + "size": "23GB", + "digest": "6d9156fb2f46", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codebooga:34b-v0.1-q5_1", + "name": "codebooga:34b-v0.1-q5_1", + "description": "A high-performing code instruct model created by merging two existing code models.", + "size": "25GB", + "digest": "22e1b1573c42", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codebooga:34b-v0.1-q5_K_M", + "name": "codebooga:34b-v0.1-q5_K_M", + "description": "A high-performing code instruct model created by merging two existing code models.", + "size": "24GB", + "digest": "4545d39783a5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codebooga:34b-v0.1-q5_K_S", + "name": "codebooga:34b-v0.1-q5_K_S", + "description": "A high-performing code instruct model created by merging two existing code models.", + "size": "23GB", + "digest": "cb658befaadb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codebooga:34b-v0.1-q6_K", + "name": "codebooga:34b-v0.1-q6_K", + "description": "A high-performing code instruct model created by merging two existing code models.", + "size": "28GB", + "digest": "0053ef0367fd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "codebooga:34b-v0.1-q8_0", + "name": "codebooga:34b-v0.1-q8_0", + "description": "A high-performing code instruct model created by merging two existing code models.", + "size": "36GB", + "digest": "b6a9ff468c49", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "marco-o1", + "name": "marco-o1", + "description": "An open large reasoning model for real-world solutions by the Alibaba International Digital Commerce Group (AIDC-AI).", + "size": "4.7GB", + "digest": "4752e62baa0a", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "marco-o1:7b", + "name": "marco-o1:7b", + "description": "An open large reasoning model for real-world solutions by the Alibaba International Digital Commerce Group (AIDC-AI).", + "size": "4.7GB", + "digest": "4752e62baa0a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "marco-o1:7b-fp16", + "name": "marco-o1:7b-fp16", + "description": "An open large reasoning model for real-world solutions by the Alibaba International Digital Commerce Group (AIDC-AI).", + "size": "15GB", + "digest": "c911a6aaee29", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "marco-o1:7b-q4_K_M", + "name": "marco-o1:7b-q4_K_M", + "description": "An open large reasoning model for real-world solutions by the Alibaba International Digital Commerce Group (AIDC-AI).", + "size": "4.7GB", + "digest": "4752e62baa0a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "marco-o1:7b-q8_0", + "name": "marco-o1:7b-q8_0", + "description": "An open large reasoning model for real-world solutions by the Alibaba International Digital Commerce Group (AIDC-AI).", + "size": "8.1GB", + "digest": "45f9391dde04", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "reader-lm", + "name": "reader-lm", + "description": "A series of models that convert HTML content to Markdown content, which is useful for content conversion tasks.", + "size": "935MB", + "digest": "33da2b9e0afe", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "reader-lm:0.5b", + "name": "reader-lm:0.5b", + "description": "A series of models that convert HTML content to Markdown content, which is useful for content conversion tasks.", + "size": "352MB", + "digest": "5142df586645", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "reader-lm:1.5b", + "name": "reader-lm:1.5b", + "description": "A series of models that convert HTML content to Markdown content, which is useful for content conversion tasks.", + "size": "935MB", + "digest": "33da2b9e0afe", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "reader-lm:0.5b-fp16", + "name": "reader-lm:0.5b-fp16", + "description": "A series of models that convert HTML content to Markdown content, which is useful for content conversion tasks.", + "size": "994MB", + "digest": "372bede54f00", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "reader-lm:0.5b-q2_K", + "name": "reader-lm:0.5b-q2_K", + "description": "A series of models that convert HTML content to Markdown content, which is useful for content conversion tasks.", + "size": "339MB", + "digest": "af34eb77b23c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "reader-lm:0.5b-q3_K_L", + "name": "reader-lm:0.5b-q3_K_L", + "description": "A series of models that convert HTML content to Markdown content, which is useful for content conversion tasks.", + "size": "369MB", + "digest": "19b158ce5d4f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "reader-lm:0.5b-q3_K_M", + "name": "reader-lm:0.5b-q3_K_M", + "description": "A series of models that convert HTML content to Markdown content, which is useful for content conversion tasks.", + "size": "355MB", + "digest": "bd8861b9b8b6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "reader-lm:0.5b-q3_K_S", + "name": "reader-lm:0.5b-q3_K_S", + "description": "A series of models that convert HTML content to Markdown content, which is useful for content conversion tasks.", + "size": "338MB", + "digest": "c15f8240fdfd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "reader-lm:0.5b-q4_0", + "name": "reader-lm:0.5b-q4_0", + "description": "A series of models that convert HTML content to Markdown content, which is useful for content conversion tasks.", + "size": "352MB", + "digest": "5142df586645", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "reader-lm:0.5b-q4_1", + "name": "reader-lm:0.5b-q4_1", + "description": "A series of models that convert HTML content to Markdown content, which is useful for content conversion tasks.", + "size": "375MB", + "digest": "ebc58a28e21a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "reader-lm:0.5b-q4_K_M", + "name": "reader-lm:0.5b-q4_K_M", + "description": "A series of models that convert HTML content to Markdown content, which is useful for content conversion tasks.", + "size": "398MB", + "digest": "cd9cdd312854", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "reader-lm:0.5b-q4_K_S", + "name": "reader-lm:0.5b-q4_K_S", + "description": "A series of models that convert HTML content to Markdown content, which is useful for content conversion tasks.", + "size": "385MB", + "digest": "7c27ad8cf758", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "reader-lm:0.5b-q5_0", + "name": "reader-lm:0.5b-q5_0", + "description": "A series of models that convert HTML content to Markdown content, which is useful for content conversion tasks.", + "size": "397MB", + "digest": "f2c2c123b1f8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "reader-lm:0.5b-q5_1", + "name": "reader-lm:0.5b-q5_1", + "description": "A series of models that convert HTML content to Markdown content, which is useful for content conversion tasks.", + "size": "419MB", + "digest": "85e8705b05b2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "reader-lm:0.5b-q5_K_M", + "name": "reader-lm:0.5b-q5_K_M", + "description": "A series of models that convert HTML content to Markdown content, which is useful for content conversion tasks.", + "size": "420MB", + "digest": "b6b1a83de2ae", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "reader-lm:0.5b-q5_K_S", + "name": "reader-lm:0.5b-q5_K_S", + "description": "A series of models that convert HTML content to Markdown content, which is useful for content conversion tasks.", + "size": "413MB", + "digest": "8f77463504e7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "reader-lm:0.5b-q6_K", + "name": "reader-lm:0.5b-q6_K", + "description": "A series of models that convert HTML content to Markdown content, which is useful for content conversion tasks.", + "size": "506MB", + "digest": "6f8291aee62f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "reader-lm:0.5b-q8_0", + "name": "reader-lm:0.5b-q8_0", + "description": "A series of models that convert HTML content to Markdown content, which is useful for content conversion tasks.", + "size": "531MB", + "digest": "4dc1ed29ebba", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "reader-lm:1.5b-fp16", + "name": "reader-lm:1.5b-fp16", + "description": "A series of models that convert HTML content to Markdown content, which is useful for content conversion tasks.", + "size": "3.1GB", + "digest": "a099cb640088", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "reader-lm:1.5b-q2_K", + "name": "reader-lm:1.5b-q2_K", + "description": "A series of models that convert HTML content to Markdown content, which is useful for content conversion tasks.", + "size": "676MB", + "digest": "21617a48e1b9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "reader-lm:1.5b-q3_K_L", + "name": "reader-lm:1.5b-q3_K_L", + "description": "A series of models that convert HTML content to Markdown content, which is useful for content conversion tasks.", + "size": "880MB", + "digest": "e6d39acdf3bd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "reader-lm:1.5b-q3_K_M", + "name": "reader-lm:1.5b-q3_K_M", + "description": "A series of models that convert HTML content to Markdown content, which is useful for content conversion tasks.", + "size": "824MB", + "digest": "04d6fa1b5675", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "reader-lm:1.5b-q3_K_S", + "name": "reader-lm:1.5b-q3_K_S", + "description": "A series of models that convert HTML content to Markdown content, which is useful for content conversion tasks.", + "size": "761MB", + "digest": "4e71ee323763", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "reader-lm:1.5b-q4_0", + "name": "reader-lm:1.5b-q4_0", + "description": "A series of models that convert HTML content to Markdown content, which is useful for content conversion tasks.", + "size": "935MB", + "digest": "33da2b9e0afe", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "reader-lm:1.5b-q4_1", + "name": "reader-lm:1.5b-q4_1", + "description": "A series of models that convert HTML content to Markdown content, which is useful for content conversion tasks.", + "size": "1.0GB", + "digest": "2fa8a5bbd70b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "reader-lm:1.5b-q4_K_M", + "name": "reader-lm:1.5b-q4_K_M", + "description": "A series of models that convert HTML content to Markdown content, which is useful for content conversion tasks.", + "size": "986MB", + "digest": "b86722567954", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "reader-lm:1.5b-q4_K_S", + "name": "reader-lm:1.5b-q4_K_S", + "description": "A series of models that convert HTML content to Markdown content, which is useful for content conversion tasks.", + "size": "940MB", + "digest": "61de2f1c665b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "reader-lm:1.5b-q5_0", + "name": "reader-lm:1.5b-q5_0", + "description": "A series of models that convert HTML content to Markdown content, which is useful for content conversion tasks.", + "size": "1.1GB", + "digest": "890000830ffe", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "reader-lm:1.5b-q5_1", + "name": "reader-lm:1.5b-q5_1", + "description": "A series of models that convert HTML content to Markdown content, which is useful for content conversion tasks.", + "size": "1.2GB", + "digest": "4640a36a6d05", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "reader-lm:1.5b-q5_K_M", + "name": "reader-lm:1.5b-q5_K_M", + "description": "A series of models that convert HTML content to Markdown content, which is useful for content conversion tasks.", + "size": "1.1GB", + "digest": "c7f1ea450e9b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "reader-lm:1.5b-q5_K_S", + "name": "reader-lm:1.5b-q5_K_S", + "description": "A series of models that convert HTML content to Markdown content, which is useful for content conversion tasks.", + "size": "1.1GB", + "digest": "ca910efc76a3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "reader-lm:1.5b-q6_K", + "name": "reader-lm:1.5b-q6_K", + "description": "A series of models that convert HTML content to Markdown content, which is useful for content conversion tasks.", + "size": "1.3GB", + "digest": "9c5fd0c488ad", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "reader-lm:1.5b-q8_0", + "name": "reader-lm:1.5b-q8_0", + "description": "A series of models that convert HTML content to Markdown content, which is useful for content conversion tasks.", + "size": "1.6GB", + "digest": "39ec9eda0492", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistrallite", + "name": "mistrallite", + "description": "MistralLite is a fine-tuned model based on Mistral with enhanced capabilities of processing long contexts.", + "size": "4.1GB", + "digest": "5393d4f5f262", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "mistrallite:7b", + "name": "mistrallite:7b", + "description": "MistralLite is a fine-tuned model based on Mistral with enhanced capabilities of processing long contexts.", + "size": "4.1GB", + "digest": "5393d4f5f262", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistrallite:7b-v0.1-fp16", + "name": "mistrallite:7b-v0.1-fp16", + "description": "MistralLite is a fine-tuned model based on Mistral with enhanced capabilities of processing long contexts.", + "size": "14GB", + "digest": "a6c59d49e2a9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistrallite:7b-v0.1-q2_K", + "name": "mistrallite:7b-v0.1-q2_K", + "description": "MistralLite is a fine-tuned model based on Mistral with enhanced capabilities of processing long contexts.", + "size": "3.1GB", + "digest": "32164f7b30a5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistrallite:7b-v0.1-q3_K_L", + "name": "mistrallite:7b-v0.1-q3_K_L", + "description": "MistralLite is a fine-tuned model based on Mistral with enhanced capabilities of processing long contexts.", + "size": "3.8GB", + "digest": "bb7562f0532f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistrallite:7b-v0.1-q3_K_M", + "name": "mistrallite:7b-v0.1-q3_K_M", + "description": "MistralLite is a fine-tuned model based on Mistral with enhanced capabilities of processing long contexts.", + "size": "3.5GB", + "digest": "366ee513d776", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistrallite:7b-v0.1-q3_K_S", + "name": "mistrallite:7b-v0.1-q3_K_S", + "description": "MistralLite is a fine-tuned model based on Mistral with enhanced capabilities of processing long contexts.", + "size": "3.2GB", + "digest": "ebf457323d7d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistrallite:7b-v0.1-q4_0", + "name": "mistrallite:7b-v0.1-q4_0", + "description": "MistralLite is a fine-tuned model based on Mistral with enhanced capabilities of processing long contexts.", + "size": "4.1GB", + "digest": "5393d4f5f262", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistrallite:7b-v0.1-q4_1", + "name": "mistrallite:7b-v0.1-q4_1", + "description": "MistralLite is a fine-tuned model based on Mistral with enhanced capabilities of processing long contexts.", + "size": "4.6GB", + "digest": "00a4a71eee8f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistrallite:7b-v0.1-q4_K_M", + "name": "mistrallite:7b-v0.1-q4_K_M", + "description": "MistralLite is a fine-tuned model based on Mistral with enhanced capabilities of processing long contexts.", + "size": "4.4GB", + "digest": "d73bbd6b49d1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistrallite:7b-v0.1-q4_K_S", + "name": "mistrallite:7b-v0.1-q4_K_S", + "description": "MistralLite is a fine-tuned model based on Mistral with enhanced capabilities of processing long contexts.", + "size": "4.1GB", + "digest": "81a8a1744387", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistrallite:7b-v0.1-q5_0", + "name": "mistrallite:7b-v0.1-q5_0", + "description": "MistralLite is a fine-tuned model based on Mistral with enhanced capabilities of processing long contexts.", + "size": "5.0GB", + "digest": "751a158ec222", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistrallite:7b-v0.1-q5_1", + "name": "mistrallite:7b-v0.1-q5_1", + "description": "MistralLite is a fine-tuned model based on Mistral with enhanced capabilities of processing long contexts.", + "size": "5.4GB", + "digest": "e09d24104dd5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistrallite:7b-v0.1-q5_K_M", + "name": "mistrallite:7b-v0.1-q5_K_M", + "description": "MistralLite is a fine-tuned model based on Mistral with enhanced capabilities of processing long contexts.", + "size": "5.1GB", + "digest": "7a3f8c87136f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistrallite:7b-v0.1-q5_K_S", + "name": "mistrallite:7b-v0.1-q5_K_S", + "description": "MistralLite is a fine-tuned model based on Mistral with enhanced capabilities of processing long contexts.", + "size": "5.0GB", + "digest": "6b71023e7195", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistrallite:7b-v0.1-q6_K", + "name": "mistrallite:7b-v0.1-q6_K", + "description": "MistralLite is a fine-tuned model based on Mistral with enhanced capabilities of processing long contexts.", + "size": "5.9GB", + "digest": "c63d67539934", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "mistrallite:7b-v0.1-q8_0", + "name": "mistrallite:7b-v0.1-q8_0", + "description": "MistralLite is a fine-tuned model based on Mistral with enhanced capabilities of processing long contexts.", + "size": "7.7GB", + "digest": "8856fb347897", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "duckdb-nsql", + "name": "duckdb-nsql", + "description": "7B parameter text-to-SQL model made by MotherDuck and Numbers Station.", + "size": "3.8GB", + "digest": "3ed734989690", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "duckdb-nsql:7b", + "name": "duckdb-nsql:7b", + "description": "7B parameter text-to-SQL model made by MotherDuck and Numbers Station.", + "size": "3.8GB", + "digest": "3ed734989690", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "duckdb-nsql:7b-fp16", + "name": "duckdb-nsql:7b-fp16", + "description": "7B parameter text-to-SQL model made by MotherDuck and Numbers Station.", + "size": "13GB", + "digest": "542d129a0ebd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "duckdb-nsql:7b-q2_K", + "name": "duckdb-nsql:7b-q2_K", + "description": "7B parameter text-to-SQL model made by MotherDuck and Numbers Station.", + "size": "2.5GB", + "digest": "1cbb7e381e0d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "duckdb-nsql:7b-q3_K_L", + "name": "duckdb-nsql:7b-q3_K_L", + "description": "7B parameter text-to-SQL model made by MotherDuck and Numbers Station.", + "size": "3.6GB", + "digest": "2ad0663e4dc5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "duckdb-nsql:7b-q3_K_M", + "name": "duckdb-nsql:7b-q3_K_M", + "description": "7B parameter text-to-SQL model made by MotherDuck and Numbers Station.", + "size": "3.3GB", + "digest": "df78bad24127", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "duckdb-nsql:7b-q3_K_S", + "name": "duckdb-nsql:7b-q3_K_S", + "description": "7B parameter text-to-SQL model made by MotherDuck and Numbers Station.", + "size": "2.9GB", + "digest": "6e301c3680be", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "duckdb-nsql:7b-q4_0", + "name": "duckdb-nsql:7b-q4_0", + "description": "7B parameter text-to-SQL model made by MotherDuck and Numbers Station.", + "size": "3.8GB", + "digest": "3ed734989690", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "duckdb-nsql:7b-q4_1", + "name": "duckdb-nsql:7b-q4_1", + "description": "7B parameter text-to-SQL model made by MotherDuck and Numbers Station.", + "size": "4.2GB", + "digest": "ab2326ca8b79", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "duckdb-nsql:7b-q4_K_M", + "name": "duckdb-nsql:7b-q4_K_M", + "description": "7B parameter text-to-SQL model made by MotherDuck and Numbers Station.", + "size": "4.1GB", + "digest": "d5214ab09cf5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "duckdb-nsql:7b-q4_K_S", + "name": "duckdb-nsql:7b-q4_K_S", + "description": "7B parameter text-to-SQL model made by MotherDuck and Numbers Station.", + "size": "3.9GB", + "digest": "2933e36bfa35", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "duckdb-nsql:7b-q5_0", + "name": "duckdb-nsql:7b-q5_0", + "description": "7B parameter text-to-SQL model made by MotherDuck and Numbers Station.", + "size": "4.7GB", + "digest": "3b9715ade8b6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "duckdb-nsql:7b-q5_1", + "name": "duckdb-nsql:7b-q5_1", + "description": "7B parameter text-to-SQL model made by MotherDuck and Numbers Station.", + "size": "5.1GB", + "digest": "2ea8ccb73272", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "duckdb-nsql:7b-q5_K_M", + "name": "duckdb-nsql:7b-q5_K_M", + "description": "7B parameter text-to-SQL model made by MotherDuck and Numbers Station.", + "size": "4.8GB", + "digest": "084b49941207", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "duckdb-nsql:7b-q5_K_S", + "name": "duckdb-nsql:7b-q5_K_S", + "description": "7B parameter text-to-SQL model made by MotherDuck and Numbers Station.", + "size": "4.7GB", + "digest": "49c1d3c130d2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "duckdb-nsql:7b-q6_K", + "name": "duckdb-nsql:7b-q6_K", + "description": "7B parameter text-to-SQL model made by MotherDuck and Numbers Station.", + "size": "5.5GB", + "digest": "4ac244b368af", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "duckdb-nsql:7b-q8_0", + "name": "duckdb-nsql:7b-q8_0", + "description": "7B parameter text-to-SQL model made by MotherDuck and Numbers Station.", + "size": "7.2GB", + "digest": "a63220880981", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna", + "name": "wizard-vicuna", + "description": "Wizard Vicuna is a 13B parameter model based on Llama 2 trained by MelodysDreamj.", + "size": "7.4GB", + "digest": "a8fb469ef6bd", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "wizard-vicuna:13b", + "name": "wizard-vicuna:13b", + "description": "Wizard Vicuna is a 13B parameter model based on Llama 2 trained by MelodysDreamj.", + "size": "7.4GB", + "digest": "a8fb469ef6bd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna:13b-fp16", + "name": "wizard-vicuna:13b-fp16", + "description": "Wizard Vicuna is a 13B parameter model based on Llama 2 trained by MelodysDreamj.", + "size": "26GB", + "digest": "cc8594c08ee8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna:13b-q2_K", + "name": "wizard-vicuna:13b-q2_K", + "description": "Wizard Vicuna is a 13B parameter model based on Llama 2 trained by MelodysDreamj.", + "size": "5.4GB", + "digest": "53b417f93f69", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna:13b-q3_K_L", + "name": "wizard-vicuna:13b-q3_K_L", + "description": "Wizard Vicuna is a 13B parameter model based on Llama 2 trained by MelodysDreamj.", + "size": "6.9GB", + "digest": "a3a73c2bdaf5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna:13b-q3_K_M", + "name": "wizard-vicuna:13b-q3_K_M", + "description": "Wizard Vicuna is a 13B parameter model based on Llama 2 trained by MelodysDreamj.", + "size": "6.3GB", + "digest": "d02e7a6ee062", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna:13b-q3_K_S", + "name": "wizard-vicuna:13b-q3_K_S", + "description": "Wizard Vicuna is a 13B parameter model based on Llama 2 trained by MelodysDreamj.", + "size": "5.7GB", + "digest": "f402ed00ddb9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna:13b-q4_0", + "name": "wizard-vicuna:13b-q4_0", + "description": "Wizard Vicuna is a 13B parameter model based on Llama 2 trained by MelodysDreamj.", + "size": "7.4GB", + "digest": "a8fb469ef6bd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna:13b-q4_1", + "name": "wizard-vicuna:13b-q4_1", + "description": "Wizard Vicuna is a 13B parameter model based on Llama 2 trained by MelodysDreamj.", + "size": "8.2GB", + "digest": "46f8af4817cc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna:13b-q4_K_M", + "name": "wizard-vicuna:13b-q4_K_M", + "description": "Wizard Vicuna is a 13B parameter model based on Llama 2 trained by MelodysDreamj.", + "size": "7.9GB", + "digest": "864c6cb42228", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna:13b-q4_K_S", + "name": "wizard-vicuna:13b-q4_K_S", + "description": "Wizard Vicuna is a 13B parameter model based on Llama 2 trained by MelodysDreamj.", + "size": "7.4GB", + "digest": "3af3cb8591e3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna:13b-q5_0", + "name": "wizard-vicuna:13b-q5_0", + "description": "Wizard Vicuna is a 13B parameter model based on Llama 2 trained by MelodysDreamj.", + "size": "9.0GB", + "digest": "d962b9bd1ae4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna:13b-q5_1", + "name": "wizard-vicuna:13b-q5_1", + "description": "Wizard Vicuna is a 13B parameter model based on Llama 2 trained by MelodysDreamj.", + "size": "9.8GB", + "digest": "c6e46ce79965", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna:13b-q5_K_M", + "name": "wizard-vicuna:13b-q5_K_M", + "description": "Wizard Vicuna is a 13B parameter model based on Llama 2 trained by MelodysDreamj.", + "size": "9.2GB", + "digest": "11bdc7bdd978", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna:13b-q5_K_S", + "name": "wizard-vicuna:13b-q5_K_S", + "description": "Wizard Vicuna is a 13B parameter model based on Llama 2 trained by MelodysDreamj.", + "size": "9.0GB", + "digest": "2e19ac68ead6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna:13b-q6_K", + "name": "wizard-vicuna:13b-q6_K", + "description": "Wizard Vicuna is a 13B parameter model based on Llama 2 trained by MelodysDreamj.", + "size": "11GB", + "digest": "bfc227743375", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "wizard-vicuna:13b-q8_0", + "name": "wizard-vicuna:13b-q8_0", + "description": "Wizard Vicuna is a 13B parameter model based on Llama 2 trained by MelodysDreamj.", + "size": "14GB", + "digest": "4d8e29e58cdd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "solar-pro", + "name": "solar-pro", + "description": "Solar Pro Preview: an advanced large language model (LLM) with 22 billion parameters designed to fit into a single GPU", + "size": "13GB", + "digest": "9a8c71c441ca", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "solar-pro:22b", + "name": "solar-pro:22b", + "description": "Solar Pro Preview: an advanced large language model (LLM) with 22 billion parameters designed to fit into a single GPU", + "size": "13GB", + "digest": "9a8c71c441ca", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "solar-pro:22b-preview-instruct-fp16", + "name": "solar-pro:22b-preview-instruct-fp16", + "description": "Solar Pro Preview: an advanced large language model (LLM) with 22 billion parameters designed to fit into a single GPU", + "size": "44GB", + "digest": "7f6010e2ba0f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "solar-pro:22b-preview-instruct-q2_K", + "name": "solar-pro:22b-preview-instruct-q2_K", + "description": "Solar Pro Preview: an advanced large language model (LLM) with 22 billion parameters designed to fit into a single GPU", + "size": "8.2GB", + "digest": "565afa7ef255", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "solar-pro:22b-preview-instruct-q3_K_L", + "name": "solar-pro:22b-preview-instruct-q3_K_L", + "description": "Solar Pro Preview: an advanced large language model (LLM) with 22 billion parameters designed to fit into a single GPU", + "size": "12GB", + "digest": "8e88c5664027", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "solar-pro:22b-preview-instruct-q3_K_M", + "name": "solar-pro:22b-preview-instruct-q3_K_M", + "description": "Solar Pro Preview: an advanced large language model (LLM) with 22 billion parameters designed to fit into a single GPU", + "size": "11GB", + "digest": "061df9bbeb2e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "solar-pro:22b-preview-instruct-q3_K_S", + "name": "solar-pro:22b-preview-instruct-q3_K_S", + "description": "Solar Pro Preview: an advanced large language model (LLM) with 22 billion parameters designed to fit into a single GPU", + "size": "9.6GB", + "digest": "f3047ccbe196", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "solar-pro:22b-preview-instruct-q4_0", + "name": "solar-pro:22b-preview-instruct-q4_0", + "description": "Solar Pro Preview: an advanced large language model (LLM) with 22 billion parameters designed to fit into a single GPU", + "size": "12GB", + "digest": "8f665c54f08a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "solar-pro:22b-preview-instruct-q4_1", + "name": "solar-pro:22b-preview-instruct-q4_1", + "description": "Solar Pro Preview: an advanced large language model (LLM) with 22 billion parameters designed to fit into a single GPU", + "size": "14GB", + "digest": "4a090dbef5c4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "solar-pro:22b-preview-instruct-q4_K_M", + "name": "solar-pro:22b-preview-instruct-q4_K_M", + "description": "Solar Pro Preview: an advanced large language model (LLM) with 22 billion parameters designed to fit into a single GPU", + "size": "13GB", + "digest": "9a8c71c441ca", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "solar-pro:22b-preview-instruct-q4_K_S", + "name": "solar-pro:22b-preview-instruct-q4_K_S", + "description": "Solar Pro Preview: an advanced large language model (LLM) with 22 billion parameters designed to fit into a single GPU", + "size": "13GB", + "digest": "d9240858384a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "solar-pro:22b-preview-instruct-q5_0", + "name": "solar-pro:22b-preview-instruct-q5_0", + "description": "Solar Pro Preview: an advanced large language model (LLM) with 22 billion parameters designed to fit into a single GPU", + "size": "15GB", + "digest": "7a6422ffbdbb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "solar-pro:22b-preview-instruct-q5_1", + "name": "solar-pro:22b-preview-instruct-q5_1", + "description": "Solar Pro Preview: an advanced large language model (LLM) with 22 billion parameters designed to fit into a single GPU", + "size": "17GB", + "digest": "e84e5da3da89", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "solar-pro:22b-preview-instruct-q5_K_M", + "name": "solar-pro:22b-preview-instruct-q5_K_M", + "description": "Solar Pro Preview: an advanced large language model (LLM) with 22 billion parameters designed to fit into a single GPU", + "size": "16GB", + "digest": "020a0e79be2e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "solar-pro:22b-preview-instruct-q5_K_S", + "name": "solar-pro:22b-preview-instruct-q5_K_S", + "description": "Solar Pro Preview: an advanced large language model (LLM) with 22 billion parameters designed to fit into a single GPU", + "size": "15GB", + "digest": "676df95b0bea", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "solar-pro:22b-preview-instruct-q6_K", + "name": "solar-pro:22b-preview-instruct-q6_K", + "description": "Solar Pro Preview: an advanced large language model (LLM) with 22 billion parameters designed to fit into a single GPU", + "size": "18GB", + "digest": "d59107fc3b57", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "solar-pro:22b-preview-instruct-q8_0", + "name": "solar-pro:22b-preview-instruct-q8_0", + "description": "Solar Pro Preview: an advanced large language model (LLM) with 22 billion parameters designed to fit into a single GPU", + "size": "24GB", + "digest": "2cc310f73c41", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "solar-pro:preview", + "name": "solar-pro:preview", + "description": "Solar Pro Preview: an advanced large language model (LLM) with 22 billion parameters designed to fit into a single GPU", + "size": "13GB", + "digest": "9a8c71c441ca", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "megadolphin", + "name": "megadolphin", + "description": "MegaDolphin-2.2-120b is a transformation of Dolphin-2.2-70b created by interleaving the model with itself.", + "size": "68GB", + "digest": "8fa55398527b", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "megadolphin:120b", + "name": "megadolphin:120b", + "description": "MegaDolphin-2.2-120b is a transformation of Dolphin-2.2-70b created by interleaving the model with itself.", + "size": "68GB", + "digest": "8fa55398527b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "megadolphin:120b-v2.2", + "name": "megadolphin:120b-v2.2", + "description": "MegaDolphin-2.2-120b is a transformation of Dolphin-2.2-70b created by interleaving the model with itself.", + "size": "68GB", + "digest": "8fa55398527b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "megadolphin:120b-v2.2-fp16", + "name": "megadolphin:120b-v2.2-fp16", + "description": "MegaDolphin-2.2-120b is a transformation of Dolphin-2.2-70b created by interleaving the model with itself.", + "size": "241GB", + "digest": "cf54e31cfdd8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "megadolphin:120b-v2.2-q2_K", + "name": "megadolphin:120b-v2.2-q2_K", + "description": "MegaDolphin-2.2-120b is a transformation of Dolphin-2.2-70b created by interleaving the model with itself.", + "size": "51GB", + "digest": "e1b1887eddd5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "megadolphin:120b-v2.2-q3_K_L", + "name": "megadolphin:120b-v2.2-q3_K_L", + "description": "MegaDolphin-2.2-120b is a transformation of Dolphin-2.2-70b created by interleaving the model with itself.", + "size": "63GB", + "digest": "a27d38e0cacc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "megadolphin:120b-v2.2-q3_K_M", + "name": "megadolphin:120b-v2.2-q3_K_M", + "description": "MegaDolphin-2.2-120b is a transformation of Dolphin-2.2-70b created by interleaving the model with itself.", + "size": "58GB", + "digest": "65fd60e22eea", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "megadolphin:120b-v2.2-q3_K_S", + "name": "megadolphin:120b-v2.2-q3_K_S", + "description": "MegaDolphin-2.2-120b is a transformation of Dolphin-2.2-70b created by interleaving the model with itself.", + "size": "52GB", + "digest": "51cfd8967e4b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "megadolphin:120b-v2.2-q4_0", + "name": "megadolphin:120b-v2.2-q4_0", + "description": "MegaDolphin-2.2-120b is a transformation of Dolphin-2.2-70b created by interleaving the model with itself.", + "size": "68GB", + "digest": "8fa55398527b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "megadolphin:120b-v2.2-q4_1", + "name": "megadolphin:120b-v2.2-q4_1", + "description": "MegaDolphin-2.2-120b is a transformation of Dolphin-2.2-70b created by interleaving the model with itself.", + "size": "75GB", + "digest": "9868ed4c72c3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "megadolphin:120b-v2.2-q4_K_M", + "name": "megadolphin:120b-v2.2-q4_K_M", + "description": "MegaDolphin-2.2-120b is a transformation of Dolphin-2.2-70b created by interleaving the model with itself.", + "size": "72GB", + "digest": "b92822f58f1d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "megadolphin:120b-v2.2-q4_K_S", + "name": "megadolphin:120b-v2.2-q4_K_S", + "description": "MegaDolphin-2.2-120b is a transformation of Dolphin-2.2-70b created by interleaving the model with itself.", + "size": "68GB", + "digest": "62050e584c58", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "megadolphin:120b-v2.2-q5_0", + "name": "megadolphin:120b-v2.2-q5_0", + "description": "MegaDolphin-2.2-120b is a transformation of Dolphin-2.2-70b created by interleaving the model with itself.", + "size": "83GB", + "digest": "83e48c89c1be", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "megadolphin:120b-v2.2-q5_1", + "name": "megadolphin:120b-v2.2-q5_1", + "description": "MegaDolphin-2.2-120b is a transformation of Dolphin-2.2-70b created by interleaving the model with itself.", + "size": "90GB", + "digest": "9b53d1dc0471", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "megadolphin:120b-v2.2-q5_K_M", + "name": "megadolphin:120b-v2.2-q5_K_M", + "description": "MegaDolphin-2.2-120b is a transformation of Dolphin-2.2-70b created by interleaving the model with itself.", + "size": "85GB", + "digest": "559d2beee57b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "megadolphin:120b-v2.2-q5_K_S", + "name": "megadolphin:120b-v2.2-q5_K_S", + "description": "MegaDolphin-2.2-120b is a transformation of Dolphin-2.2-70b created by interleaving the model with itself.", + "size": "83GB", + "digest": "253565c3099b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "megadolphin:120b-v2.2-q6_K", + "name": "megadolphin:120b-v2.2-q6_K", + "description": "MegaDolphin-2.2-120b is a transformation of Dolphin-2.2-70b created by interleaving the model with itself.", + "size": "99GB", + "digest": "dcaaf2d5d42c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "megadolphin:120b-v2.2-q8_0", + "name": "megadolphin:120b-v2.2-q8_0", + "description": "MegaDolphin-2.2-120b is a transformation of Dolphin-2.2-70b created by interleaving the model with itself.", + "size": "128GB", + "digest": "8f2b4b5ff548", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "megadolphin:v2.2", + "name": "megadolphin:v2.2", + "description": "MegaDolphin-2.2-120b is a transformation of Dolphin-2.2-70b created by interleaving the model with itself.", + "size": "68GB", + "digest": "8fa55398527b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "shieldgemma", + "name": "shieldgemma", + "description": "ShieldGemma is set of instruction tuned models for evaluating the safety of text prompt input and text output responses against a set of defined safety policies.", + "size": "5.8GB", + "digest": "c82cacd5af5e", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "shieldgemma:2b", + "name": "shieldgemma:2b", + "description": "ShieldGemma is set of instruction tuned models for evaluating the safety of text prompt input and text output responses against a set of defined safety policies.", + "size": "1.7GB", + "digest": "5aad5044d142", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "shieldgemma:9b", + "name": "shieldgemma:9b", + "description": "ShieldGemma is set of instruction tuned models for evaluating the safety of text prompt input and text output responses against a set of defined safety policies.", + "size": "5.8GB", + "digest": "c82cacd5af5e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "shieldgemma:27b", + "name": "shieldgemma:27b", + "description": "ShieldGemma is set of instruction tuned models for evaluating the safety of text prompt input and text output responses against a set of defined safety policies.", + "size": "17GB", + "digest": "a5d7e17031b4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "shieldgemma:27b-fp16", + "name": "shieldgemma:27b-fp16", + "description": "ShieldGemma is set of instruction tuned models for evaluating the safety of text prompt input and text output responses against a set of defined safety policies.", + "size": "54GB", + "digest": "3e774e7b4545", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "shieldgemma:27b-q2_K", + "name": "shieldgemma:27b-q2_K", + "description": "ShieldGemma is set of instruction tuned models for evaluating the safety of text prompt input and text output responses against a set of defined safety policies.", + "size": "10GB", + "digest": "d8d17ed3cef2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "shieldgemma:27b-q3_K_L", + "name": "shieldgemma:27b-q3_K_L", + "description": "ShieldGemma is set of instruction tuned models for evaluating the safety of text prompt input and text output responses against a set of defined safety policies.", + "size": "15GB", + "digest": "8f19ca45514c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "shieldgemma:27b-q3_K_M", + "name": "shieldgemma:27b-q3_K_M", + "description": "ShieldGemma is set of instruction tuned models for evaluating the safety of text prompt input and text output responses against a set of defined safety policies.", + "size": "13GB", + "digest": "d8f3e2e2f1b2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "shieldgemma:27b-q3_K_S", + "name": "shieldgemma:27b-q3_K_S", + "description": "ShieldGemma is set of instruction tuned models for evaluating the safety of text prompt input and text output responses against a set of defined safety policies.", + "size": "12GB", + "digest": "feca6f60628a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "shieldgemma:27b-q4_0", + "name": "shieldgemma:27b-q4_0", + "description": "ShieldGemma is set of instruction tuned models for evaluating the safety of text prompt input and text output responses against a set of defined safety policies.", + "size": "16GB", + "digest": "dd3ba9bf896e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "shieldgemma:27b-q4_1", + "name": "shieldgemma:27b-q4_1", + "description": "ShieldGemma is set of instruction tuned models for evaluating the safety of text prompt input and text output responses against a set of defined safety policies.", + "size": "17GB", + "digest": "86baf7b8d77e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "shieldgemma:27b-q4_K_M", + "name": "shieldgemma:27b-q4_K_M", + "description": "ShieldGemma is set of instruction tuned models for evaluating the safety of text prompt input and text output responses against a set of defined safety policies.", + "size": "17GB", + "digest": "a5d7e17031b4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "shieldgemma:27b-q4_K_S", + "name": "shieldgemma:27b-q4_K_S", + "description": "ShieldGemma is set of instruction tuned models for evaluating the safety of text prompt input and text output responses against a set of defined safety policies.", + "size": "16GB", + "digest": "4eb28893980b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "shieldgemma:27b-q5_0", + "name": "shieldgemma:27b-q5_0", + "description": "ShieldGemma is set of instruction tuned models for evaluating the safety of text prompt input and text output responses against a set of defined safety policies.", + "size": "19GB", + "digest": "b260777de17e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "shieldgemma:27b-q5_1", + "name": "shieldgemma:27b-q5_1", + "description": "ShieldGemma is set of instruction tuned models for evaluating the safety of text prompt input and text output responses against a set of defined safety policies.", + "size": "21GB", + "digest": "61a1eaeb05ad", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "shieldgemma:27b-q5_K_M", + "name": "shieldgemma:27b-q5_K_M", + "description": "ShieldGemma is set of instruction tuned models for evaluating the safety of text prompt input and text output responses against a set of defined safety policies.", + "size": "19GB", + "digest": "18593abe595e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "shieldgemma:27b-q5_K_S", + "name": "shieldgemma:27b-q5_K_S", + "description": "ShieldGemma is set of instruction tuned models for evaluating the safety of text prompt input and text output responses against a set of defined safety policies.", + "size": "19GB", + "digest": "751794b36b4c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "shieldgemma:27b-q6_K", + "name": "shieldgemma:27b-q6_K", + "description": "ShieldGemma is set of instruction tuned models for evaluating the safety of text prompt input and text output responses against a set of defined safety policies.", + "size": "22GB", + "digest": "a2c181c9fa6a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "shieldgemma:27b-q8_0", + "name": "shieldgemma:27b-q8_0", + "description": "ShieldGemma is set of instruction tuned models for evaluating the safety of text prompt input and text output responses against a set of defined safety policies.", + "size": "29GB", + "digest": "0bedd4c372fe", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "shieldgemma:2b-fp16", + "name": "shieldgemma:2b-fp16", + "description": "ShieldGemma is set of instruction tuned models for evaluating the safety of text prompt input and text output responses against a set of defined safety policies.", + "size": "5.2GB", + "digest": "edaf3b7bd2ea", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "shieldgemma:2b-q2_K", + "name": "shieldgemma:2b-q2_K", + "description": "ShieldGemma is set of instruction tuned models for evaluating the safety of text prompt input and text output responses against a set of defined safety policies.", + "size": "1.2GB", + "digest": "8fe6125835d8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "shieldgemma:2b-q3_K_L", + "name": "shieldgemma:2b-q3_K_L", + "description": "ShieldGemma is set of instruction tuned models for evaluating the safety of text prompt input and text output responses against a set of defined safety policies.", + "size": "1.6GB", + "digest": "6e1f85ff56c4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "shieldgemma:2b-q3_K_M", + "name": "shieldgemma:2b-q3_K_M", + "description": "ShieldGemma is set of instruction tuned models for evaluating the safety of text prompt input and text output responses against a set of defined safety policies.", + "size": "1.5GB", + "digest": "8792c0fdb69d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "shieldgemma:2b-q3_K_S", + "name": "shieldgemma:2b-q3_K_S", + "description": "ShieldGemma is set of instruction tuned models for evaluating the safety of text prompt input and text output responses against a set of defined safety policies.", + "size": "1.4GB", + "digest": "ed1adf76cf49", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "shieldgemma:2b-q4_0", + "name": "shieldgemma:2b-q4_0", + "description": "ShieldGemma is set of instruction tuned models for evaluating the safety of text prompt input and text output responses against a set of defined safety policies.", + "size": "1.6GB", + "digest": "8c75ad5241ba", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "shieldgemma:2b-q4_1", + "name": "shieldgemma:2b-q4_1", + "description": "ShieldGemma is set of instruction tuned models for evaluating the safety of text prompt input and text output responses against a set of defined safety policies.", + "size": "1.8GB", + "digest": "8079392bcbe5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "shieldgemma:2b-q4_K_M", + "name": "shieldgemma:2b-q4_K_M", + "description": "ShieldGemma is set of instruction tuned models for evaluating the safety of text prompt input and text output responses against a set of defined safety policies.", + "size": "1.7GB", + "digest": "5aad5044d142", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "shieldgemma:2b-q4_K_S", + "name": "shieldgemma:2b-q4_K_S", + "description": "ShieldGemma is set of instruction tuned models for evaluating the safety of text prompt input and text output responses against a set of defined safety policies.", + "size": "1.6GB", + "digest": "460e97ad8fe1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "shieldgemma:2b-q5_0", + "name": "shieldgemma:2b-q5_0", + "description": "ShieldGemma is set of instruction tuned models for evaluating the safety of text prompt input and text output responses against a set of defined safety policies.", + "size": "1.9GB", + "digest": "f0ccd970270f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "shieldgemma:2b-q5_1", + "name": "shieldgemma:2b-q5_1", + "description": "ShieldGemma is set of instruction tuned models for evaluating the safety of text prompt input and text output responses against a set of defined safety policies.", + "size": "2.0GB", + "digest": "86dd3e901f29", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "shieldgemma:2b-q5_K_M", + "name": "shieldgemma:2b-q5_K_M", + "description": "ShieldGemma is set of instruction tuned models for evaluating the safety of text prompt input and text output responses against a set of defined safety policies.", + "size": "1.9GB", + "digest": "29b311ed2d95", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "shieldgemma:2b-q5_K_S", + "name": "shieldgemma:2b-q5_K_S", + "description": "ShieldGemma is set of instruction tuned models for evaluating the safety of text prompt input and text output responses against a set of defined safety policies.", + "size": "1.9GB", + "digest": "e87b5af5b923", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "shieldgemma:2b-q6_K", + "name": "shieldgemma:2b-q6_K", + "description": "ShieldGemma is set of instruction tuned models for evaluating the safety of text prompt input and text output responses against a set of defined safety policies.", + "size": "2.2GB", + "digest": "d6bc266fff20", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "shieldgemma:2b-q8_0", + "name": "shieldgemma:2b-q8_0", + "description": "ShieldGemma is set of instruction tuned models for evaluating the safety of text prompt input and text output responses against a set of defined safety policies.", + "size": "2.8GB", + "digest": "4e23a11d17c8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "shieldgemma:9b-fp16", + "name": "shieldgemma:9b-fp16", + "description": "ShieldGemma is set of instruction tuned models for evaluating the safety of text prompt input and text output responses against a set of defined safety policies.", + "size": "18GB", + "digest": "5ad5e824db94", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "shieldgemma:9b-q2_K", + "name": "shieldgemma:9b-q2_K", + "description": "ShieldGemma is set of instruction tuned models for evaluating the safety of text prompt input and text output responses against a set of defined safety policies.", + "size": "3.8GB", + "digest": "4705089a2870", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "shieldgemma:9b-q3_K_L", + "name": "shieldgemma:9b-q3_K_L", + "description": "ShieldGemma is set of instruction tuned models for evaluating the safety of text prompt input and text output responses against a set of defined safety policies.", + "size": "5.1GB", + "digest": "02637dc40252", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "shieldgemma:9b-q3_K_M", + "name": "shieldgemma:9b-q3_K_M", + "description": "ShieldGemma is set of instruction tuned models for evaluating the safety of text prompt input and text output responses against a set of defined safety policies.", + "size": "4.8GB", + "digest": "1ee83e818fb1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "shieldgemma:9b-q3_K_S", + "name": "shieldgemma:9b-q3_K_S", + "description": "ShieldGemma is set of instruction tuned models for evaluating the safety of text prompt input and text output responses against a set of defined safety policies.", + "size": "4.3GB", + "digest": "59f3cd1ead5e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "shieldgemma:9b-q4_0", + "name": "shieldgemma:9b-q4_0", + "description": "ShieldGemma is set of instruction tuned models for evaluating the safety of text prompt input and text output responses against a set of defined safety policies.", + "size": "5.4GB", + "digest": "672a383489f4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "shieldgemma:9b-q4_1", + "name": "shieldgemma:9b-q4_1", + "description": "ShieldGemma is set of instruction tuned models for evaluating the safety of text prompt input and text output responses against a set of defined safety policies.", + "size": "6.0GB", + "digest": "423d2aeca52c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "shieldgemma:9b-q4_K_M", + "name": "shieldgemma:9b-q4_K_M", + "description": "ShieldGemma is set of instruction tuned models for evaluating the safety of text prompt input and text output responses against a set of defined safety policies.", + "size": "5.8GB", + "digest": "c82cacd5af5e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "shieldgemma:9b-q4_K_S", + "name": "shieldgemma:9b-q4_K_S", + "description": "ShieldGemma is set of instruction tuned models for evaluating the safety of text prompt input and text output responses against a set of defined safety policies.", + "size": "5.5GB", + "digest": "c4b9ac85349c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "shieldgemma:9b-q5_0", + "name": "shieldgemma:9b-q5_0", + "description": "ShieldGemma is set of instruction tuned models for evaluating the safety of text prompt input and text output responses against a set of defined safety policies.", + "size": "6.5GB", + "digest": "75f32f5d1b35", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "shieldgemma:9b-q5_1", + "name": "shieldgemma:9b-q5_1", + "description": "ShieldGemma is set of instruction tuned models for evaluating the safety of text prompt input and text output responses against a set of defined safety policies.", + "size": "7.0GB", + "digest": "43e40f2b8a24", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "shieldgemma:9b-q5_K_M", + "name": "shieldgemma:9b-q5_K_M", + "description": "ShieldGemma is set of instruction tuned models for evaluating the safety of text prompt input and text output responses against a set of defined safety policies.", + "size": "6.6GB", + "digest": "cbfb3b3b1cd1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "shieldgemma:9b-q5_K_S", + "name": "shieldgemma:9b-q5_K_S", + "description": "ShieldGemma is set of instruction tuned models for evaluating the safety of text prompt input and text output responses against a set of defined safety policies.", + "size": "6.5GB", + "digest": "577538bd20f5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "shieldgemma:9b-q6_K", + "name": "shieldgemma:9b-q6_K", + "description": "ShieldGemma is set of instruction tuned models for evaluating the safety of text prompt input and text output responses against a set of defined safety policies.", + "size": "7.6GB", + "digest": "3fe88a5a8730", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "shieldgemma:9b-q8_0", + "name": "shieldgemma:9b-q8_0", + "description": "ShieldGemma is set of instruction tuned models for evaluating the safety of text prompt input and text output responses against a set of defined safety policies.", + "size": "9.8GB", + "digest": "14c1959c8e4f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "snowflake-arctic-embed2", + "name": "snowflake-arctic-embed2", + "description": "Snowflake's frontier embedding model. Arctic Embed 2.0 adds multilingual support without sacrificing English performance or scalability.", + "size": "1.2GB", + "digest": "5de93a84837d", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "snowflake-arctic-embed2:568m", + "name": "snowflake-arctic-embed2:568m", + "description": "Snowflake's frontier embedding model. Arctic Embed 2.0 adds multilingual support without sacrificing English performance or scalability.", + "size": "1.2GB", + "digest": "5de93a84837d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "snowflake-arctic-embed2:568m-l-fp16", + "name": "snowflake-arctic-embed2:568m-l-fp16", + "description": "Snowflake's frontier embedding model. Arctic Embed 2.0 adds multilingual support without sacrificing English performance or scalability.", + "size": "1.2GB", + "digest": "5de93a84837d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nuextract", + "name": "nuextract", + "description": "A 3.8B model fine-tuned on a private high-quality synthetic dataset for information extraction, based on Phi-3.", + "size": "2.2GB", + "digest": "233ce1dee972", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "nuextract:3.8b", + "name": "nuextract:3.8b", + "description": "A 3.8B model fine-tuned on a private high-quality synthetic dataset for information extraction, based on Phi-3.", + "size": "2.2GB", + "digest": "233ce1dee972", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nuextract:3.8b-fp16", + "name": "nuextract:3.8b-fp16", + "description": "A 3.8B model fine-tuned on a private high-quality synthetic dataset for information extraction, based on Phi-3.", + "size": "7.6GB", + "digest": "d8bc760a64ed", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nuextract:3.8b-q2_K", + "name": "nuextract:3.8b-q2_K", + "description": "A 3.8B model fine-tuned on a private high-quality synthetic dataset for information extraction, based on Phi-3.", + "size": "1.4GB", + "digest": "3ff975f1c449", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nuextract:3.8b-q3_K_L", + "name": "nuextract:3.8b-q3_K_L", + "description": "A 3.8B model fine-tuned on a private high-quality synthetic dataset for information extraction, based on Phi-3.", + "size": "2.1GB", + "digest": "d1c82fd1af09", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nuextract:3.8b-q3_K_M", + "name": "nuextract:3.8b-q3_K_M", + "description": "A 3.8B model fine-tuned on a private high-quality synthetic dataset for information extraction, based on Phi-3.", + "size": "2.0GB", + "digest": "0bb3a0c4be0e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nuextract:3.8b-q3_K_S", + "name": "nuextract:3.8b-q3_K_S", + "description": "A 3.8B model fine-tuned on a private high-quality synthetic dataset for information extraction, based on Phi-3.", + "size": "1.7GB", + "digest": "7e8679715f5c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nuextract:3.8b-q4_0", + "name": "nuextract:3.8b-q4_0", + "description": "A 3.8B model fine-tuned on a private high-quality synthetic dataset for information extraction, based on Phi-3.", + "size": "2.2GB", + "digest": "233ce1dee972", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nuextract:3.8b-q4_1", + "name": "nuextract:3.8b-q4_1", + "description": "A 3.8B model fine-tuned on a private high-quality synthetic dataset for information extraction, based on Phi-3.", + "size": "2.4GB", + "digest": "cb364d1aa272", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nuextract:3.8b-q4_K_M", + "name": "nuextract:3.8b-q4_K_M", + "description": "A 3.8B model fine-tuned on a private high-quality synthetic dataset for information extraction, based on Phi-3.", + "size": "2.4GB", + "digest": "2e9ece488363", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nuextract:3.8b-q4_K_S", + "name": "nuextract:3.8b-q4_K_S", + "description": "A 3.8B model fine-tuned on a private high-quality synthetic dataset for information extraction, based on Phi-3.", + "size": "2.2GB", + "digest": "14b853e9c0c0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nuextract:3.8b-q5_0", + "name": "nuextract:3.8b-q5_0", + "description": "A 3.8B model fine-tuned on a private high-quality synthetic dataset for information extraction, based on Phi-3.", + "size": "2.6GB", + "digest": "f2effca26a5f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nuextract:3.8b-q5_1", + "name": "nuextract:3.8b-q5_1", + "description": "A 3.8B model fine-tuned on a private high-quality synthetic dataset for information extraction, based on Phi-3.", + "size": "2.9GB", + "digest": "e04443b0019f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nuextract:3.8b-q5_K_M", + "name": "nuextract:3.8b-q5_K_M", + "description": "A 3.8B model fine-tuned on a private high-quality synthetic dataset for information extraction, based on Phi-3.", + "size": "2.8GB", + "digest": "e45f9e901474", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nuextract:3.8b-q5_K_S", + "name": "nuextract:3.8b-q5_K_S", + "description": "A 3.8B model fine-tuned on a private high-quality synthetic dataset for information extraction, based on Phi-3.", + "size": "2.6GB", + "digest": "1d19041cee7d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nuextract:3.8b-q6_K", + "name": "nuextract:3.8b-q6_K", + "description": "A 3.8B model fine-tuned on a private high-quality synthetic dataset for information extraction, based on Phi-3.", + "size": "3.1GB", + "digest": "313af121aa51", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "nuextract:3.8b-q8_0", + "name": "nuextract:3.8b-q8_0", + "description": "A 3.8B model fine-tuned on a private high-quality synthetic dataset for information extraction, based on Phi-3.", + "size": "4.1GB", + "digest": "fac3a7e1b11b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "notux", + "name": "notux", + "description": "A top-performing mixture of experts model, fine-tuned with high-quality data.", + "size": "26GB", + "digest": "fe14e7d66184", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "notux:8x7b", + "name": "notux:8x7b", + "description": "A top-performing mixture of experts model, fine-tuned with high-quality data.", + "size": "26GB", + "digest": "fe14e7d66184", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "notux:8x7b-v1", + "name": "notux:8x7b-v1", + "description": "A top-performing mixture of experts model, fine-tuned with high-quality data.", + "size": "26GB", + "digest": "fe14e7d66184", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "notux:8x7b-v1-fp16", + "name": "notux:8x7b-v1-fp16", + "description": "A top-performing mixture of experts model, fine-tuned with high-quality data.", + "size": "93GB", + "digest": "2fcdc0b6a3a1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "notux:8x7b-v1-q2_K", + "name": "notux:8x7b-v1-q2_K", + "description": "A top-performing mixture of experts model, fine-tuned with high-quality data.", + "size": "16GB", + "digest": "92257992996c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "notux:8x7b-v1-q3_K_L", + "name": "notux:8x7b-v1-q3_K_L", + "description": "A top-performing mixture of experts model, fine-tuned with high-quality data.", + "size": "20GB", + "digest": "dba2de3a5168", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "notux:8x7b-v1-q3_K_M", + "name": "notux:8x7b-v1-q3_K_M", + "description": "A top-performing mixture of experts model, fine-tuned with high-quality data.", + "size": "20GB", + "digest": "20bdbdb43962", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "notux:8x7b-v1-q3_K_S", + "name": "notux:8x7b-v1-q3_K_S", + "description": "A top-performing mixture of experts model, fine-tuned with high-quality data.", + "size": "20GB", + "digest": "204879dc2cc3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "notux:8x7b-v1-q4_0", + "name": "notux:8x7b-v1-q4_0", + "description": "A top-performing mixture of experts model, fine-tuned with high-quality data.", + "size": "26GB", + "digest": "fe14e7d66184", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "notux:8x7b-v1-q4_1", + "name": "notux:8x7b-v1-q4_1", + "description": "A top-performing mixture of experts model, fine-tuned with high-quality data.", + "size": "29GB", + "digest": "09296d49ac57", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "notux:8x7b-v1-q4_K_M", + "name": "notux:8x7b-v1-q4_K_M", + "description": "A top-performing mixture of experts model, fine-tuned with high-quality data.", + "size": "26GB", + "digest": "3b16f6f4e58b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "notux:8x7b-v1-q4_K_S", + "name": "notux:8x7b-v1-q4_K_S", + "description": "A top-performing mixture of experts model, fine-tuned with high-quality data.", + "size": "26GB", + "digest": "abf66a2df688", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "notux:8x7b-v1-q5_0", + "name": "notux:8x7b-v1-q5_0", + "description": "A top-performing mixture of experts model, fine-tuned with high-quality data.", + "size": "32GB", + "digest": "ccd5d7aa8e35", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "notux:8x7b-v1-q5_1", + "name": "notux:8x7b-v1-q5_1", + "description": "A top-performing mixture of experts model, fine-tuned with high-quality data.", + "size": "35GB", + "digest": "f5d5ac5b61ef", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "notux:8x7b-v1-q5_K_M", + "name": "notux:8x7b-v1-q5_K_M", + "description": "A top-performing mixture of experts model, fine-tuned with high-quality data.", + "size": "32GB", + "digest": "ec6abe6a6aa2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "notux:8x7b-v1-q5_K_S", + "name": "notux:8x7b-v1-q5_K_S", + "description": "A top-performing mixture of experts model, fine-tuned with high-quality data.", + "size": "32GB", + "digest": "acae292badb5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "notux:8x7b-v1-q6_K", + "name": "notux:8x7b-v1-q6_K", + "description": "A top-performing mixture of experts model, fine-tuned with high-quality data.", + "size": "38GB", + "digest": "ecaacfc45d90", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "notux:8x7b-v1-q8_0", + "name": "notux:8x7b-v1-q8_0", + "description": "A top-performing mixture of experts model, fine-tuned with high-quality data.", + "size": "50GB", + "digest": "03152c4371e4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "open-orca-platypus2", + "name": "open-orca-platypus2", + "description": "Merge of the Open Orca OpenChat model and the Garage-bAInd Platypus 2 model. Designed for chat and code generation.", + "size": "7.4GB", + "digest": "6f0b7ebe895b", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "open-orca-platypus2:13b", + "name": "open-orca-platypus2:13b", + "description": "Merge of the Open Orca OpenChat model and the Garage-bAInd Platypus 2 model. Designed for chat and code generation.", + "size": "7.4GB", + "digest": "6f0b7ebe895b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "open-orca-platypus2:13b-fp16", + "name": "open-orca-platypus2:13b-fp16", + "description": "Merge of the Open Orca OpenChat model and the Garage-bAInd Platypus 2 model. Designed for chat and code generation.", + "size": "26GB", + "digest": "950e73357fe8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "open-orca-platypus2:13b-q2_K", + "name": "open-orca-platypus2:13b-q2_K", + "description": "Merge of the Open Orca OpenChat model and the Garage-bAInd Platypus 2 model. Designed for chat and code generation.", + "size": "5.4GB", + "digest": "945f02ef0947", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "open-orca-platypus2:13b-q3_K_L", + "name": "open-orca-platypus2:13b-q3_K_L", + "description": "Merge of the Open Orca OpenChat model and the Garage-bAInd Platypus 2 model. Designed for chat and code generation.", + "size": "6.9GB", + "digest": "7acb4af27933", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "open-orca-platypus2:13b-q3_K_M", + "name": "open-orca-platypus2:13b-q3_K_M", + "description": "Merge of the Open Orca OpenChat model and the Garage-bAInd Platypus 2 model. Designed for chat and code generation.", + "size": "6.3GB", + "digest": "be5b790d30b0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "open-orca-platypus2:13b-q3_K_S", + "name": "open-orca-platypus2:13b-q3_K_S", + "description": "Merge of the Open Orca OpenChat model and the Garage-bAInd Platypus 2 model. Designed for chat and code generation.", + "size": "5.7GB", + "digest": "0c91c25a94c2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "open-orca-platypus2:13b-q4_0", + "name": "open-orca-platypus2:13b-q4_0", + "description": "Merge of the Open Orca OpenChat model and the Garage-bAInd Platypus 2 model. Designed for chat and code generation.", + "size": "7.4GB", + "digest": "6f0b7ebe895b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "open-orca-platypus2:13b-q4_1", + "name": "open-orca-platypus2:13b-q4_1", + "description": "Merge of the Open Orca OpenChat model and the Garage-bAInd Platypus 2 model. Designed for chat and code generation.", + "size": "8.2GB", + "digest": "387d1045d74c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "open-orca-platypus2:13b-q4_K_M", + "name": "open-orca-platypus2:13b-q4_K_M", + "description": "Merge of the Open Orca OpenChat model and the Garage-bAInd Platypus 2 model. Designed for chat and code generation.", + "size": "7.9GB", + "digest": "54a672fea3c8", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "open-orca-platypus2:13b-q4_K_S", + "name": "open-orca-platypus2:13b-q4_K_S", + "description": "Merge of the Open Orca OpenChat model and the Garage-bAInd Platypus 2 model. Designed for chat and code generation.", + "size": "7.4GB", + "digest": "f4de4beb0df0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "open-orca-platypus2:13b-q5_0", + "name": "open-orca-platypus2:13b-q5_0", + "description": "Merge of the Open Orca OpenChat model and the Garage-bAInd Platypus 2 model. Designed for chat and code generation.", + "size": "9.0GB", + "digest": "023eaa0bbf81", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "open-orca-platypus2:13b-q5_1", + "name": "open-orca-platypus2:13b-q5_1", + "description": "Merge of the Open Orca OpenChat model and the Garage-bAInd Platypus 2 model. Designed for chat and code generation.", + "size": "9.8GB", + "digest": "a94fe59f659f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "open-orca-platypus2:13b-q5_K_M", + "name": "open-orca-platypus2:13b-q5_K_M", + "description": "Merge of the Open Orca OpenChat model and the Garage-bAInd Platypus 2 model. Designed for chat and code generation.", + "size": "9.2GB", + "digest": "a647dbf9ef57", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "open-orca-platypus2:13b-q5_K_S", + "name": "open-orca-platypus2:13b-q5_K_S", + "description": "Merge of the Open Orca OpenChat model and the Garage-bAInd Platypus 2 model. Designed for chat and code generation.", + "size": "9.0GB", + "digest": "c438f94f7300", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "open-orca-platypus2:13b-q6_K", + "name": "open-orca-platypus2:13b-q6_K", + "description": "Merge of the Open Orca OpenChat model and the Garage-bAInd Platypus 2 model. Designed for chat and code generation.", + "size": "11GB", + "digest": "ebc8fa531884", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "open-orca-platypus2:13b-q8_0", + "name": "open-orca-platypus2:13b-q8_0", + "description": "Merge of the Open Orca OpenChat model and the Garage-bAInd Platypus 2 model. Designed for chat and code generation.", + "size": "14GB", + "digest": "932ede153548", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-moe", + "name": "granite3.1-moe", + "description": "The IBM Granite 1B and 3B models are long-context mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "2.0GB", + "digest": "b43d80d7fca7", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "granite3.1-moe:1b", + "name": "granite3.1-moe:1b", + "description": "The IBM Granite 1B and 3B models are long-context mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "1.4GB", + "digest": "3269ce3e31ea", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-moe:3b", + "name": "granite3.1-moe:3b", + "description": "The IBM Granite 1B and 3B models are long-context mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "2.0GB", + "digest": "b43d80d7fca7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-moe:1b-instruct-fp16", + "name": "granite3.1-moe:1b-instruct-fp16", + "description": "The IBM Granite 1B and 3B models are long-context mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "2.7GB", + "digest": "99904f51aa5c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-moe:1b-instruct-q2_K", + "name": "granite3.1-moe:1b-instruct-q2_K", + "description": "The IBM Granite 1B and 3B models are long-context mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "524MB", + "digest": "6521a8fa2f7d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-moe:1b-instruct-q3_K_L", + "name": "granite3.1-moe:1b-instruct-q3_K_L", + "description": "The IBM Granite 1B and 3B models are long-context mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "724MB", + "digest": "38e819bae7cb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-moe:1b-instruct-q3_K_M", + "name": "granite3.1-moe:1b-instruct-q3_K_M", + "description": "The IBM Granite 1B and 3B models are long-context mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "671MB", + "digest": "a9921af691fb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-moe:1b-instruct-q3_K_S", + "name": "granite3.1-moe:1b-instruct-q3_K_S", + "description": "The IBM Granite 1B and 3B models are long-context mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "610MB", + "digest": "c81277fe1196", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-moe:1b-instruct-q4_0", + "name": "granite3.1-moe:1b-instruct-q4_0", + "description": "The IBM Granite 1B and 3B models are long-context mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "781MB", + "digest": "f1e180ae50b0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-moe:1b-instruct-q4_1", + "name": "granite3.1-moe:1b-instruct-q4_1", + "description": "The IBM Granite 1B and 3B models are long-context mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "861MB", + "digest": "d62c69d05bc9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-moe:1b-instruct-q4_K_M", + "name": "granite3.1-moe:1b-instruct-q4_K_M", + "description": "The IBM Granite 1B and 3B models are long-context mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "834MB", + "digest": "f825ee9e296f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-moe:1b-instruct-q4_K_S", + "name": "granite3.1-moe:1b-instruct-q4_K_S", + "description": "The IBM Granite 1B and 3B models are long-context mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "787MB", + "digest": "531849afb99e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-moe:1b-instruct-q5_0", + "name": "granite3.1-moe:1b-instruct-q5_0", + "description": "The IBM Granite 1B and 3B models are long-context mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "941MB", + "digest": "3d8012283ac9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-moe:1b-instruct-q5_1", + "name": "granite3.1-moe:1b-instruct-q5_1", + "description": "The IBM Granite 1B and 3B models are long-context mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "1.0GB", + "digest": "39b91d40cf9e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-moe:1b-instruct-q5_K_M", + "name": "granite3.1-moe:1b-instruct-q5_K_M", + "description": "The IBM Granite 1B and 3B models are long-context mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "969MB", + "digest": "6c0ad5f8dbc5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-moe:1b-instruct-q5_K_S", + "name": "granite3.1-moe:1b-instruct-q5_K_S", + "description": "The IBM Granite 1B and 3B models are long-context mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "941MB", + "digest": "fcc3d042cf51", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-moe:1b-instruct-q6_K", + "name": "granite3.1-moe:1b-instruct-q6_K", + "description": "The IBM Granite 1B and 3B models are long-context mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "1.1GB", + "digest": "72cde855354e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-moe:1b-instruct-q8_0", + "name": "granite3.1-moe:1b-instruct-q8_0", + "description": "The IBM Granite 1B and 3B models are long-context mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "1.4GB", + "digest": "3269ce3e31ea", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-moe:3b-instruct-fp16", + "name": "granite3.1-moe:3b-instruct-fp16", + "description": "The IBM Granite 1B and 3B models are long-context mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "6.6GB", + "digest": "cdedb7e7b102", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-moe:3b-instruct-q2_K", + "name": "granite3.1-moe:3b-instruct-q2_K", + "description": "The IBM Granite 1B and 3B models are long-context mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "1.3GB", + "digest": "7ea974a9d11f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-moe:3b-instruct-q3_K_L", + "name": "granite3.1-moe:3b-instruct-q3_K_L", + "description": "The IBM Granite 1B and 3B models are long-context mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "1.8GB", + "digest": "712573071d24", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-moe:3b-instruct-q3_K_M", + "name": "granite3.1-moe:3b-instruct-q3_K_M", + "description": "The IBM Granite 1B and 3B models are long-context mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "1.6GB", + "digest": "216dcd8f0222", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-moe:3b-instruct-q3_K_S", + "name": "granite3.1-moe:3b-instruct-q3_K_S", + "description": "The IBM Granite 1B and 3B models are long-context mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "1.5GB", + "digest": "86de476c2ed2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-moe:3b-instruct-q4_0", + "name": "granite3.1-moe:3b-instruct-q4_0", + "description": "The IBM Granite 1B and 3B models are long-context mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "1.9GB", + "digest": "575c94ea9f74", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-moe:3b-instruct-q4_1", + "name": "granite3.1-moe:3b-instruct-q4_1", + "description": "The IBM Granite 1B and 3B models are long-context mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "2.1GB", + "digest": "a4c8618969bb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-moe:3b-instruct-q4_K_M", + "name": "granite3.1-moe:3b-instruct-q4_K_M", + "description": "The IBM Granite 1B and 3B models are long-context mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "2.0GB", + "digest": "b43d80d7fca7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-moe:3b-instruct-q4_K_S", + "name": "granite3.1-moe:3b-instruct-q4_K_S", + "description": "The IBM Granite 1B and 3B models are long-context mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "1.9GB", + "digest": "71da5b32c299", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-moe:3b-instruct-q5_0", + "name": "granite3.1-moe:3b-instruct-q5_0", + "description": "The IBM Granite 1B and 3B models are long-context mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "2.3GB", + "digest": "ac1c3501f148", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-moe:3b-instruct-q5_1", + "name": "granite3.1-moe:3b-instruct-q5_1", + "description": "The IBM Granite 1B and 3B models are long-context mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "2.5GB", + "digest": "14ba2faee6e3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-moe:3b-instruct-q5_K_M", + "name": "granite3.1-moe:3b-instruct-q5_K_M", + "description": "The IBM Granite 1B and 3B models are long-context mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "2.4GB", + "digest": "fac03e34e804", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-moe:3b-instruct-q5_K_S", + "name": "granite3.1-moe:3b-instruct-q5_K_S", + "description": "The IBM Granite 1B and 3B models are long-context mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "2.3GB", + "digest": "ec25600ae9c5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-moe:3b-instruct-q6_K", + "name": "granite3.1-moe:3b-instruct-q6_K", + "description": "The IBM Granite 1B and 3B models are long-context mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "2.7GB", + "digest": "b49c14c5cac4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3.1-moe:3b-instruct-q8_0", + "name": "granite3.1-moe:3b-instruct-q8_0", + "description": "The IBM Granite 1B and 3B models are long-context mixture of experts (MoE) Granite models from IBM designed for low latency usage.", + "size": "3.5GB", + "digest": "038f46903bbd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-guard3", + "name": "llama-guard3", + "description": "Llama Guard 3 is a series of models fine-tuned for content safety classification of LLM inputs and responses.", + "size": "4.9GB", + "digest": "46f211c3d866", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "llama-guard3:1b", + "name": "llama-guard3:1b", + "description": "Llama Guard 3 is a series of models fine-tuned for content safety classification of LLM inputs and responses.", + "size": "1.6GB", + "digest": "494147e06bf9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-guard3:8b", + "name": "llama-guard3:8b", + "description": "Llama Guard 3 is a series of models fine-tuned for content safety classification of LLM inputs and responses.", + "size": "4.9GB", + "digest": "46f211c3d866", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-guard3:1b-fp16", + "name": "llama-guard3:1b-fp16", + "description": "Llama Guard 3 is a series of models fine-tuned for content safety classification of LLM inputs and responses.", + "size": "3.0GB", + "digest": "d72f84e54012", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-guard3:1b-q2_K", + "name": "llama-guard3:1b-q2_K", + "description": "Llama Guard 3 is a series of models fine-tuned for content safety classification of LLM inputs and responses.", + "size": "667MB", + "digest": "4f4a8f765204", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-guard3:1b-q3_K_L", + "name": "llama-guard3:1b-q3_K_L", + "description": "Llama Guard 3 is a series of models fine-tuned for content safety classification of LLM inputs and responses.", + "size": "845MB", + "digest": "56573dbb7522", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-guard3:1b-q3_K_M", + "name": "llama-guard3:1b-q3_K_M", + "description": "Llama Guard 3 is a series of models fine-tuned for content safety classification of LLM inputs and responses.", + "size": "804MB", + "digest": "b78caaa936b2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-guard3:1b-q3_K_S", + "name": "llama-guard3:1b-q3_K_S", + "description": "Llama Guard 3 is a series of models fine-tuned for content safety classification of LLM inputs and responses.", + "size": "755MB", + "digest": "ba60616a0c42", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-guard3:1b-q4_0", + "name": "llama-guard3:1b-q4_0", + "description": "Llama Guard 3 is a series of models fine-tuned for content safety classification of LLM inputs and responses.", + "size": "919MB", + "digest": "9ef1b1d8bcf1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-guard3:1b-q4_1", + "name": "llama-guard3:1b-q4_1", + "description": "Llama Guard 3 is a series of models fine-tuned for content safety classification of LLM inputs and responses.", + "size": "996MB", + "digest": "472f17649b81", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-guard3:1b-q4_K_M", + "name": "llama-guard3:1b-q4_K_M", + "description": "Llama Guard 3 is a series of models fine-tuned for content safety classification of LLM inputs and responses.", + "size": "955MB", + "digest": "f00008beff55", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-guard3:1b-q4_K_S", + "name": "llama-guard3:1b-q4_K_S", + "description": "Llama Guard 3 is a series of models fine-tuned for content safety classification of LLM inputs and responses.", + "size": "923MB", + "digest": "c704818a1eb7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-guard3:1b-q5_0", + "name": "llama-guard3:1b-q5_0", + "description": "Llama Guard 3 is a series of models fine-tuned for content safety classification of LLM inputs and responses.", + "size": "1.1GB", + "digest": "addf16c29474", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-guard3:1b-q5_1", + "name": "llama-guard3:1b-q5_1", + "description": "Llama Guard 3 is a series of models fine-tuned for content safety classification of LLM inputs and responses.", + "size": "1.2GB", + "digest": "b50f55fc799b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-guard3:1b-q5_K_M", + "name": "llama-guard3:1b-q5_K_M", + "description": "Llama Guard 3 is a series of models fine-tuned for content safety classification of LLM inputs and responses.", + "size": "1.1GB", + "digest": "ce0d5502e1e3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-guard3:1b-q5_K_S", + "name": "llama-guard3:1b-q5_K_S", + "description": "Llama Guard 3 is a series of models fine-tuned for content safety classification of LLM inputs and responses.", + "size": "1.1GB", + "digest": "0d2095859cf0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-guard3:1b-q6_K", + "name": "llama-guard3:1b-q6_K", + "description": "Llama Guard 3 is a series of models fine-tuned for content safety classification of LLM inputs and responses.", + "size": "1.2GB", + "digest": "fa99080590a2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-guard3:1b-q8_0", + "name": "llama-guard3:1b-q8_0", + "description": "Llama Guard 3 is a series of models fine-tuned for content safety classification of LLM inputs and responses.", + "size": "1.6GB", + "digest": "494147e06bf9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-guard3:8b-fp16", + "name": "llama-guard3:8b-fp16", + "description": "Llama Guard 3 is a series of models fine-tuned for content safety classification of LLM inputs and responses.", + "size": "16GB", + "digest": "6945df9ed1fe", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-guard3:8b-q2_K", + "name": "llama-guard3:8b-q2_K", + "description": "Llama Guard 3 is a series of models fine-tuned for content safety classification of LLM inputs and responses.", + "size": "3.2GB", + "digest": "48bd36a8a40c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-guard3:8b-q3_K_L", + "name": "llama-guard3:8b-q3_K_L", + "description": "Llama Guard 3 is a series of models fine-tuned for content safety classification of LLM inputs and responses.", + "size": "4.3GB", + "digest": "bea5c2385dc2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-guard3:8b-q3_K_M", + "name": "llama-guard3:8b-q3_K_M", + "description": "Llama Guard 3 is a series of models fine-tuned for content safety classification of LLM inputs and responses.", + "size": "4.0GB", + "digest": "0043e6c0f561", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-guard3:8b-q3_K_S", + "name": "llama-guard3:8b-q3_K_S", + "description": "Llama Guard 3 is a series of models fine-tuned for content safety classification of LLM inputs and responses.", + "size": "3.7GB", + "digest": "d1fa14fbd1a6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-guard3:8b-q4_0", + "name": "llama-guard3:8b-q4_0", + "description": "Llama Guard 3 is a series of models fine-tuned for content safety classification of LLM inputs and responses.", + "size": "4.7GB", + "digest": "d8d7fb8dfa56", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-guard3:8b-q4_1", + "name": "llama-guard3:8b-q4_1", + "description": "Llama Guard 3 is a series of models fine-tuned for content safety classification of LLM inputs and responses.", + "size": "5.1GB", + "digest": "dbdbb468940f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-guard3:8b-q4_K_M", + "name": "llama-guard3:8b-q4_K_M", + "description": "Llama Guard 3 is a series of models fine-tuned for content safety classification of LLM inputs and responses.", + "size": "4.9GB", + "digest": "46f211c3d866", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-guard3:8b-q4_K_S", + "name": "llama-guard3:8b-q4_K_S", + "description": "Llama Guard 3 is a series of models fine-tuned for content safety classification of LLM inputs and responses.", + "size": "4.7GB", + "digest": "7e8d75f07310", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-guard3:8b-q5_0", + "name": "llama-guard3:8b-q5_0", + "description": "Llama Guard 3 is a series of models fine-tuned for content safety classification of LLM inputs and responses.", + "size": "5.6GB", + "digest": "d3622397e2ce", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-guard3:8b-q5_1", + "name": "llama-guard3:8b-q5_1", + "description": "Llama Guard 3 is a series of models fine-tuned for content safety classification of LLM inputs and responses.", + "size": "6.1GB", + "digest": "f32c583fc2dd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-guard3:8b-q5_K_M", + "name": "llama-guard3:8b-q5_K_M", + "description": "Llama Guard 3 is a series of models fine-tuned for content safety classification of LLM inputs and responses.", + "size": "5.7GB", + "digest": "38e0f1d13795", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-guard3:8b-q5_K_S", + "name": "llama-guard3:8b-q5_K_S", + "description": "Llama Guard 3 is a series of models fine-tuned for content safety classification of LLM inputs and responses.", + "size": "5.6GB", + "digest": "adfedf090c4a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-guard3:8b-q6_K", + "name": "llama-guard3:8b-q6_K", + "description": "Llama Guard 3 is a series of models fine-tuned for content safety classification of LLM inputs and responses.", + "size": "6.6GB", + "digest": "ca512b2c0abf", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "llama-guard3:8b-q8_0", + "name": "llama-guard3:8b-q8_0", + "description": "Llama Guard 3 is a series of models fine-tuned for content safety classification of LLM inputs and responses.", + "size": "8.5GB", + "digest": "5cc118047fb2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "notus", + "name": "notus", + "description": "A 7B chat model fine-tuned with high-quality data and based on Zephyr.", + "size": "4.1GB", + "digest": "43c512e16786", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "notus:7b", + "name": "notus:7b", + "description": "A 7B chat model fine-tuned with high-quality data and based on Zephyr.", + "size": "4.1GB", + "digest": "43c512e16786", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "notus:7b-v1", + "name": "notus:7b-v1", + "description": "A 7B chat model fine-tuned with high-quality data and based on Zephyr.", + "size": "4.1GB", + "digest": "43c512e16786", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "notus:7b-v1-fp16", + "name": "notus:7b-v1-fp16", + "description": "A 7B chat model fine-tuned with high-quality data and based on Zephyr.", + "size": "14GB", + "digest": "2da08fbc17f3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "notus:7b-v1-q2_K", + "name": "notus:7b-v1-q2_K", + "description": "A 7B chat model fine-tuned with high-quality data and based on Zephyr.", + "size": "3.1GB", + "digest": "577ecb9ceace", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "notus:7b-v1-q3_K_L", + "name": "notus:7b-v1-q3_K_L", + "description": "A 7B chat model fine-tuned with high-quality data and based on Zephyr.", + "size": "3.8GB", + "digest": "fba4029e7992", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "notus:7b-v1-q3_K_M", + "name": "notus:7b-v1-q3_K_M", + "description": "A 7B chat model fine-tuned with high-quality data and based on Zephyr.", + "size": "3.5GB", + "digest": "3293885c4fdb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "notus:7b-v1-q3_K_S", + "name": "notus:7b-v1-q3_K_S", + "description": "A 7B chat model fine-tuned with high-quality data and based on Zephyr.", + "size": "3.2GB", + "digest": "86c3a67a139d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "notus:7b-v1-q4_0", + "name": "notus:7b-v1-q4_0", + "description": "A 7B chat model fine-tuned with high-quality data and based on Zephyr.", + "size": "4.1GB", + "digest": "43c512e16786", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "notus:7b-v1-q4_1", + "name": "notus:7b-v1-q4_1", + "description": "A 7B chat model fine-tuned with high-quality data and based on Zephyr.", + "size": "4.6GB", + "digest": "38a71126d0df", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "notus:7b-v1-q4_K_M", + "name": "notus:7b-v1-q4_K_M", + "description": "A 7B chat model fine-tuned with high-quality data and based on Zephyr.", + "size": "4.4GB", + "digest": "444648af6d37", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "notus:7b-v1-q4_K_S", + "name": "notus:7b-v1-q4_K_S", + "description": "A 7B chat model fine-tuned with high-quality data and based on Zephyr.", + "size": "4.1GB", + "digest": "3321b0e7eb01", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "notus:7b-v1-q5_0", + "name": "notus:7b-v1-q5_0", + "description": "A 7B chat model fine-tuned with high-quality data and based on Zephyr.", + "size": "5.0GB", + "digest": "1b3a120c0ee4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "notus:7b-v1-q5_1", + "name": "notus:7b-v1-q5_1", + "description": "A 7B chat model fine-tuned with high-quality data and based on Zephyr.", + "size": "5.4GB", + "digest": "a1a23c0638d0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "notus:7b-v1-q5_K_M", + "name": "notus:7b-v1-q5_K_M", + "description": "A 7B chat model fine-tuned with high-quality data and based on Zephyr.", + "size": "5.1GB", + "digest": "07fe7b1736b9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "notus:7b-v1-q5_K_S", + "name": "notus:7b-v1-q5_K_S", + "description": "A 7B chat model fine-tuned with high-quality data and based on Zephyr.", + "size": "5.0GB", + "digest": "00bb14ed7fca", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "notus:7b-v1-q6_K", + "name": "notus:7b-v1-q6_K", + "description": "A 7B chat model fine-tuned with high-quality data and based on Zephyr.", + "size": "5.9GB", + "digest": "f55d593525c3", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "notus:7b-v1-q8_0", + "name": "notus:7b-v1-q8_0", + "description": "A 7B chat model fine-tuned with high-quality data and based on Zephyr.", + "size": "7.7GB", + "digest": "4f664c6f7b54", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "goliath", + "name": "goliath", + "description": "A language model created by combining two fine-tuned Llama 2 70B models into one.", + "size": "66GB", + "digest": "61088afdc9fd", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "goliath:120b-fp16", + "name": "goliath:120b-fp16", + "description": "A language model created by combining two fine-tuned Llama 2 70B models into one.", + "size": "236GB", + "digest": "f228bd4ec83c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "goliath:120b-q2_K", + "name": "goliath:120b-q2_K", + "description": "A language model created by combining two fine-tuned Llama 2 70B models into one.", + "size": "50GB", + "digest": "1ffc35257417", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "goliath:120b-q3_K_L", + "name": "goliath:120b-q3_K_L", + "description": "A language model created by combining two fine-tuned Llama 2 70B models into one.", + "size": "62GB", + "digest": "6921e27086ee", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "goliath:120b-q3_K_M", + "name": "goliath:120b-q3_K_M", + "description": "A language model created by combining two fine-tuned Llama 2 70B models into one.", + "size": "56GB", + "digest": "3c4e3910d80b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "goliath:120b-q3_K_S", + "name": "goliath:120b-q3_K_S", + "description": "A language model created by combining two fine-tuned Llama 2 70B models into one.", + "size": "51GB", + "digest": "9736546f52bd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "goliath:120b-q4_0", + "name": "goliath:120b-q4_0", + "description": "A language model created by combining two fine-tuned Llama 2 70B models into one.", + "size": "66GB", + "digest": "61088afdc9fd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "goliath:120b-q4_1", + "name": "goliath:120b-q4_1", + "description": "A language model created by combining two fine-tuned Llama 2 70B models into one.", + "size": "74GB", + "digest": "3a37bd33b099", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "goliath:120b-q4_K_M", + "name": "goliath:120b-q4_K_M", + "description": "A language model created by combining two fine-tuned Llama 2 70B models into one.", + "size": "71GB", + "digest": "de4de972c743", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "goliath:120b-q4_K_S", + "name": "goliath:120b-q4_K_S", + "description": "A language model created by combining two fine-tuned Llama 2 70B models into one.", + "size": "66GB", + "digest": "e81666e3d986", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "goliath:120b-q5_0", + "name": "goliath:120b-q5_0", + "description": "A language model created by combining two fine-tuned Llama 2 70B models into one.", + "size": "81GB", + "digest": "f4693101aaa7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "goliath:120b-q5_1", + "name": "goliath:120b-q5_1", + "description": "A language model created by combining two fine-tuned Llama 2 70B models into one.", + "size": "88GB", + "digest": "94164c791a40", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "goliath:120b-q5_K_M", + "name": "goliath:120b-q5_K_M", + "description": "A language model created by combining two fine-tuned Llama 2 70B models into one.", + "size": "83GB", + "digest": "4a1e8f98f51e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "goliath:120b-q5_K_S", + "name": "goliath:120b-q5_K_S", + "description": "A language model created by combining two fine-tuned Llama 2 70B models into one.", + "size": "81GB", + "digest": "17f4b6a1dc09", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "goliath:120b-q6_K", + "name": "goliath:120b-q6_K", + "description": "A language model created by combining two fine-tuned Llama 2 70B models into one.", + "size": "97GB", + "digest": "86fd8d4f456f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "goliath:120b-q8_0", + "name": "goliath:120b-q8_0", + "description": "A language model created by combining two fine-tuned Llama 2 70B models into one.", + "size": "125GB", + "digest": "cb41bc287b73", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "paraphrase-multilingual", + "name": "paraphrase-multilingual", + "description": "Sentence-transformers model that can be used for tasks like clustering or semantic search.", + "size": "563MB", + "digest": "ba13c2e06707", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "paraphrase-multilingual:278m", + "name": "paraphrase-multilingual:278m", + "description": "Sentence-transformers model that can be used for tasks like clustering or semantic search.", + "size": "563MB", + "digest": "ba13c2e06707", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "paraphrase-multilingual:278m-mpnet-base-v2-fp16", + "name": "paraphrase-multilingual:278m-mpnet-base-v2-fp16", + "description": "Sentence-transformers model that can be used for tasks like clustering or semantic search.", + "size": "563MB", + "digest": "ba13c2e06707", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "opencoder", + "name": "opencoder", + "description": "OpenCoder is an open and reproducible code LLM family which includes 1.5B and 8B models, supporting chat in English and Chinese languages.", + "size": "4.7GB", + "digest": "cd882db52297", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "opencoder:1.5b", + "name": "opencoder:1.5b", + "description": "OpenCoder is an open and reproducible code LLM family which includes 1.5B and 8B models, supporting chat in English and Chinese languages.", + "size": "1.4GB", + "digest": "8573dfc23c16", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "opencoder:8b", + "name": "opencoder:8b", + "description": "OpenCoder is an open and reproducible code LLM family which includes 1.5B and 8B models, supporting chat in English and Chinese languages.", + "size": "4.7GB", + "digest": "cd882db52297", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "opencoder:1.5b-instruct-fp16", + "name": "opencoder:1.5b-instruct-fp16", + "description": "OpenCoder is an open and reproducible code LLM family which includes 1.5B and 8B models, supporting chat in English and Chinese languages.", + "size": "3.8GB", + "digest": "466920be6f15", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "opencoder:1.5b-instruct-q4_K_M", + "name": "opencoder:1.5b-instruct-q4_K_M", + "description": "OpenCoder is an open and reproducible code LLM family which includes 1.5B and 8B models, supporting chat in English and Chinese languages.", + "size": "1.4GB", + "digest": "8573dfc23c16", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "opencoder:1.5b-instruct-q8_0", + "name": "opencoder:1.5b-instruct-q8_0", + "description": "OpenCoder is an open and reproducible code LLM family which includes 1.5B and 8B models, supporting chat in English and Chinese languages.", + "size": "2.0GB", + "digest": "8c1234514258", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "opencoder:8b-instruct-fp16", + "name": "opencoder:8b-instruct-fp16", + "description": "OpenCoder is an open and reproducible code LLM family which includes 1.5B and 8B models, supporting chat in English and Chinese languages.", + "size": "16GB", + "digest": "51ed11a37a94", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "opencoder:8b-instruct-q4_K_M", + "name": "opencoder:8b-instruct-q4_K_M", + "description": "OpenCoder is an open and reproducible code LLM family which includes 1.5B and 8B models, supporting chat in English and Chinese languages.", + "size": "4.7GB", + "digest": "cd882db52297", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "opencoder:8b-instruct-q8_0", + "name": "opencoder:8b-instruct-q8_0", + "description": "OpenCoder is an open and reproducible code LLM family which includes 1.5B and 8B models, supporting chat in English and Chinese languages.", + "size": "8.3GB", + "digest": "b43cccd5b8e1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "bespoke-minicheck", + "name": "bespoke-minicheck", + "description": "A state-of-the-art fact-checking model developed by Bespoke Labs.", + "size": "4.7GB", + "digest": "66607904c165", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "bespoke-minicheck:7b", + "name": "bespoke-minicheck:7b", + "description": "A state-of-the-art fact-checking model developed by Bespoke Labs.", + "size": "4.7GB", + "digest": "66607904c165", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "bespoke-minicheck:7b-fp16", + "name": "bespoke-minicheck:7b-fp16", + "description": "A state-of-the-art fact-checking model developed by Bespoke Labs.", + "size": "15GB", + "digest": "3fa94947d3bb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "bespoke-minicheck:7b-q2_K", + "name": "bespoke-minicheck:7b-q2_K", + "description": "A state-of-the-art fact-checking model developed by Bespoke Labs.", + "size": "3.0GB", + "digest": "98385f12a848", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "bespoke-minicheck:7b-q3_K_L", + "name": "bespoke-minicheck:7b-q3_K_L", + "description": "A state-of-the-art fact-checking model developed by Bespoke Labs.", + "size": "4.1GB", + "digest": "74690ad307cb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "bespoke-minicheck:7b-q3_K_M", + "name": "bespoke-minicheck:7b-q3_K_M", + "description": "A state-of-the-art fact-checking model developed by Bespoke Labs.", + "size": "3.8GB", + "digest": "560cfbea53dd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "bespoke-minicheck:7b-q3_K_S", + "name": "bespoke-minicheck:7b-q3_K_S", + "description": "A state-of-the-art fact-checking model developed by Bespoke Labs.", + "size": "3.5GB", + "digest": "a68a5fb19b12", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "bespoke-minicheck:7b-q4_0", + "name": "bespoke-minicheck:7b-q4_0", + "description": "A state-of-the-art fact-checking model developed by Bespoke Labs.", + "size": "4.5GB", + "digest": "7fc72b12130d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "bespoke-minicheck:7b-q4_1", + "name": "bespoke-minicheck:7b-q4_1", + "description": "A state-of-the-art fact-checking model developed by Bespoke Labs.", + "size": "4.9GB", + "digest": "c796eb693160", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "bespoke-minicheck:7b-q4_K_M", + "name": "bespoke-minicheck:7b-q4_K_M", + "description": "A state-of-the-art fact-checking model developed by Bespoke Labs.", + "size": "4.7GB", + "digest": "66607904c165", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "bespoke-minicheck:7b-q4_K_S", + "name": "bespoke-minicheck:7b-q4_K_S", + "description": "A state-of-the-art fact-checking model developed by Bespoke Labs.", + "size": "4.5GB", + "digest": "f0921a474a27", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "bespoke-minicheck:7b-q5_0", + "name": "bespoke-minicheck:7b-q5_0", + "description": "A state-of-the-art fact-checking model developed by Bespoke Labs.", + "size": "5.4GB", + "digest": "fb6f4f1a6545", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "bespoke-minicheck:7b-q5_1", + "name": "bespoke-minicheck:7b-q5_1", + "description": "A state-of-the-art fact-checking model developed by Bespoke Labs.", + "size": "5.8GB", + "digest": "5cb78318e18c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "bespoke-minicheck:7b-q5_K_M", + "name": "bespoke-minicheck:7b-q5_K_M", + "description": "A state-of-the-art fact-checking model developed by Bespoke Labs.", + "size": "5.5GB", + "digest": "d14295ca6cda", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "bespoke-minicheck:7b-q5_K_S", + "name": "bespoke-minicheck:7b-q5_K_S", + "description": "A state-of-the-art fact-checking model developed by Bespoke Labs.", + "size": "5.4GB", + "digest": "136d527fe4a4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "bespoke-minicheck:7b-q6_K", + "name": "bespoke-minicheck:7b-q6_K", + "description": "A state-of-the-art fact-checking model developed by Bespoke Labs.", + "size": "6.4GB", + "digest": "938ab53c88c7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "bespoke-minicheck:7b-q8_0", + "name": "bespoke-minicheck:7b-q8_0", + "description": "A state-of-the-art fact-checking model developed by Bespoke Labs.", + "size": "8.2GB", + "digest": "a7b1d189f707", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-v2.5", + "name": "deepseek-v2.5", + "description": "An upgraded version of DeekSeek-V2 that integrates the general and coding abilities of both DeepSeek-V2-Chat and DeepSeek-Coder-V2-Instruct.", + "size": "133GB", + "digest": "409b2dd8a3c4", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "deepseek-v2.5:236b", + "name": "deepseek-v2.5:236b", + "description": "An upgraded version of DeekSeek-V2 that integrates the general and coding abilities of both DeepSeek-V2-Chat and DeepSeek-Coder-V2-Instruct.", + "size": "133GB", + "digest": "409b2dd8a3c4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-v2.5:236b-q4_0", + "name": "deepseek-v2.5:236b-q4_0", + "description": "An upgraded version of DeekSeek-V2 that integrates the general and coding abilities of both DeepSeek-V2-Chat and DeepSeek-Coder-V2-Instruct.", + "size": "133GB", + "digest": "409b2dd8a3c4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-v2.5:236b-q4_1", + "name": "deepseek-v2.5:236b-q4_1", + "description": "An upgraded version of DeekSeek-V2 that integrates the general and coding abilities of both DeepSeek-V2-Chat and DeepSeek-Coder-V2-Instruct.", + "size": "148GB", + "digest": "b1618a20b8b5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-v2.5:236b-q5_0", + "name": "deepseek-v2.5:236b-q5_0", + "description": "An upgraded version of DeekSeek-V2 that integrates the general and coding abilities of both DeepSeek-V2-Chat and DeepSeek-Coder-V2-Instruct.", + "size": "162GB", + "digest": "9de079142600", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-v2.5:236b-q5_1", + "name": "deepseek-v2.5:236b-q5_1", + "description": "An upgraded version of DeekSeek-V2 that integrates the general and coding abilities of both DeepSeek-V2-Chat and DeepSeek-Coder-V2-Instruct.", + "size": "177GB", + "digest": "f774fdfffbea", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepseek-v2.5:236b-q8_0", + "name": "deepseek-v2.5:236b-q8_0", + "description": "An upgraded version of DeekSeek-V2 that integrates the general and coding abilities of both DeepSeek-V2-Chat and DeepSeek-Coder-V2-Instruct.", + "size": "251GB", + "digest": "481aed89b609", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "exaone3.5", + "name": "exaone3.5", + "description": "EXAONE 3.5 is a collection of instruction-tuned bilingual (English and Korean) generative models ranging from 2.4B to 32B parameters, developed and released by LG AI Research.", + "size": "4.8GB", + "digest": "c7c4e3d1ca22", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "exaone3.5:2.4b", + "name": "exaone3.5:2.4b", + "description": "EXAONE 3.5 is a collection of instruction-tuned bilingual (English and Korean) generative models ranging from 2.4B to 32B parameters, developed and released by LG AI Research.", + "size": "1.6GB", + "digest": "13644fc3d28e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "exaone3.5:7.8b", + "name": "exaone3.5:7.8b", + "description": "EXAONE 3.5 is a collection of instruction-tuned bilingual (English and Korean) generative models ranging from 2.4B to 32B parameters, developed and released by LG AI Research.", + "size": "4.8GB", + "digest": "c7c4e3d1ca22", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "exaone3.5:32b", + "name": "exaone3.5:32b", + "description": "EXAONE 3.5 is a collection of instruction-tuned bilingual (English and Korean) generative models ranging from 2.4B to 32B parameters, developed and released by LG AI Research.", + "size": "19GB", + "digest": "f2f69abac3da", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "exaone3.5:2.4b-instruct-fp16", + "name": "exaone3.5:2.4b-instruct-fp16", + "description": "EXAONE 3.5 is a collection of instruction-tuned bilingual (English and Korean) generative models ranging from 2.4B to 32B parameters, developed and released by LG AI Research.", + "size": "5.3GB", + "digest": "599ce5e8a3bb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "exaone3.5:2.4b-instruct-q4_K_M", + "name": "exaone3.5:2.4b-instruct-q4_K_M", + "description": "EXAONE 3.5 is a collection of instruction-tuned bilingual (English and Korean) generative models ranging from 2.4B to 32B parameters, developed and released by LG AI Research.", + "size": "1.6GB", + "digest": "13644fc3d28e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "exaone3.5:2.4b-instruct-q8_0", + "name": "exaone3.5:2.4b-instruct-q8_0", + "description": "EXAONE 3.5 is a collection of instruction-tuned bilingual (English and Korean) generative models ranging from 2.4B to 32B parameters, developed and released by LG AI Research.", + "size": "2.8GB", + "digest": "283184b139f7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "exaone3.5:32b-instruct-fp16", + "name": "exaone3.5:32b-instruct-fp16", + "description": "EXAONE 3.5 is a collection of instruction-tuned bilingual (English and Korean) generative models ranging from 2.4B to 32B parameters, developed and released by LG AI Research.", + "size": "64GB", + "digest": "323957e0b2cf", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "exaone3.5:32b-instruct-q4_K_M", + "name": "exaone3.5:32b-instruct-q4_K_M", + "description": "EXAONE 3.5 is a collection of instruction-tuned bilingual (English and Korean) generative models ranging from 2.4B to 32B parameters, developed and released by LG AI Research.", + "size": "19GB", + "digest": "f2f69abac3da", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "exaone3.5:32b-instruct-q8_0", + "name": "exaone3.5:32b-instruct-q8_0", + "description": "EXAONE 3.5 is a collection of instruction-tuned bilingual (English and Korean) generative models ranging from 2.4B to 32B parameters, developed and released by LG AI Research.", + "size": "34GB", + "digest": "aa9dadfef613", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "exaone3.5:7.8b-instruct-fp16", + "name": "exaone3.5:7.8b-instruct-fp16", + "description": "EXAONE 3.5 is a collection of instruction-tuned bilingual (English and Korean) generative models ranging from 2.4B to 32B parameters, developed and released by LG AI Research.", + "size": "16GB", + "digest": "5b3ebd118bcc", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "exaone3.5:7.8b-instruct-q4_K_M", + "name": "exaone3.5:7.8b-instruct-q4_K_M", + "description": "EXAONE 3.5 is a collection of instruction-tuned bilingual (English and Korean) generative models ranging from 2.4B to 32B parameters, developed and released by LG AI Research.", + "size": "4.8GB", + "digest": "c7c4e3d1ca22", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "exaone3.5:7.8b-instruct-q8_0", + "name": "exaone3.5:7.8b-instruct-q8_0", + "description": "EXAONE 3.5 is a collection of instruction-tuned bilingual (English and Korean) generative models ranging from 2.4B to 32B parameters, developed and released by LG AI Research.", + "size": "8.3GB", + "digest": "dc6fcd786b42", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "firefunction-v2", + "name": "firefunction-v2", + "description": "An open weights function calling model based on Llama 3, competitive with GPT-4o function calling capabilities.", + "size": "40GB", + "digest": "b1ed6b22fb67", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "firefunction-v2:70b", + "name": "firefunction-v2:70b", + "description": "An open weights function calling model based on Llama 3, competitive with GPT-4o function calling capabilities.", + "size": "40GB", + "digest": "b1ed6b22fb67", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "firefunction-v2:70b-fp16", + "name": "firefunction-v2:70b-fp16", + "description": "An open weights function calling model based on Llama 3, competitive with GPT-4o function calling capabilities.", + "size": "141GB", + "digest": "060676f6564d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "firefunction-v2:70b-q2_K", + "name": "firefunction-v2:70b-q2_K", + "description": "An open weights function calling model based on Llama 3, competitive with GPT-4o function calling capabilities.", + "size": "26GB", + "digest": "3f7fd585d60c", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "firefunction-v2:70b-q3_K_L", + "name": "firefunction-v2:70b-q3_K_L", + "description": "An open weights function calling model based on Llama 3, competitive with GPT-4o function calling capabilities.", + "size": "37GB", + "digest": "3e634098cae4", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "firefunction-v2:70b-q3_K_M", + "name": "firefunction-v2:70b-q3_K_M", + "description": "An open weights function calling model based on Llama 3, competitive with GPT-4o function calling capabilities.", + "size": "34GB", + "digest": "80e79abf27be", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "firefunction-v2:70b-q3_K_S", + "name": "firefunction-v2:70b-q3_K_S", + "description": "An open weights function calling model based on Llama 3, competitive with GPT-4o function calling capabilities.", + "size": "31GB", + "digest": "474005ee9e26", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "firefunction-v2:70b-q4_0", + "name": "firefunction-v2:70b-q4_0", + "description": "An open weights function calling model based on Llama 3, competitive with GPT-4o function calling capabilities.", + "size": "40GB", + "digest": "b1ed6b22fb67", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "firefunction-v2:70b-q4_1", + "name": "firefunction-v2:70b-q4_1", + "description": "An open weights function calling model based on Llama 3, competitive with GPT-4o function calling capabilities.", + "size": "44GB", + "digest": "15defaa47be1", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "firefunction-v2:70b-q4_K_M", + "name": "firefunction-v2:70b-q4_K_M", + "description": "An open weights function calling model based on Llama 3, competitive with GPT-4o function calling capabilities.", + "size": "43GB", + "digest": "ea3039802f87", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "firefunction-v2:70b-q4_K_S", + "name": "firefunction-v2:70b-q4_K_S", + "description": "An open weights function calling model based on Llama 3, competitive with GPT-4o function calling capabilities.", + "size": "40GB", + "digest": "3bcbd6acb54d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "firefunction-v2:70b-q5_0", + "name": "firefunction-v2:70b-q5_0", + "description": "An open weights function calling model based on Llama 3, competitive with GPT-4o function calling capabilities.", + "size": "49GB", + "digest": "13b58ce67970", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "firefunction-v2:70b-q5_1", + "name": "firefunction-v2:70b-q5_1", + "description": "An open weights function calling model based on Llama 3, competitive with GPT-4o function calling capabilities.", + "size": "53GB", + "digest": "669afb8bd416", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "firefunction-v2:70b-q5_K_M", + "name": "firefunction-v2:70b-q5_K_M", + "description": "An open weights function calling model based on Llama 3, competitive with GPT-4o function calling capabilities.", + "size": "50GB", + "digest": "e74b3ca1941f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "firefunction-v2:70b-q5_K_S", + "name": "firefunction-v2:70b-q5_K_S", + "description": "An open weights function calling model based on Llama 3, competitive with GPT-4o function calling capabilities.", + "size": "49GB", + "digest": "fd0487aef428", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "firefunction-v2:70b-q6_K", + "name": "firefunction-v2:70b-q6_K", + "description": "An open weights function calling model based on Llama 3, competitive with GPT-4o function calling capabilities.", + "size": "58GB", + "digest": "918017f6fcca", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "firefunction-v2:70b-q8_0", + "name": "firefunction-v2:70b-q8_0", + "description": "An open weights function calling model based on Llama 3, competitive with GPT-4o function calling capabilities.", + "size": "75GB", + "digest": "b260af5d90a5", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dbrx", + "name": "dbrx", + "description": "DBRX is an open, general-purpose LLM created by Databricks.", + "size": "74GB", + "digest": "36800d8d3a28", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "dbrx:132b", + "name": "dbrx:132b", + "description": "DBRX is an open, general-purpose LLM created by Databricks.", + "size": "74GB", + "digest": "36800d8d3a28", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dbrx:132b-instruct-fp16", + "name": "dbrx:132b-instruct-fp16", + "description": "DBRX is an open, general-purpose LLM created by Databricks.", + "size": "263GB", + "digest": "2bacc27fc29a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dbrx:132b-instruct-q2_K", + "name": "dbrx:132b-instruct-q2_K", + "description": "DBRX is an open, general-purpose LLM created by Databricks.", + "size": "48GB", + "digest": "e2554a95cc76", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dbrx:132b-instruct-q4_0", + "name": "dbrx:132b-instruct-q4_0", + "description": "DBRX is an open, general-purpose LLM created by Databricks.", + "size": "74GB", + "digest": "36800d8d3a28", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dbrx:132b-instruct-q8_0", + "name": "dbrx:132b-instruct-q8_0", + "description": "DBRX is an open, general-purpose LLM created by Databricks.", + "size": "140GB", + "digest": "4fca83b20ba0", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "dbrx:instruct", + "name": "dbrx:instruct", + "description": "DBRX is an open, general-purpose LLM created by Databricks.", + "size": "74GB", + "digest": "36800d8d3a28", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "command-r7b", + "name": "command-r7b", + "description": "The smallest model in Cohere's R series delivers top-tier speed, efficiency, and quality to build powerful AI applications on commodity GPUs and edge devices.", + "size": "5.1GB", + "digest": "ff4e9696ef9f", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "command-r7b:7b", + "name": "command-r7b:7b", + "description": "The smallest model in Cohere's R series delivers top-tier speed, efficiency, and quality to build powerful AI applications on commodity GPUs and edge devices.", + "size": "5.1GB", + "digest": "ff4e9696ef9f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "command-r7b:7b-12-2024-fp16", + "name": "command-r7b:7b-12-2024-fp16", + "description": "The smallest model in Cohere's R series delivers top-tier speed, efficiency, and quality to build powerful AI applications on commodity GPUs and edge devices.", + "size": "16GB", + "digest": "3a3e860e0901", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "command-r7b:7b-12-2024-q4_K_M", + "name": "command-r7b:7b-12-2024-q4_K_M", + "description": "The smallest model in Cohere's R series delivers top-tier speed, efficiency, and quality to build powerful AI applications on commodity GPUs and edge devices.", + "size": "5.1GB", + "digest": "ff4e9696ef9f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "command-r7b:7b-12-2024-q8_0", + "name": "command-r7b:7b-12-2024-q8_0", + "description": "The smallest model in Cohere's R series delivers top-tier speed, efficiency, and quality to build powerful AI applications on commodity GPUs and edge devices.", + "size": "8.5GB", + "digest": "aa0fb3e0b28b", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tulu3", + "name": "tulu3", + "description": "Tülu 3 is a leading instruction following model family, offering fully open-source data, code, and recipes by the The Allen Institute for AI.", + "size": "4.9GB", + "digest": "7119be59a531", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "tulu3:8b", + "name": "tulu3:8b", + "description": "Tülu 3 is a leading instruction following model family, offering fully open-source data, code, and recipes by the The Allen Institute for AI.", + "size": "4.9GB", + "digest": "7119be59a531", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tulu3:70b", + "name": "tulu3:70b", + "description": "Tülu 3 is a leading instruction following model family, offering fully open-source data, code, and recipes by the The Allen Institute for AI.", + "size": "43GB", + "digest": "fa6de45f539f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tulu3:70b-fp16", + "name": "tulu3:70b-fp16", + "description": "Tülu 3 is a leading instruction following model family, offering fully open-source data, code, and recipes by the The Allen Institute for AI.", + "size": "141GB", + "digest": "662b84aaedbb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tulu3:70b-q4_K_M", + "name": "tulu3:70b-q4_K_M", + "description": "Tülu 3 is a leading instruction following model family, offering fully open-source data, code, and recipes by the The Allen Institute for AI.", + "size": "43GB", + "digest": "fa6de45f539f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tulu3:70b-q8_0", + "name": "tulu3:70b-q8_0", + "description": "Tülu 3 is a leading instruction following model family, offering fully open-source data, code, and recipes by the The Allen Institute for AI.", + "size": "75GB", + "digest": "f0f50dadc000", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tulu3:8b-fp16", + "name": "tulu3:8b-fp16", + "description": "Tülu 3 is a leading instruction following model family, offering fully open-source data, code, and recipes by the The Allen Institute for AI.", + "size": "16GB", + "digest": "67f115a19953", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tulu3:8b-q4_K_M", + "name": "tulu3:8b-q4_K_M", + "description": "Tülu 3 is a leading instruction following model family, offering fully open-source data, code, and recipes by the The Allen Institute for AI.", + "size": "4.9GB", + "digest": "7119be59a531", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "tulu3:8b-q8_0", + "name": "tulu3:8b-q8_0", + "description": "Tülu 3 is a leading instruction following model family, offering fully open-source data, code, and recipes by the The Allen Institute for AI.", + "size": "8.5GB", + "digest": "ee4b41854819", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "alfred", + "name": "alfred", + "description": "A robust conversational model designed to be used for both chat and instruct use cases.", + "size": "24GB", + "digest": "e46325710c52", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "alfred:40b", + "name": "alfred:40b", + "description": "A robust conversational model designed to be used for both chat and instruct use cases.", + "size": "24GB", + "digest": "e46325710c52", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "alfred:40b-1023-q4_0", + "name": "alfred:40b-1023-q4_0", + "description": "A robust conversational model designed to be used for both chat and instruct use cases.", + "size": "24GB", + "digest": "e46325710c52", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "alfred:40b-1023-q4_1", + "name": "alfred:40b-1023-q4_1", + "description": "A robust conversational model designed to be used for both chat and instruct use cases.", + "size": "26GB", + "digest": "d84e435512e7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "alfred:40b-1023-q5_0", + "name": "alfred:40b-1023-q5_0", + "description": "A robust conversational model designed to be used for both chat and instruct use cases.", + "size": "29GB", + "digest": "aa231f8a71bf", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "alfred:40b-1023-q5_1", + "name": "alfred:40b-1023-q5_1", + "description": "A robust conversational model designed to be used for both chat and instruct use cases.", + "size": "32GB", + "digest": "a0820dcbecfe", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "alfred:40b-1023-q8_0", + "name": "alfred:40b-1023-q8_0", + "description": "A robust conversational model designed to be used for both chat and instruct use cases.", + "size": "44GB", + "digest": "d811415ed9a6", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepscaler", + "name": "deepscaler", + "description": "A fine-tuned version of Deepseek-R1-Distilled-Qwen-1.5B that surpasses the performance of OpenAI’s o1-preview with just 1.5B parameters on popular math evaluations.", + "size": "3.6GB", + "digest": "0031bcf7459f", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "deepscaler:1.5b", + "name": "deepscaler:1.5b", + "description": "A fine-tuned version of Deepseek-R1-Distilled-Qwen-1.5B that surpasses the performance of OpenAI’s o1-preview with just 1.5B parameters on popular math evaluations.", + "size": "3.6GB", + "digest": "0031bcf7459f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepscaler:1.5b-preview-fp16", + "name": "deepscaler:1.5b-preview-fp16", + "description": "A fine-tuned version of Deepseek-R1-Distilled-Qwen-1.5B that surpasses the performance of OpenAI’s o1-preview with just 1.5B parameters on popular math evaluations.", + "size": "3.6GB", + "digest": "0031bcf7459f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepscaler:1.5b-preview-q4_K_M", + "name": "deepscaler:1.5b-preview-q4_K_M", + "description": "A fine-tuned version of Deepseek-R1-Distilled-Qwen-1.5B that surpasses the performance of OpenAI’s o1-preview with just 1.5B parameters on popular math evaluations.", + "size": "1.1GB", + "digest": "305c4a53269d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "deepscaler:1.5b-preview-q8_0", + "name": "deepscaler:1.5b-preview-q8_0", + "description": "A fine-tuned version of Deepseek-R1-Distilled-Qwen-1.5B that surpasses the performance of OpenAI’s o1-preview with just 1.5B parameters on popular math evaluations.", + "size": "1.9GB", + "digest": "37b8148c7f55", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-guardian", + "name": "granite3-guardian", + "description": "The IBM Granite Guardian 3.0 2B and 8B models are designed to detect risks in prompts and/or responses.", + "size": "2.7GB", + "digest": "ba81a177bd23", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "granite3-guardian:2b", + "name": "granite3-guardian:2b", + "description": "The IBM Granite Guardian 3.0 2B and 8B models are designed to detect risks in prompts and/or responses.", + "size": "2.7GB", + "digest": "ba81a177bd23", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-guardian:8b", + "name": "granite3-guardian:8b", + "description": "The IBM Granite Guardian 3.0 2B and 8B models are designed to detect risks in prompts and/or responses.", + "size": "5.8GB", + "digest": "c8d7d5c76685", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-guardian:2b-fp16", + "name": "granite3-guardian:2b-fp16", + "description": "The IBM Granite Guardian 3.0 2B and 8B models are designed to detect risks in prompts and/or responses.", + "size": "5.1GB", + "digest": "2bf55927dd85", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-guardian:2b-q8_0", + "name": "granite3-guardian:2b-q8_0", + "description": "The IBM Granite Guardian 3.0 2B and 8B models are designed to detect risks in prompts and/or responses.", + "size": "2.7GB", + "digest": "ba81a177bd23", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-guardian:8b-fp16", + "name": "granite3-guardian:8b-fp16", + "description": "The IBM Granite Guardian 3.0 2B and 8B models are designed to detect risks in prompts and/or responses.", + "size": "16GB", + "digest": "d9ecead6310d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-guardian:8b-q5_K_M", + "name": "granite3-guardian:8b-q5_K_M", + "description": "The IBM Granite Guardian 3.0 2B and 8B models are designed to detect risks in prompts and/or responses.", + "size": "5.8GB", + "digest": "c8d7d5c76685", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-guardian:8b-q5_K_S", + "name": "granite3-guardian:8b-q5_K_S", + "description": "The IBM Granite Guardian 3.0 2B and 8B models are designed to detect risks in prompts and/or responses.", + "size": "5.6GB", + "digest": "edeec72aa741", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-guardian:8b-q6_K", + "name": "granite3-guardian:8b-q6_K", + "description": "The IBM Granite Guardian 3.0 2B and 8B models are designed to detect risks in prompts and/or responses.", + "size": "6.7GB", + "digest": "200f63c67d98", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite3-guardian:8b-q8_0", + "name": "granite3-guardian:8b-q8_0", + "description": "The IBM Granite Guardian 3.0 2B and 8B models are designed to detect risks in prompts and/or responses.", + "size": "8.7GB", + "digest": "a91578a591d2", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-embedding", + "name": "granite-embedding", + "description": "The IBM Granite Embedding 30M and 278M models models are text-only dense biencoder embedding models, with 30M available in English only and 278M serving multilingual use cases.", + "size": "63MB", + "digest": "eb4c533ba6f7", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "granite-embedding:30m", + "name": "granite-embedding:30m", + "description": "The IBM Granite Embedding 30M and 278M models models are text-only dense biencoder embedding models, with 30M available in English only and 278M serving multilingual use cases.", + "size": "63MB", + "digest": "eb4c533ba6f7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-embedding:278m", + "name": "granite-embedding:278m", + "description": "The IBM Granite Embedding 30M and 278M models models are text-only dense biencoder embedding models, with 30M available in English only and 278M serving multilingual use cases.", + "size": "563MB", + "digest": "1a37926bf842", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-embedding:278m-fp16", + "name": "granite-embedding:278m-fp16", + "description": "The IBM Granite Embedding 30M and 278M models models are text-only dense biencoder embedding models, with 30M available in English only and 278M serving multilingual use cases.", + "size": "563MB", + "digest": "1a37926bf842", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-embedding:30m-en", + "name": "granite-embedding:30m-en", + "description": "The IBM Granite Embedding 30M and 278M models models are text-only dense biencoder embedding models, with 30M available in English only and 278M serving multilingual use cases.", + "size": "63MB", + "digest": "eb4c533ba6f7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "granite-embedding:30m-en-fp16", + "name": "granite-embedding:30m-en-fp16", + "description": "The IBM Granite Embedding 30M and 278M models models are text-only dense biencoder embedding models, with 30M available in English only and 278M serving multilingual use cases.", + "size": "63MB", + "digest": "eb4c533ba6f7", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sailor2", + "name": "sailor2", + "description": "Sailor2 are multilingual language models made for South-East Asia. Available in 1B, 8B, and 20B parameter sizes.", + "size": "5.2GB", + "digest": "f08f378f040a", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "sailor2:1b", + "name": "sailor2:1b", + "description": "Sailor2 are multilingual language models made for South-East Asia. Available in 1B, 8B, and 20B parameter sizes.", + "size": "1.1GB", + "digest": "7b8c8f58ae99", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sailor2:8b", + "name": "sailor2:8b", + "description": "Sailor2 are multilingual language models made for South-East Asia. Available in 1B, 8B, and 20B parameter sizes.", + "size": "5.2GB", + "digest": "f08f378f040a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sailor2:20b", + "name": "sailor2:20b", + "description": "Sailor2 are multilingual language models made for South-East Asia. Available in 1B, 8B, and 20B parameter sizes.", + "size": "12GB", + "digest": "b74611e7fe0d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sailor2:1b-chat-fp16", + "name": "sailor2:1b-chat-fp16", + "description": "Sailor2 are multilingual language models made for South-East Asia. Available in 1B, 8B, and 20B parameter sizes.", + "size": "2.0GB", + "digest": "415967b0fd33", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sailor2:1b-chat-q4_K_M", + "name": "sailor2:1b-chat-q4_K_M", + "description": "Sailor2 are multilingual language models made for South-East Asia. Available in 1B, 8B, and 20B parameter sizes.", + "size": "739MB", + "digest": "50302a6d6549", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sailor2:1b-chat-q8_0", + "name": "sailor2:1b-chat-q8_0", + "description": "Sailor2 are multilingual language models made for South-East Asia. Available in 1B, 8B, and 20B parameter sizes.", + "size": "1.1GB", + "digest": "7b8c8f58ae99", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sailor2:20b-chat-fp16", + "name": "sailor2:20b-chat-fp16", + "description": "Sailor2 are multilingual language models made for South-East Asia. Available in 1B, 8B, and 20B parameter sizes.", + "size": "38GB", + "digest": "d1455f557fbd", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sailor2:20b-chat-q4_K_M", + "name": "sailor2:20b-chat-q4_K_M", + "description": "Sailor2 are multilingual language models made for South-East Asia. Available in 1B, 8B, and 20B parameter sizes.", + "size": "12GB", + "digest": "b74611e7fe0d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sailor2:20b-chat-q8_0", + "name": "sailor2:20b-chat-q8_0", + "description": "Sailor2 are multilingual language models made for South-East Asia. Available in 1B, 8B, and 20B parameter sizes.", + "size": "20GB", + "digest": "d49553f04a80", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sailor2:8b-chat-fp16", + "name": "sailor2:8b-chat-fp16", + "description": "Sailor2 are multilingual language models made for South-East Asia. Available in 1B, 8B, and 20B parameter sizes.", + "size": "17GB", + "digest": "9377306c17c9", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sailor2:8b-chat-q4_K_M", + "name": "sailor2:8b-chat-q4_K_M", + "description": "Sailor2 are multilingual language models made for South-East Asia. Available in 1B, 8B, and 20B parameter sizes.", + "size": "5.2GB", + "digest": "f08f378f040a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "sailor2:8b-chat-q8_0", + "name": "sailor2:8b-chat-q8_0", + "description": "Sailor2 are multilingual language models made for South-East Asia. Available in 1B, 8B, and 20B parameter sizes.", + "size": "9.1GB", + "digest": "ba25188c847d", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openthinker", + "name": "openthinker", + "description": "A fully open-source family of reasoning models built using a dataset derived by distilling DeepSeek-R1.", + "size": "4.7GB", + "digest": "aaffe05a5e2e", + "provider": "", + "is_popular": false, + "latest": true + }, + { + "id": "openthinker:7b", + "name": "openthinker:7b", + "description": "A fully open-source family of reasoning models built using a dataset derived by distilling DeepSeek-R1.", + "size": "4.7GB", + "digest": "aaffe05a5e2e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openthinker:32b", + "name": "openthinker:32b", + "description": "A fully open-source family of reasoning models built using a dataset derived by distilling DeepSeek-R1.", + "size": "20GB", + "digest": "b3f4e577e166", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openthinker:32b-fp16", + "name": "openthinker:32b-fp16", + "description": "A fully open-source family of reasoning models built using a dataset derived by distilling DeepSeek-R1.", + "size": "66GB", + "digest": "fe656527fabb", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openthinker:32b-q4_K_M", + "name": "openthinker:32b-q4_K_M", + "description": "A fully open-source family of reasoning models built using a dataset derived by distilling DeepSeek-R1.", + "size": "20GB", + "digest": "b3f4e577e166", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openthinker:32b-q8_0", + "name": "openthinker:32b-q8_0", + "description": "A fully open-source family of reasoning models built using a dataset derived by distilling DeepSeek-R1.", + "size": "35GB", + "digest": "58ba37ade26f", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openthinker:7b-fp16", + "name": "openthinker:7b-fp16", + "description": "A fully open-source family of reasoning models built using a dataset derived by distilling DeepSeek-R1.", + "size": "15GB", + "digest": "51b87c56a25a", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openthinker:7b-q4_K_M", + "name": "openthinker:7b-q4_K_M", + "description": "A fully open-source family of reasoning models built using a dataset derived by distilling DeepSeek-R1.", + "size": "4.7GB", + "digest": "aaffe05a5e2e", + "provider": "", + "is_popular": false, + "latest": false + }, + { + "id": "openthinker:7b-q8_0", + "name": "openthinker:7b-q8_0", + "description": "A fully open-source family of reasoning models built using a dataset derived by distilling DeepSeek-R1.", + "size": "8.1GB", + "digest": "a0b1973d2ae4", + "provider": "", + "is_popular": false, + "latest": false + } + ], + "version": "20250213194727" +} \ No newline at end of file diff --git a/ai-provider/local/ollama.go b/ai-provider/local/ollama.go new file mode 100644 index 00000000..be765848 --- /dev/null +++ b/ai-provider/local/ollama.go @@ -0,0 +1,102 @@ +package ai_provider_local + +var ( + OllamaConfig = "{\n \"mirostat\": 0,\n \"mirostat_eta\": 0.1,\n \"mirostat_tau\": 5.0,\n \"num_ctx\": 4096,\n \"repeat_last_n\":64,\n \"repeat_penalty\": 1.1,\n \"temperature\": 0.7,\n \"seed\": 42,\n \"num_predict\": 42,\n \"top_k\": 40,\n \"top_p\": 0.9,\n \"min_p\": 0.5\n}\n" + OllamaSvg = ` + + + + + + + + + + + +` +) diff --git a/ai-provider/model-runtime/model-providers/authropic/llm/claude-3-5-haiku-20241022.yaml b/ai-provider/model-runtime/model-providers/authropic/llm/claude-3-5-haiku-20241022.yaml new file mode 100644 index 00000000..892146f6 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/authropic/llm/claude-3-5-haiku-20241022.yaml @@ -0,0 +1,38 @@ +model: claude-3-5-haiku-20241022 +label: + en_US: claude-3-5-haiku-20241022 +model_type: llm +features: + - agent-thought + - tool-call + - stream-tool-call +model_properties: + mode: chat + context_size: 200000 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: top_k + label: + zh_Hans: 取样数量 + en_US: Top k + type: int + help: + zh_Hans: 仅从每个后续标记的前 K 个选项中采样。 + en_US: Only sample from the top K options for each subsequent token. + required: false + - name: max_tokens + use_template: max_tokens + required: true + default: 8192 + min: 1 + max: 8192 + - name: response_format + use_template: response_format +pricing: + input: '1.00' + output: '5.00' + unit: '0.000001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/authropic/llm/claude-3-5-sonnet-20241022.yaml b/ai-provider/model-runtime/model-providers/authropic/llm/claude-3-5-sonnet-20241022.yaml new file mode 100644 index 00000000..81822b16 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/authropic/llm/claude-3-5-sonnet-20241022.yaml @@ -0,0 +1,40 @@ +model: claude-3-5-sonnet-20241022 +label: + en_US: claude-3-5-sonnet-20241022 +model_type: llm +features: + - agent-thought + - vision + - tool-call + - stream-tool-call + - document +model_properties: + mode: chat + context_size: 200000 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: top_k + label: + zh_Hans: 取样数量 + en_US: Top k + type: int + help: + zh_Hans: 仅从每个后续标记的前 K 个选项中采样。 + en_US: Only sample from the top K options for each subsequent token. + required: false + - name: max_tokens + use_template: max_tokens + required: true + default: 8192 + min: 1 + max: 8192 + - name: response_format + use_template: response_format +pricing: + input: '3.00' + output: '15.00' + unit: '0.000001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/bedrock/llm/ai21.jamba-1-5-large-v1.0.yaml b/ai-provider/model-runtime/model-providers/bedrock/llm/ai21.jamba-1-5-large-v1.0.yaml new file mode 100644 index 00000000..276c7312 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/bedrock/llm/ai21.jamba-1-5-large-v1.0.yaml @@ -0,0 +1,26 @@ +model: ai21.jamba-1-5-large-v1:0 +label: + en_US: Jamba 1.5 Large +model_type: llm +model_properties: + mode: completion + context_size: 256000 +parameter_rules: + - name: temperature + use_template: temperature + default: 1 + min: 0.0 + max: 2.0 + - name: top_p + use_template: top_p + - name: max_gen_len + use_template: max_tokens + required: true + default: 4096 + min: 1 + max: 4096 +pricing: + input: '0.002' + output: '0.008' + unit: '0.001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/bedrock/llm/ai21.jamba-1-5-mini-v1.0.yaml b/ai-provider/model-runtime/model-providers/bedrock/llm/ai21.jamba-1-5-mini-v1.0.yaml new file mode 100644 index 00000000..3461d8ab --- /dev/null +++ b/ai-provider/model-runtime/model-providers/bedrock/llm/ai21.jamba-1-5-mini-v1.0.yaml @@ -0,0 +1,26 @@ +model: ai21.jamba-1-5-mini-v1:0 +label: + en_US: Jamba 1.5 Mini +model_type: llm +model_properties: + mode: completion + context_size: 256000 +parameter_rules: + - name: temperature + use_template: temperature + default: 1 + min: 0.0 + max: 2.0 + - name: top_p + use_template: top_p + - name: max_gen_len + use_template: max_tokens + required: true + default: 4096 + min: 1 + max: 4096 +pricing: + input: '0.0002' + output: '0.0004' + unit: '0.001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/bedrock/llm/amazon.nova-lite-v1.yaml b/ai-provider/model-runtime/model-providers/bedrock/llm/amazon.nova-lite-v1.yaml new file mode 100644 index 00000000..41a7f96d --- /dev/null +++ b/ai-provider/model-runtime/model-providers/bedrock/llm/amazon.nova-lite-v1.yaml @@ -0,0 +1,53 @@ +model: amazon.nova-lite-v1:0 +label: + en_US: Nova Lite V1 +model_type: llm +features: + - agent-thought + - tool-call + - stream-tool-call + - vision +model_properties: + mode: chat + context_size: 300000 +parameter_rules: + - name: max_new_tokens + use_template: max_tokens + required: true + default: 2048 + min: 1 + max: 5000 + - name: temperature + use_template: temperature + required: false + type: float + default: 1 + min: 0.0 + max: 1.0 + help: + zh_Hans: 生成内容的随机性。 + en_US: The amount of randomness injected into the response. + - name: top_p + required: false + type: float + default: 0.999 + min: 0.000 + max: 1.000 + help: + zh_Hans: 在核采样中,Anthropic Claude 按概率递减顺序计算每个后续标记的所有选项的累积分布,并在达到 top_p 指定的特定概率时将其切断。您应该更改温度或top_p,但不能同时更改两者。 + en_US: In nucleus sampling, Anthropic Claude computes the cumulative distribution over all the options for each subsequent token in decreasing probability order and cuts it off once it reaches a particular probability specified by top_p. You should alter either temperature or top_p, but not both. + - name: top_k + required: false + type: int + default: 0 + min: 0 + # tip docs from aws has error, max value is 500 + max: 500 + help: + zh_Hans: 对于每个后续标记,仅从前 K 个选项中进行采样。使用 top_k 删除长尾低概率响应。 + en_US: Only sample from the top K options for each subsequent token. Use top_k to remove long tail low probability responses. +pricing: + input: '0.00006' + output: '0.00024' + unit: '0.001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/bedrock/llm/amazon.nova-micro-v1.yaml b/ai-provider/model-runtime/model-providers/bedrock/llm/amazon.nova-micro-v1.yaml new file mode 100644 index 00000000..4ba8da66 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/bedrock/llm/amazon.nova-micro-v1.yaml @@ -0,0 +1,52 @@ +model: amazon.nova-micro-v1:0 +label: + en_US: Nova Micro V1 +model_type: llm +features: + - agent-thought + - tool-call + - stream-tool-call +model_properties: + mode: chat + context_size: 128000 +parameter_rules: + - name: max_new_tokens + use_template: max_tokens + required: true + default: 2048 + min: 1 + max: 5000 + - name: temperature + use_template: temperature + required: false + type: float + default: 1 + min: 0.0 + max: 1.0 + help: + zh_Hans: 生成内容的随机性。 + en_US: The amount of randomness injected into the response. + - name: top_p + required: false + type: float + default: 0.999 + min: 0.000 + max: 1.000 + help: + zh_Hans: 在核采样中,Anthropic Claude 按概率递减顺序计算每个后续标记的所有选项的累积分布,并在达到 top_p 指定的特定概率时将其切断。您应该更改温度或top_p,但不能同时更改两者。 + en_US: In nucleus sampling, Anthropic Claude computes the cumulative distribution over all the options for each subsequent token in decreasing probability order and cuts it off once it reaches a particular probability specified by top_p. You should alter either temperature or top_p, but not both. + - name: top_k + required: false + type: int + default: 0 + min: 0 + # tip docs from aws has error, max value is 500 + max: 500 + help: + zh_Hans: 对于每个后续标记,仅从前 K 个选项中进行采样。使用 top_k 删除长尾低概率响应。 + en_US: Only sample from the top K options for each subsequent token. Use top_k to remove long tail low probability responses. +pricing: + input: '0.000035' + output: '0.00014' + unit: '0.001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/bedrock/llm/amazon.nova-pro-v1.yaml b/ai-provider/model-runtime/model-providers/bedrock/llm/amazon.nova-pro-v1.yaml new file mode 100644 index 00000000..53cf5606 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/bedrock/llm/amazon.nova-pro-v1.yaml @@ -0,0 +1,53 @@ +model: amazon.nova-pro-v1:0 +label: + en_US: Nova Pro V1 +model_type: llm +features: + - agent-thought + - tool-call + - stream-tool-call + - vision +model_properties: + mode: chat + context_size: 300000 +parameter_rules: + - name: max_new_tokens + use_template: max_tokens + required: true + default: 2048 + min: 1 + max: 5000 + - name: temperature + use_template: temperature + required: false + type: float + default: 1 + min: 0.0 + max: 1.0 + help: + zh_Hans: 生成内容的随机性。 + en_US: The amount of randomness injected into the response. + - name: top_p + required: false + type: float + default: 0.999 + min: 0.000 + max: 1.000 + help: + zh_Hans: 在核采样中,Anthropic Claude 按概率递减顺序计算每个后续标记的所有选项的累积分布,并在达到 top_p 指定的特定概率时将其切断。您应该更改温度或top_p,但不能同时更改两者。 + en_US: In nucleus sampling, Anthropic Claude computes the cumulative distribution over all the options for each subsequent token in decreasing probability order and cuts it off once it reaches a particular probability specified by top_p. You should alter either temperature or top_p, but not both. + - name: top_k + required: false + type: int + default: 0 + min: 0 + # tip docs from aws has error, max value is 500 + max: 500 + help: + zh_Hans: 对于每个后续标记,仅从前 K 个选项中进行采样。使用 top_k 删除长尾低概率响应。 + en_US: Only sample from the top K options for each subsequent token. Use top_k to remove long tail low probability responses. +pricing: + input: '0.0008' + output: '0.0032' + unit: '0.001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/bedrock/llm/anthropic.claude-3-5-haiku-v1.yaml b/ai-provider/model-runtime/model-providers/bedrock/llm/anthropic.claude-3-5-haiku-v1.yaml new file mode 100644 index 00000000..9d693dcd --- /dev/null +++ b/ai-provider/model-runtime/model-providers/bedrock/llm/anthropic.claude-3-5-haiku-v1.yaml @@ -0,0 +1,60 @@ +model: anthropic.claude-3-5-haiku-20241022-v1:0 +label: + en_US: Claude 3.5 Haiku +model_type: llm +features: + - agent-thought + - tool-call + - stream-tool-call +model_properties: + mode: chat + context_size: 200000 +# docs: https://docs.aws.amazon.com/bedrock/latest/userguide/model-parameters-anthropic-claude-messages.html +parameter_rules: + - name: max_tokens + use_template: max_tokens + required: true + type: int + default: 8192 + min: 1 + max: 8192 + help: + zh_Hans: 停止前生成的最大令牌数。请注意,Anthropic Claude 模型可能会在达到 max_tokens 的值之前停止生成令牌。不同的 Anthropic Claude 模型对此参数具有不同的最大值。 + en_US: The maximum number of tokens to generate before stopping. Note that Anthropic Claude models might stop generating tokens before reaching the value of max_tokens. Different Anthropic Claude models have different maximum values for this parameter. + # docs: https://docs.anthropic.com/claude/docs/system-prompts + - name: temperature + use_template: temperature + required: false + type: float + default: 1 + min: 0.0 + max: 1.0 + help: + zh_Hans: 生成内容的随机性。 + en_US: The amount of randomness injected into the response. + - name: top_p + required: false + type: float + default: 0.999 + min: 0.000 + max: 1.000 + help: + zh_Hans: 在核采样中,Anthropic Claude 按概率递减顺序计算每个后续标记的所有选项的累积分布,并在达到 top_p 指定的特定概率时将其切断。您应该更改温度或top_p,但不能同时更改两者。 + en_US: In nucleus sampling, Anthropic Claude computes the cumulative distribution over all the options for each subsequent token in decreasing probability order and cuts it off once it reaches a particular probability specified by top_p. You should alter either temperature or top_p, but not both. + - name: top_k + required: false + type: int + default: 0 + min: 0 + # tip docs from aws has error, max value is 500 + max: 500 + help: + zh_Hans: 对于每个后续标记,仅从前 K 个选项中进行采样。使用 top_k 删除长尾低概率响应。 + en_US: Only sample from the top K options for each subsequent token. Use top_k to remove long tail low probability responses. + - name: response_format + use_template: response_format +pricing: + input: '0.001' + output: '0.005' + unit: '0.001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/bedrock/llm/anthropic.claude-3-sonnet-v2.yaml b/ai-provider/model-runtime/model-providers/bedrock/llm/anthropic.claude-3-sonnet-v2.yaml new file mode 100644 index 00000000..d30dd5d6 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/bedrock/llm/anthropic.claude-3-sonnet-v2.yaml @@ -0,0 +1,60 @@ +model: anthropic.claude-3-5-sonnet-20241022-v2:0 +label: + en_US: Claude 3.5 Sonnet V2 +model_type: llm +features: + - agent-thought + - vision + - tool-call + - stream-tool-call +model_properties: + mode: chat + context_size: 200000 +# docs: https://docs.aws.amazon.com/bedrock/latest/userguide/model-parameters-anthropic-claude-messages.html +parameter_rules: + - name: max_tokens + use_template: max_tokens + required: true + type: int + default: 8192 + min: 1 + max: 8192 + help: + zh_Hans: 停止前生成的最大令牌数。请注意,Anthropic Claude 模型可能会在达到 max_tokens 的值之前停止生成令牌。不同的 Anthropic Claude 模型对此参数具有不同的最大值。 + en_US: The maximum number of tokens to generate before stopping. Note that Anthropic Claude models might stop generating tokens before reaching the value of max_tokens. Different Anthropic Claude models have different maximum values for this parameter. + - name: temperature + use_template: temperature + required: false + type: float + default: 1 + min: 0.0 + max: 1.0 + help: + zh_Hans: 生成内容的随机性。 + en_US: The amount of randomness injected into the response. + - name: top_p + required: false + type: float + default: 0.999 + min: 0.000 + max: 1.000 + help: + zh_Hans: 在核采样中,Anthropic Claude 按概率递减顺序计算每个后续标记的所有选项的累积分布,并在达到 top_p 指定的特定概率时将其切断。您应该更改温度或top_p,但不能同时更改两者。 + en_US: In nucleus sampling, Anthropic Claude computes the cumulative distribution over all the options for each subsequent token in decreasing probability order and cuts it off once it reaches a particular probability specified by top_p. You should alter either temperature or top_p, but not both. + - name: top_k + required: false + type: int + default: 0 + min: 0 + # tip docs from aws has error, max value is 500 + max: 500 + help: + zh_Hans: 对于每个后续标记,仅从前 K 个选项中进行采样。使用 top_k 删除长尾低概率响应。 + en_US: Only sample from the top K options for each subsequent token. Use top_k to remove long tail low probability responses. + - name: response_format + use_template: response_format +pricing: + input: '0.003' + output: '0.015' + unit: '0.001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/bedrock/llm/eu.anthropic.claude-3-sonnet-v2.yaml b/ai-provider/model-runtime/model-providers/bedrock/llm/eu.anthropic.claude-3-sonnet-v2.yaml new file mode 100644 index 00000000..8d831e6f --- /dev/null +++ b/ai-provider/model-runtime/model-providers/bedrock/llm/eu.anthropic.claude-3-sonnet-v2.yaml @@ -0,0 +1,60 @@ +model: eu.anthropic.claude-3-5-sonnet-20241022-v2:0 +label: + en_US: Claude 3.5 Sonnet V2(EU.Cross Region Inference) +model_type: llm +features: + - agent-thought + - vision + - tool-call + - stream-tool-call +model_properties: + mode: chat + context_size: 200000 +# docs: https://docs.aws.amazon.com/bedrock/latest/userguide/model-parameters-anthropic-claude-messages.html +parameter_rules: + - name: max_tokens + use_template: max_tokens + required: true + type: int + default: 4096 + min: 1 + max: 4096 + help: + zh_Hans: 停止前生成的最大令牌数。请注意,Anthropic Claude 模型可能会在达到 max_tokens 的值之前停止生成令牌。不同的 Anthropic Claude 模型对此参数具有不同的最大值。 + en_US: The maximum number of tokens to generate before stopping. Note that Anthropic Claude models might stop generating tokens before reaching the value of max_tokens. Different Anthropic Claude models have different maximum values for this parameter. + - name: temperature + use_template: temperature + required: false + type: float + default: 1 + min: 0.0 + max: 1.0 + help: + zh_Hans: 生成内容的随机性。 + en_US: The amount of randomness injected into the response. + - name: top_p + required: false + type: float + default: 0.999 + min: 0.000 + max: 1.000 + help: + zh_Hans: 在核采样中,Anthropic Claude 按概率递减顺序计算每个后续标记的所有选项的累积分布,并在达到 top_p 指定的特定概率时将其切断。您应该更改温度或top_p,但不能同时更改两者。 + en_US: In nucleus sampling, Anthropic Claude computes the cumulative distribution over all the options for each subsequent token in decreasing probability order and cuts it off once it reaches a particular probability specified by top_p. You should alter either temperature or top_p, but not both. + - name: top_k + required: false + type: int + default: 0 + min: 0 + # tip docs from aws has error, max value is 500 + max: 500 + help: + zh_Hans: 对于每个后续标记,仅从前 K 个选项中进行采样。使用 top_k 删除长尾低概率响应。 + en_US: Only sample from the top K options for each subsequent token. Use top_k to remove long tail low probability responses. + - name: response_format + use_template: response_format +pricing: + input: '0.003' + output: '0.015' + unit: '0.001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/bedrock/llm/us.amazon.nova-lite-v1.yaml b/ai-provider/model-runtime/model-providers/bedrock/llm/us.amazon.nova-lite-v1.yaml new file mode 100644 index 00000000..52235348 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/bedrock/llm/us.amazon.nova-lite-v1.yaml @@ -0,0 +1,53 @@ +model: us.amazon.nova-lite-v1:0 +label: + en_US: Nova Lite V1 (US.Cross Region Inference) +model_type: llm +features: + - agent-thought + - tool-call + - stream-tool-call + - vision +model_properties: + mode: chat + context_size: 300000 +parameter_rules: + - name: max_new_tokens + use_template: max_tokens + required: true + default: 2048 + min: 1 + max: 5000 + - name: temperature + use_template: temperature + required: false + type: float + default: 1 + min: 0.0 + max: 1.0 + help: + zh_Hans: 生成内容的随机性。 + en_US: The amount of randomness injected into the response. + - name: top_p + required: false + type: float + default: 0.999 + min: 0.000 + max: 1.000 + help: + zh_Hans: 在核采样中,Anthropic Claude 按概率递减顺序计算每个后续标记的所有选项的累积分布,并在达到 top_p 指定的特定概率时将其切断。您应该更改温度或top_p,但不能同时更改两者。 + en_US: In nucleus sampling, Anthropic Claude computes the cumulative distribution over all the options for each subsequent token in decreasing probability order and cuts it off once it reaches a particular probability specified by top_p. You should alter either temperature or top_p, but not both. + - name: top_k + required: false + type: int + default: 0 + min: 0 + # tip docs from aws has error, max value is 500 + max: 500 + help: + zh_Hans: 对于每个后续标记,仅从前 K 个选项中进行采样。使用 top_k 删除长尾低概率响应。 + en_US: Only sample from the top K options for each subsequent token. Use top_k to remove long tail low probability responses. +pricing: + input: '0.00006' + output: '0.00024' + unit: '0.001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/bedrock/llm/us.amazon.nova-micro-v1.yaml b/ai-provider/model-runtime/model-providers/bedrock/llm/us.amazon.nova-micro-v1.yaml new file mode 100644 index 00000000..4662d0a2 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/bedrock/llm/us.amazon.nova-micro-v1.yaml @@ -0,0 +1,52 @@ +model: us.amazon.nova-micro-v1:0 +label: + en_US: Nova Micro V1 (US.Cross Region Inference) +model_type: llm +features: + - agent-thought + - tool-call + - stream-tool-call +model_properties: + mode: chat + context_size: 128000 +parameter_rules: + - name: max_new_tokens + use_template: max_tokens + required: true + default: 2048 + min: 1 + max: 5000 + - name: temperature + use_template: temperature + required: false + type: float + default: 1 + min: 0.0 + max: 1.0 + help: + zh_Hans: 生成内容的随机性。 + en_US: The amount of randomness injected into the response. + - name: top_p + required: false + type: float + default: 0.999 + min: 0.000 + max: 1.000 + help: + zh_Hans: 在核采样中,Anthropic Claude 按概率递减顺序计算每个后续标记的所有选项的累积分布,并在达到 top_p 指定的特定概率时将其切断。您应该更改温度或top_p,但不能同时更改两者。 + en_US: In nucleus sampling, Anthropic Claude computes the cumulative distribution over all the options for each subsequent token in decreasing probability order and cuts it off once it reaches a particular probability specified by top_p. You should alter either temperature or top_p, but not both. + - name: top_k + required: false + type: int + default: 0 + min: 0 + # tip docs from aws has error, max value is 500 + max: 500 + help: + zh_Hans: 对于每个后续标记,仅从前 K 个选项中进行采样。使用 top_k 删除长尾低概率响应。 + en_US: Only sample from the top K options for each subsequent token. Use top_k to remove long tail low probability responses. +pricing: + input: '0.000035' + output: '0.00014' + unit: '0.001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/bedrock/llm/us.amazon.nova-pro-v1.yaml b/ai-provider/model-runtime/model-providers/bedrock/llm/us.amazon.nova-pro-v1.yaml new file mode 100644 index 00000000..20e9d233 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/bedrock/llm/us.amazon.nova-pro-v1.yaml @@ -0,0 +1,53 @@ +model: us.amazon.nova-pro-v1:0 +label: + en_US: Nova Pro V1 (US.Cross Region Inference) +model_type: llm +features: + - agent-thought + - tool-call + - stream-tool-call + - vision +model_properties: + mode: chat + context_size: 300000 +parameter_rules: + - name: max_new_tokens + use_template: max_tokens + required: true + default: 2048 + min: 1 + max: 5000 + - name: temperature + use_template: temperature + required: false + type: float + default: 1 + min: 0.0 + max: 1.0 + help: + zh_Hans: 生成内容的随机性。 + en_US: The amount of randomness injected into the response. + - name: top_p + required: false + type: float + default: 0.999 + min: 0.000 + max: 1.000 + help: + zh_Hans: 在核采样中,Anthropic Claude 按概率递减顺序计算每个后续标记的所有选项的累积分布,并在达到 top_p 指定的特定概率时将其切断。您应该更改温度或top_p,但不能同时更改两者。 + en_US: In nucleus sampling, Anthropic Claude computes the cumulative distribution over all the options for each subsequent token in decreasing probability order and cuts it off once it reaches a particular probability specified by top_p. You should alter either temperature or top_p, but not both. + - name: top_k + required: false + type: int + default: 0 + min: 0 + # tip docs from aws has error, max value is 500 + max: 500 + help: + zh_Hans: 对于每个后续标记,仅从前 K 个选项中进行采样。使用 top_k 删除长尾低概率响应。 + en_US: Only sample from the top K options for each subsequent token. Use top_k to remove long tail low probability responses. +pricing: + input: '0.0008' + output: '0.0032' + unit: '0.001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/bedrock/llm/us.anthropic.claude-3-5-haiku-v1.yaml b/ai-provider/model-runtime/model-providers/bedrock/llm/us.anthropic.claude-3-5-haiku-v1.yaml new file mode 100644 index 00000000..e5e0244a --- /dev/null +++ b/ai-provider/model-runtime/model-providers/bedrock/llm/us.anthropic.claude-3-5-haiku-v1.yaml @@ -0,0 +1,60 @@ +model: us.anthropic.claude-3-5-haiku-20241022-v1:0 +label: + en_US: Claude 3.5 Haiku(US.Cross Region Inference) +model_type: llm +features: + - agent-thought + - tool-call + - stream-tool-call +model_properties: + mode: chat + context_size: 200000 +# docs: https://docs.aws.amazon.com/bedrock/latest/userguide/model-parameters-anthropic-claude-messages.html +parameter_rules: + - name: max_tokens + use_template: max_tokens + required: true + type: int + default: 8192 + min: 1 + max: 8192 + help: + zh_Hans: 停止前生成的最大令牌数。请注意,Anthropic Claude 模型可能会在达到 max_tokens 的值之前停止生成令牌。不同的 Anthropic Claude 模型对此参数具有不同的最大值。 + en_US: The maximum number of tokens to generate before stopping. Note that Anthropic Claude models might stop generating tokens before reaching the value of max_tokens. Different Anthropic Claude models have different maximum values for this parameter. + # docs: https://docs.anthropic.com/claude/docs/system-prompts + - name: temperature + use_template: temperature + required: false + type: float + default: 1 + min: 0.0 + max: 1.0 + help: + zh_Hans: 生成内容的随机性。 + en_US: The amount of randomness injected into the response. + - name: top_p + required: false + type: float + default: 0.999 + min: 0.000 + max: 1.000 + help: + zh_Hans: 在核采样中,Anthropic Claude 按概率递减顺序计算每个后续标记的所有选项的累积分布,并在达到 top_p 指定的特定概率时将其切断。您应该更改温度或top_p,但不能同时更改两者。 + en_US: In nucleus sampling, Anthropic Claude computes the cumulative distribution over all the options for each subsequent token in decreasing probability order and cuts it off once it reaches a particular probability specified by top_p. You should alter either temperature or top_p, but not both. + - name: top_k + required: false + type: int + default: 0 + min: 0 + # tip docs from aws has error, max value is 500 + max: 500 + help: + zh_Hans: 对于每个后续标记,仅从前 K 个选项中进行采样。使用 top_k 删除长尾低概率响应。 + en_US: Only sample from the top K options for each subsequent token. Use top_k to remove long tail low probability responses. + - name: response_format + use_template: response_format +pricing: + input: '0.001' + output: '0.005' + unit: '0.001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/bedrock/llm/us.anthropic.claude-3-sonnet-v2.yaml b/ai-provider/model-runtime/model-providers/bedrock/llm/us.anthropic.claude-3-sonnet-v2.yaml new file mode 100644 index 00000000..61f73276 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/bedrock/llm/us.anthropic.claude-3-sonnet-v2.yaml @@ -0,0 +1,60 @@ +model: us.anthropic.claude-3-5-sonnet-20241022-v2:0 +label: + en_US: Claude 3.5 Sonnet V2(US.Cross Region Inference) +model_type: llm +features: + - agent-thought + - vision + - tool-call + - stream-tool-call +model_properties: + mode: chat + context_size: 200000 +# docs: https://docs.aws.amazon.com/bedrock/latest/userguide/model-parameters-anthropic-claude-messages.html +parameter_rules: + - name: max_tokens + use_template: max_tokens + required: true + type: int + default: 8192 + min: 1 + max: 8192 + help: + zh_Hans: 停止前生成的最大令牌数。请注意,Anthropic Claude 模型可能会在达到 max_tokens 的值之前停止生成令牌。不同的 Anthropic Claude 模型对此参数具有不同的最大值。 + en_US: The maximum number of tokens to generate before stopping. Note that Anthropic Claude models might stop generating tokens before reaching the value of max_tokens. Different Anthropic Claude models have different maximum values for this parameter. + - name: temperature + use_template: temperature + required: false + type: float + default: 1 + min: 0.0 + max: 1.0 + help: + zh_Hans: 生成内容的随机性。 + en_US: The amount of randomness injected into the response. + - name: top_p + required: false + type: float + default: 0.999 + min: 0.000 + max: 1.000 + help: + zh_Hans: 在核采样中,Anthropic Claude 按概率递减顺序计算每个后续标记的所有选项的累积分布,并在达到 top_p 指定的特定概率时将其切断。您应该更改温度或top_p,但不能同时更改两者。 + en_US: In nucleus sampling, Anthropic Claude computes the cumulative distribution over all the options for each subsequent token in decreasing probability order and cuts it off once it reaches a particular probability specified by top_p. You should alter either temperature or top_p, but not both. + - name: top_k + required: false + type: int + default: 0 + min: 0 + # tip docs from aws has error, max value is 500 + max: 500 + help: + zh_Hans: 对于每个后续标记,仅从前 K 个选项中进行采样。使用 top_k 删除长尾低概率响应。 + en_US: Only sample from the top K options for each subsequent token. Use top_k to remove long tail low probability responses. + - name: response_format + use_template: response_format +pricing: + input: '0.003' + output: '0.015' + unit: '0.001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/bedrock/llm/us.meta.llama3-2-11b-instruct-v1.0.yaml b/ai-provider/model-runtime/model-providers/bedrock/llm/us.meta.llama3-2-11b-instruct-v1.0.yaml new file mode 100644 index 00000000..029f4287 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/bedrock/llm/us.meta.llama3-2-11b-instruct-v1.0.yaml @@ -0,0 +1,29 @@ +model: us.meta.llama3-2-11b-instruct-v1:0 +label: + en_US: US Meta Llama 3.2 11B Instruct +model_type: llm +features: + - vision + - tool-call +model_properties: + mode: completion + context_size: 128000 +parameter_rules: + - name: temperature + use_template: temperature + default: 0.5 + min: 0.0 + max: 1 + - name: top_p + use_template: top_p + - name: max_gen_len + use_template: max_tokens + required: true + default: 512 + min: 1 + max: 2048 +pricing: + input: '0.00035' + output: '0.00035' + unit: '0.001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/bedrock/llm/us.meta.llama3-2-1b-instruct-v1.0.yaml b/ai-provider/model-runtime/model-providers/bedrock/llm/us.meta.llama3-2-1b-instruct-v1.0.yaml new file mode 100644 index 00000000..51c8474e --- /dev/null +++ b/ai-provider/model-runtime/model-providers/bedrock/llm/us.meta.llama3-2-1b-instruct-v1.0.yaml @@ -0,0 +1,26 @@ +model: us.meta.llama3-2-1b-instruct-v1:0 +label: + en_US: US Meta Llama 3.2 1B Instruct +model_type: llm +model_properties: + mode: completion + context_size: 128000 +parameter_rules: + - name: temperature + use_template: temperature + default: 0.5 + min: 0.0 + max: 1 + - name: top_p + use_template: top_p + - name: max_gen_len + use_template: max_tokens + required: true + default: 512 + min: 1 + max: 2048 +pricing: + input: '0.0001' + output: '0.0001' + unit: '0.001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/bedrock/llm/us.meta.llama3-2-3b-instruct-v1.0.yaml b/ai-provider/model-runtime/model-providers/bedrock/llm/us.meta.llama3-2-3b-instruct-v1.0.yaml new file mode 100644 index 00000000..472cc740 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/bedrock/llm/us.meta.llama3-2-3b-instruct-v1.0.yaml @@ -0,0 +1,26 @@ +model: us.meta.llama3-2-3b-instruct-v1:0 +label: + en_US: US Meta Llama 3.2 3B Instruct +model_type: llm +model_properties: + mode: completion + context_size: 128000 +parameter_rules: + - name: temperature + use_template: temperature + default: 0.5 + min: 0.0 + max: 1 + - name: top_p + use_template: top_p + - name: max_gen_len + use_template: max_tokens + required: true + default: 512 + min: 1 + max: 2048 +pricing: + input: '0.00015' + output: '0.00015' + unit: '0.001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/bedrock/llm/us.meta.llama3-2-90b-instruct-v1.0.yaml b/ai-provider/model-runtime/model-providers/bedrock/llm/us.meta.llama3-2-90b-instruct-v1.0.yaml new file mode 100644 index 00000000..cecd0236 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/bedrock/llm/us.meta.llama3-2-90b-instruct-v1.0.yaml @@ -0,0 +1,31 @@ +model: us.meta.llama3-2-90b-instruct-v1:0 +label: + en_US: US Meta Llama 3.2 90B Instruct +model_type: llm +features: + - tool-call +model_properties: + mode: completion + context_size: 128000 +parameter_rules: + - name: temperature + use_template: temperature + default: 0.5 + min: 0.0 + max: 1 + - name: top_p + use_template: top_p + default: 0.9 + min: 0 + max: 1 + - name: max_gen_len + use_template: max_tokens + required: true + default: 512 + min: 1 + max: 2048 +pricing: + input: '0.002' + output: '0.002' + unit: '0.001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/deepseek/llm/deepseek-reasoner.yaml b/ai-provider/model-runtime/model-providers/deepseek/llm/deepseek-reasoner.yaml new file mode 100644 index 00000000..a62bd7e7 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/deepseek/llm/deepseek-reasoner.yaml @@ -0,0 +1,21 @@ +model: deepseek-reasoner +label: + zh_Hans: deepseek-reasoner + en_US: deepseek-reasoner +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 64000 +parameter_rules: + - name: max_tokens + use_template: max_tokens + min: 1 + max: 8192 + default: 4096 +pricing: + input: "4" + output: "16" + unit: "0.000001" + currency: RMB diff --git a/ai-provider/model-runtime/model-providers/fireworks/llm/llama-v3p2-11b-vision-instruct.yaml b/ai-provider/model-runtime/model-providers/fireworks/llm/llama-v3p2-11b-vision-instruct.yaml new file mode 100644 index 00000000..31415a24 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/fireworks/llm/llama-v3p2-11b-vision-instruct.yaml @@ -0,0 +1,46 @@ +model: accounts/fireworks/models/llama-v3p2-11b-vision-instruct +label: + zh_Hans: Llama 3.2 11B Vision Instruct + en_US: Llama 3.2 11B Vision Instruct +model_type: llm +features: + - agent-thought + - tool-call +model_properties: + mode: chat + context_size: 131072 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: top_k + label: + zh_Hans: 取样数量 + en_US: Top k + type: int + help: + zh_Hans: 仅从每个后续标记的前 K 个选项中采样。 + en_US: Only sample from the top K options for each subsequent token. + - name: max_tokens + use_template: max_tokens + - name: context_length_exceeded_behavior + default: None + label: + zh_Hans: 上下文长度超出行为 + en_US: Context Length Exceeded Behavior + help: + zh_Hans: 上下文长度超出行为 + en_US: Context Length Exceeded Behavior + type: string + options: + - None + - truncate + - error + - name: response_format + use_template: response_format +pricing: + input: '0.2' + output: '0.2' + unit: '0.000001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/fireworks/llm/llama-v3p2-1b-instruct.yaml b/ai-provider/model-runtime/model-providers/fireworks/llm/llama-v3p2-1b-instruct.yaml new file mode 100644 index 00000000..c2fd77d2 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/fireworks/llm/llama-v3p2-1b-instruct.yaml @@ -0,0 +1,46 @@ +model: accounts/fireworks/models/llama-v3p2-1b-instruct +label: + zh_Hans: Llama 3.2 1B Instruct + en_US: Llama 3.2 1B Instruct +model_type: llm +features: + - agent-thought + - tool-call +model_properties: + mode: chat + context_size: 131072 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: top_k + label: + zh_Hans: 取样数量 + en_US: Top k + type: int + help: + zh_Hans: 仅从每个后续标记的前 K 个选项中采样。 + en_US: Only sample from the top K options for each subsequent token. + - name: max_tokens + use_template: max_tokens + - name: context_length_exceeded_behavior + default: None + label: + zh_Hans: 上下文长度超出行为 + en_US: Context Length Exceeded Behavior + help: + zh_Hans: 上下文长度超出行为 + en_US: Context Length Exceeded Behavior + type: string + options: + - None + - truncate + - error + - name: response_format + use_template: response_format +pricing: + input: '0.1' + output: '0.1' + unit: '0.000001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/fireworks/llm/llama-v3p2-3b-instruct.yaml b/ai-provider/model-runtime/model-providers/fireworks/llm/llama-v3p2-3b-instruct.yaml new file mode 100644 index 00000000..4b3c459c --- /dev/null +++ b/ai-provider/model-runtime/model-providers/fireworks/llm/llama-v3p2-3b-instruct.yaml @@ -0,0 +1,46 @@ +model: accounts/fireworks/models/llama-v3p2-3b-instruct +label: + zh_Hans: Llama 3.2 3B Instruct + en_US: Llama 3.2 3B Instruct +model_type: llm +features: + - agent-thought + - tool-call +model_properties: + mode: chat + context_size: 131072 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: top_k + label: + zh_Hans: 取样数量 + en_US: Top k + type: int + help: + zh_Hans: 仅从每个后续标记的前 K 个选项中采样。 + en_US: Only sample from the top K options for each subsequent token. + - name: max_tokens + use_template: max_tokens + - name: context_length_exceeded_behavior + default: None + label: + zh_Hans: 上下文长度超出行为 + en_US: Context Length Exceeded Behavior + help: + zh_Hans: 上下文长度超出行为 + en_US: Context Length Exceeded Behavior + type: string + options: + - None + - truncate + - error + - name: response_format + use_template: response_format +pricing: + input: '0.1' + output: '0.1' + unit: '0.000001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/fireworks/llm/llama-v3p2-90b-vision-instruct.yaml b/ai-provider/model-runtime/model-providers/fireworks/llm/llama-v3p2-90b-vision-instruct.yaml new file mode 100644 index 00000000..0aece745 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/fireworks/llm/llama-v3p2-90b-vision-instruct.yaml @@ -0,0 +1,46 @@ +model: accounts/fireworks/models/llama-v3p2-90b-vision-instruct +label: + zh_Hans: Llama 3.2 90B Vision Instruct + en_US: Llama 3.2 90B Vision Instruct +model_type: llm +features: + - agent-thought + - tool-call +model_properties: + mode: chat + context_size: 131072 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: top_k + label: + zh_Hans: 取样数量 + en_US: Top k + type: int + help: + zh_Hans: 仅从每个后续标记的前 K 个选项中采样。 + en_US: Only sample from the top K options for each subsequent token. + - name: max_tokens + use_template: max_tokens + - name: context_length_exceeded_behavior + default: None + label: + zh_Hans: 上下文长度超出行为 + en_US: Context Length Exceeded Behavior + help: + zh_Hans: 上下文长度超出行为 + en_US: Context Length Exceeded Behavior + type: string + options: + - None + - truncate + - error + - name: response_format + use_template: response_format +pricing: + input: '0.9' + output: '0.9' + unit: '0.000001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/fireworks/llm/qwen2p5-72b-instruct.yaml b/ai-provider/model-runtime/model-providers/fireworks/llm/qwen2p5-72b-instruct.yaml new file mode 100644 index 00000000..97283643 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/fireworks/llm/qwen2p5-72b-instruct.yaml @@ -0,0 +1,46 @@ +model: accounts/fireworks/models/qwen2p5-72b-instruct +label: + zh_Hans: Qwen2.5 72B Instruct + en_US: Qwen2.5 72B Instruct +model_type: llm +features: + - agent-thought + - tool-call +model_properties: + mode: chat + context_size: 32768 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: top_k + label: + zh_Hans: 取样数量 + en_US: Top k + type: int + help: + zh_Hans: 仅从每个后续标记的前 K 个选项中采样。 + en_US: Only sample from the top K options for each subsequent token. + - name: max_tokens + use_template: max_tokens + - name: context_length_exceeded_behavior + default: None + label: + zh_Hans: 上下文长度超出行为 + en_US: Context Length Exceeded Behavior + help: + zh_Hans: 上下文长度超出行为 + en_US: Context Length Exceeded Behavior + type: string + options: + - None + - truncate + - error + - name: response_format + use_template: response_format +pricing: + input: '0.9' + output: '0.9' + unit: '0.000001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/google/llm/gemini-1.5-flash-001.yaml b/ai-provider/model-runtime/model-providers/google/llm/gemini-1.5-flash-001.yaml new file mode 100644 index 00000000..86bba215 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/google/llm/gemini-1.5-flash-001.yaml @@ -0,0 +1,41 @@ +model: gemini-1.5-flash-001 +label: + en_US: Gemini 1.5 Flash 001 +model_type: llm +features: + - agent-thought + - vision + - tool-call + - stream-tool-call + - document + - video + - audio +model_properties: + mode: chat + context_size: 1048576 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: top_k + label: + zh_Hans: 取样数量 + en_US: Top k + type: int + help: + zh_Hans: 仅从每个后续标记的前 K 个选项中采样。 + en_US: Only sample from the top K options for each subsequent token. + required: false + - name: max_output_tokens + use_template: max_tokens + default: 8192 + min: 1 + max: 8192 + - name: json_schema + use_template: json_schema +pricing: + input: '0.00' + output: '0.00' + unit: '0.000001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/google/llm/gemini-1.5-flash-002.yaml b/ai-provider/model-runtime/model-providers/google/llm/gemini-1.5-flash-002.yaml new file mode 100644 index 00000000..9ad57a19 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/google/llm/gemini-1.5-flash-002.yaml @@ -0,0 +1,41 @@ +model: gemini-1.5-flash-002 +label: + en_US: Gemini 1.5 Flash 002 +model_type: llm +features: + - agent-thought + - vision + - tool-call + - stream-tool-call + - document + - video + - audio +model_properties: + mode: chat + context_size: 1048576 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: top_k + label: + zh_Hans: 取样数量 + en_US: Top k + type: int + help: + zh_Hans: 仅从每个后续标记的前 K 个选项中采样。 + en_US: Only sample from the top K options for each subsequent token. + required: false + - name: max_output_tokens + use_template: max_tokens + default: 8192 + min: 1 + max: 8192 + - name: json_schema + use_template: json_schema +pricing: + input: '0.00' + output: '0.00' + unit: '0.000001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/google/llm/gemini-1.5-flash-8b-exp-0924.yaml b/ai-provider/model-runtime/model-providers/google/llm/gemini-1.5-flash-8b-exp-0924.yaml new file mode 100644 index 00000000..1193e606 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/google/llm/gemini-1.5-flash-8b-exp-0924.yaml @@ -0,0 +1,41 @@ +model: gemini-1.5-flash-8b-exp-0924 +label: + en_US: Gemini 1.5 Flash 8B 0924 +model_type: llm +features: + - agent-thought + - vision + - tool-call + - stream-tool-call + - document + - video + - audio +model_properties: + mode: chat + context_size: 1048576 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: top_k + label: + zh_Hans: 取样数量 + en_US: Top k + type: int + help: + zh_Hans: 仅从每个后续标记的前 K 个选项中采样。 + en_US: Only sample from the top K options for each subsequent token. + required: false + - name: max_output_tokens + use_template: max_tokens + default: 8192 + min: 1 + max: 8192 + - name: json_schema + use_template: json_schema +pricing: + input: '0.00' + output: '0.00' + unit: '0.000001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/google/llm/gemini-1.5-flash.yaml b/ai-provider/model-runtime/model-providers/google/llm/gemini-1.5-flash.yaml new file mode 100644 index 00000000..ea0c42dd --- /dev/null +++ b/ai-provider/model-runtime/model-providers/google/llm/gemini-1.5-flash.yaml @@ -0,0 +1,41 @@ +model: gemini-1.5-flash +label: + en_US: Gemini 1.5 Flash +model_type: llm +features: + - agent-thought + - vision + - tool-call + - stream-tool-call + - document + - video + - audio +model_properties: + mode: chat + context_size: 1048576 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: top_k + label: + zh_Hans: 取样数量 + en_US: Top k + type: int + help: + zh_Hans: 仅从每个后续标记的前 K 个选项中采样。 + en_US: Only sample from the top K options for each subsequent token. + required: false + - name: max_output_tokens + use_template: max_tokens + default: 8192 + min: 1 + max: 8192 + - name: json_schema + use_template: json_schema +pricing: + input: '0.00' + output: '0.00' + unit: '0.000001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/google/llm/gemini-1.5-pro-001.yaml b/ai-provider/model-runtime/model-providers/google/llm/gemini-1.5-pro-001.yaml new file mode 100644 index 00000000..16df3085 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/google/llm/gemini-1.5-pro-001.yaml @@ -0,0 +1,41 @@ +model: gemini-1.5-pro-001 +label: + en_US: Gemini 1.5 Pro 001 +model_type: llm +features: + - agent-thought + - vision + - tool-call + - stream-tool-call + - document + - video + - audio +model_properties: + mode: chat + context_size: 2097152 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: top_k + label: + zh_Hans: 取样数量 + en_US: Top k + type: int + help: + zh_Hans: 仅从每个后续标记的前 K 个选项中采样。 + en_US: Only sample from the top K options for each subsequent token. + required: false + - name: max_output_tokens + use_template: max_tokens + default: 8192 + min: 1 + max: 8192 + - name: json_schema + use_template: json_schema +pricing: + input: '0.00' + output: '0.00' + unit: '0.000001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/google/llm/gemini-1.5-pro-002.yaml b/ai-provider/model-runtime/model-providers/google/llm/gemini-1.5-pro-002.yaml new file mode 100644 index 00000000..717d9481 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/google/llm/gemini-1.5-pro-002.yaml @@ -0,0 +1,41 @@ +model: gemini-1.5-pro-002 +label: + en_US: Gemini 1.5 Pro 002 +model_type: llm +features: + - agent-thought + - vision + - tool-call + - stream-tool-call + - document + - video + - audio +model_properties: + mode: chat + context_size: 2097152 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: top_k + label: + zh_Hans: 取样数量 + en_US: Top k + type: int + help: + zh_Hans: 仅从每个后续标记的前 K 个选项中采样。 + en_US: Only sample from the top K options for each subsequent token. + required: false + - name: max_output_tokens + use_template: max_tokens + default: 8192 + min: 1 + max: 8192 + - name: json_schema + use_template: json_schema +pricing: + input: '0.00' + output: '0.00' + unit: '0.000001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/google/llm/gemini-1.5-pro.yaml b/ai-provider/model-runtime/model-providers/google/llm/gemini-1.5-pro.yaml new file mode 100644 index 00000000..ae127fb4 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/google/llm/gemini-1.5-pro.yaml @@ -0,0 +1,41 @@ +model: gemini-1.5-pro +label: + en_US: Gemini 1.5 Pro +model_type: llm +features: + - agent-thought + - vision + - tool-call + - stream-tool-call + - document + - video + - audio +model_properties: + mode: chat + context_size: 2097152 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: top_k + label: + zh_Hans: 取样数量 + en_US: Top k + type: int + help: + zh_Hans: 仅从每个后续标记的前 K 个选项中采样。 + en_US: Only sample from the top K options for each subsequent token. + required: false + - name: max_output_tokens + use_template: max_tokens + default: 8192 + min: 1 + max: 8192 + - name: json_schema + use_template: json_schema +pricing: + input: '0.00' + output: '0.00' + unit: '0.000001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/google/llm/gemini-2.0-flash-001.yaml b/ai-provider/model-runtime/model-providers/google/llm/gemini-2.0-flash-001.yaml new file mode 100644 index 00000000..bef7ca5e --- /dev/null +++ b/ai-provider/model-runtime/model-providers/google/llm/gemini-2.0-flash-001.yaml @@ -0,0 +1,41 @@ +model: gemini-2.0-flash-001 +label: + en_US: Gemini 2.0 Flash 001 +model_type: llm +features: + - agent-thought + - vision + - tool-call + - stream-tool-call + - document + - video + - audio +model_properties: + mode: chat + context_size: 1048576 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: top_k + label: + zh_Hans: 取样数量 + en_US: Top k + type: int + help: + zh_Hans: 仅从每个后续标记的前 K 个选项中采样。 + en_US: Only sample from the top K options for each subsequent token. + required: false + - name: max_output_tokens + use_template: max_tokens + default: 8192 + min: 1 + max: 8192 + - name: json_schema + use_template: json_schema +pricing: + input: '0.00' + output: '0.00' + unit: '0.000001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/google/llm/gemini-2.0-flash-exp.yaml b/ai-provider/model-runtime/model-providers/google/llm/gemini-2.0-flash-exp.yaml new file mode 100644 index 00000000..966617e9 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/google/llm/gemini-2.0-flash-exp.yaml @@ -0,0 +1,41 @@ +model: gemini-2.0-flash-exp +label: + en_US: Gemini 2.0 Flash Exp +model_type: llm +features: + - agent-thought + - vision + - tool-call + - stream-tool-call + - document + - video + - audio +model_properties: + mode: chat + context_size: 1048576 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: top_k + label: + zh_Hans: 取样数量 + en_US: Top k + type: int + help: + zh_Hans: 仅从每个后续标记的前 K 个选项中采样。 + en_US: Only sample from the top K options for each subsequent token. + required: false + - name: max_output_tokens + use_template: max_tokens + default: 8192 + min: 1 + max: 8192 + - name: json_schema + use_template: json_schema +pricing: + input: '0.00' + output: '0.00' + unit: '0.000001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/google/llm/gemini-2.0-flash-lite-preview-02-05.yaml b/ai-provider/model-runtime/model-providers/google/llm/gemini-2.0-flash-lite-preview-02-05.yaml new file mode 100644 index 00000000..9c0a1e06 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/google/llm/gemini-2.0-flash-lite-preview-02-05.yaml @@ -0,0 +1,41 @@ +model: gemini-2.0-flash-lite-preview-02-05 +label: + en_US: Gemini 2.0 Flash Lite Preview 0205 +model_type: llm +features: + - agent-thought + - vision + - tool-call + - stream-tool-call + - document + - video + - audio +model_properties: + mode: chat + context_size: 1048576 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: top_k + label: + zh_Hans: 取样数量 + en_US: Top k + type: int + help: + zh_Hans: 仅从每个后续标记的前 K 个选项中采样。 + en_US: Only sample from the top K options for each subsequent token. + required: false + - name: max_output_tokens + use_template: max_tokens + default: 8192 + min: 1 + max: 8192 + - name: json_schema + use_template: json_schema +pricing: + input: '0.00' + output: '0.00' + unit: '0.000001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/google/llm/gemini-2.0-flash-thinking-exp-01-21.yaml b/ai-provider/model-runtime/model-providers/google/llm/gemini-2.0-flash-thinking-exp-01-21.yaml new file mode 100644 index 00000000..71676264 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/google/llm/gemini-2.0-flash-thinking-exp-01-21.yaml @@ -0,0 +1,39 @@ +model: gemini-2.0-flash-thinking-exp-01-21 +label: + en_US: Gemini 2.0 Flash Thinking Exp 01-21 +model_type: llm +features: + - agent-thought + - vision + - document + - video + - audio +model_properties: + mode: chat + context_size: 32767 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: top_k + label: + zh_Hans: 取样数量 + en_US: Top k + type: int + help: + zh_Hans: 仅从每个后续标记的前 K 个选项中采样。 + en_US: Only sample from the top K options for each subsequent token. + required: false + - name: max_output_tokens + use_template: max_tokens + default: 8192 + min: 1 + max: 8192 + - name: json_schema + use_template: json_schema +pricing: + input: '0.00' + output: '0.00' + unit: '0.000001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/google/llm/gemini-2.0-flash-thinking-exp-1219.yaml b/ai-provider/model-runtime/model-providers/google/llm/gemini-2.0-flash-thinking-exp-1219.yaml new file mode 100644 index 00000000..dfcf8fd0 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/google/llm/gemini-2.0-flash-thinking-exp-1219.yaml @@ -0,0 +1,39 @@ +model: gemini-2.0-flash-thinking-exp-1219 +label: + en_US: Gemini 2.0 Flash Thinking Exp 1219 +model_type: llm +features: + - agent-thought + - vision + - document + - video + - audio +model_properties: + mode: chat + context_size: 32767 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: top_k + label: + zh_Hans: 取样数量 + en_US: Top k + type: int + help: + zh_Hans: 仅从每个后续标记的前 K 个选项中采样。 + en_US: Only sample from the top K options for each subsequent token. + required: false + - name: max_output_tokens + use_template: max_tokens + default: 8192 + min: 1 + max: 8192 + - name: json_schema + use_template: json_schema +pricing: + input: '0.00' + output: '0.00' + unit: '0.000001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/google/llm/gemini-2.0-pro-exp-02-05.yaml b/ai-provider/model-runtime/model-providers/google/llm/gemini-2.0-pro-exp-02-05.yaml new file mode 100644 index 00000000..fb571f08 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/google/llm/gemini-2.0-pro-exp-02-05.yaml @@ -0,0 +1,41 @@ +model: gemini-2.0-pro-exp-02-05 +label: + en_US: Gemini 2.0 pro exp 02-05 +model_type: llm +features: + - agent-thought + - vision + - tool-call + - stream-tool-call + - document + - video + - audio +model_properties: + mode: chat + context_size: 1048576 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: top_k + label: + zh_Hans: 取样数量 + en_US: Top k + type: int + help: + zh_Hans: 仅从每个后续标记的前 K 个选项中采样。 + en_US: Only sample from the top K options for each subsequent token. + required: false + - name: max_output_tokens + use_template: max_tokens + default: 8192 + min: 1 + max: 8192 + - name: json_schema + use_template: json_schema +pricing: + input: '0.00' + output: '0.00' + unit: '0.000001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/google/llm/gemini-exp-1114.yaml b/ai-provider/model-runtime/model-providers/google/llm/gemini-exp-1114.yaml new file mode 100644 index 00000000..bd49b476 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/google/llm/gemini-exp-1114.yaml @@ -0,0 +1,41 @@ +model: gemini-exp-1114 +label: + en_US: Gemini exp 1114 +model_type: llm +features: + - agent-thought + - vision + - tool-call + - stream-tool-call + - document + - video + - audio +model_properties: + mode: chat + context_size: 32767 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: top_k + label: + zh_Hans: 取样数量 + en_US: Top k + type: int + help: + zh_Hans: 仅从每个后续标记的前 K 个选项中采样。 + en_US: Only sample from the top K options for each subsequent token. + required: false + - name: max_output_tokens + use_template: max_tokens + default: 8192 + min: 1 + max: 8192 + - name: json_schema + use_template: json_schema +pricing: + input: '0.00' + output: '0.00' + unit: '0.000001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/google/llm/gemini-exp-1121.yaml b/ai-provider/model-runtime/model-providers/google/llm/gemini-exp-1121.yaml new file mode 100644 index 00000000..8e3f218d --- /dev/null +++ b/ai-provider/model-runtime/model-providers/google/llm/gemini-exp-1121.yaml @@ -0,0 +1,41 @@ +model: gemini-exp-1121 +label: + en_US: Gemini exp 1121 +model_type: llm +features: + - agent-thought + - vision + - tool-call + - stream-tool-call + - document + - video + - audio +model_properties: + mode: chat + context_size: 32767 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: top_k + label: + zh_Hans: 取样数量 + en_US: Top k + type: int + help: + zh_Hans: 仅从每个后续标记的前 K 个选项中采样。 + en_US: Only sample from the top K options for each subsequent token. + required: false + - name: max_output_tokens + use_template: max_tokens + default: 8192 + min: 1 + max: 8192 + - name: json_schema + use_template: json_schema +pricing: + input: '0.00' + output: '0.00' + unit: '0.000001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/google/llm/gemini-exp-1206.yaml b/ai-provider/model-runtime/model-providers/google/llm/gemini-exp-1206.yaml new file mode 100644 index 00000000..7a7c361c --- /dev/null +++ b/ai-provider/model-runtime/model-providers/google/llm/gemini-exp-1206.yaml @@ -0,0 +1,41 @@ +model: gemini-exp-1206 +label: + en_US: Gemini exp 1206 +model_type: llm +features: + - agent-thought + - vision + - tool-call + - stream-tool-call + - document + - video + - audio +model_properties: + mode: chat + context_size: 2097152 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: top_k + label: + zh_Hans: 取样数量 + en_US: Top k + type: int + help: + zh_Hans: 仅从每个后续标记的前 K 个选项中采样。 + en_US: Only sample from the top K options for each subsequent token. + required: false + - name: max_output_tokens + use_template: max_tokens + default: 8192 + min: 1 + max: 8192 + - name: json_schema + use_template: json_schema +pricing: + input: '0.00' + output: '0.00' + unit: '0.000001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/google/llm/learnlm-1.5-pro-experimental.yaml b/ai-provider/model-runtime/model-providers/google/llm/learnlm-1.5-pro-experimental.yaml new file mode 100644 index 00000000..f6d90d52 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/google/llm/learnlm-1.5-pro-experimental.yaml @@ -0,0 +1,41 @@ +model: learnlm-1.5-pro-experimental +label: + en_US: LearnLM 1.5 Pro Experimental +model_type: llm +features: + - agent-thought + - vision + - tool-call + - stream-tool-call + - document + - video + - audio +model_properties: + mode: chat + context_size: 32767 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: top_k + label: + zh_Hans: 取样数量 + en_US: Top k + type: int + help: + zh_Hans: 仅从每个后续标记的前 K 个选项中采样。 + en_US: Only sample from the top K options for each subsequent token. + required: false + - name: max_output_tokens + use_template: max_tokens + default: 8192 + min: 1 + max: 8192 + - name: json_schema + use_template: json_schema +pricing: + input: '0.00' + output: '0.00' + unit: '0.000001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/groq/llm/deepseek-r1-distill-llama-70b.yaml b/ai-provider/model-runtime/model-providers/groq/llm/deepseek-r1-distill-llama-70b.yaml new file mode 100644 index 00000000..4947897c --- /dev/null +++ b/ai-provider/model-runtime/model-providers/groq/llm/deepseek-r1-distill-llama-70b.yaml @@ -0,0 +1,36 @@ +model: deepseek-r1-distill-llama-70b +label: + en_US: DeepSeek R1 Distill Llama 70b +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 128000 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: max_tokens + use_template: max_tokens + default: 512 + min: 1 + max: 8192 + - name: response_format + label: + zh_Hans: 回复格式 + en_US: Response Format + type: string + help: + zh_Hans: 指定模型必须输出的格式 + en_US: specifying the format that the model must output + required: false + options: + - text + - json_object +pricing: + input: '3.00' + output: '3.00' + unit: '0.000001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/groq/llm/gemma-7b-it.yaml b/ai-provider/model-runtime/model-providers/groq/llm/gemma-7b-it.yaml new file mode 100644 index 00000000..157baaf3 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/groq/llm/gemma-7b-it.yaml @@ -0,0 +1,37 @@ +model: gemma-7b-it +label: + zh_Hans: Gemma 7B Instruction Tuned + en_US: Gemma 7B Instruction Tuned +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 8192 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: max_tokens + use_template: max_tokens + default: 512 + min: 1 + max: 8192 + - name: response_format + label: + zh_Hans: 回复格式 + en_US: Response Format + type: string + help: + zh_Hans: 指定模型必须输出的格式 + en_US: specifying the format that the model must output + required: false + options: + - text + - json_object +pricing: + input: '0.05' + output: '0.1' + unit: '0.000001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/groq/llm/gemma2-9b-it.yaml b/ai-provider/model-runtime/model-providers/groq/llm/gemma2-9b-it.yaml new file mode 100644 index 00000000..d0294ac6 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/groq/llm/gemma2-9b-it.yaml @@ -0,0 +1,37 @@ +model: gemma2-9b-it +label: + zh_Hans: Gemma 2 9B Instruction Tuned + en_US: Gemma 2 9B Instruction Tuned +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 8192 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: max_tokens + use_template: max_tokens + default: 512 + min: 1 + max: 8192 + - name: response_format + label: + zh_Hans: 回复格式 + en_US: Response Format + type: string + help: + zh_Hans: 指定模型必须输出的格式 + en_US: specifying the format that the model must output + required: false + options: + - text + - json_object +pricing: + input: '0.05' + output: '0.1' + unit: '0.000001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/groq/llm/llama-3.2-11b-text-preview.yaml b/ai-provider/model-runtime/model-providers/groq/llm/llama-3.2-11b-text-preview.yaml new file mode 100644 index 00000000..e6eadeb0 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/groq/llm/llama-3.2-11b-text-preview.yaml @@ -0,0 +1,38 @@ +model: llama-3.2-11b-text-preview +deprecated: true +label: + zh_Hans: Llama 3.2 11B Text (Preview) + en_US: Llama 3.2 11B Text (Preview) +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 131072 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: max_tokens + use_template: max_tokens + default: 512 + min: 1 + max: 8192 + - name: response_format + label: + zh_Hans: 回复格式 + en_US: Response Format + type: string + help: + zh_Hans: 指定模型必须输出的格式 + en_US: specifying the format that the model must output + required: false + options: + - text + - json_object +pricing: + input: '0.05' + output: '0.1' + unit: '0.000001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/groq/llm/llama-3.2-11b-vision-preview.yaml b/ai-provider/model-runtime/model-providers/groq/llm/llama-3.2-11b-vision-preview.yaml new file mode 100644 index 00000000..241a7bed --- /dev/null +++ b/ai-provider/model-runtime/model-providers/groq/llm/llama-3.2-11b-vision-preview.yaml @@ -0,0 +1,38 @@ +model: llama-3.2-11b-vision-preview +label: + zh_Hans: Llama 3.2 11B Vision (Preview) + en_US: Llama 3.2 11B Vision (Preview) +model_type: llm +features: + - agent-thought + - vision +model_properties: + mode: chat + context_size: 131072 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: max_tokens + use_template: max_tokens + default: 512 + min: 1 + max: 8192 + - name: response_format + label: + zh_Hans: 回复格式 + en_US: Response Format + type: string + help: + zh_Hans: 指定模型必须输出的格式 + en_US: specifying the format that the model must output + required: false + options: + - text + - json_object +pricing: + input: '0.05' + output: '0.1' + unit: '0.000001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/groq/llm/llama-3.2-1b-preview.yaml b/ai-provider/model-runtime/model-providers/groq/llm/llama-3.2-1b-preview.yaml new file mode 100644 index 00000000..a6087d34 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/groq/llm/llama-3.2-1b-preview.yaml @@ -0,0 +1,37 @@ +model: llama-3.2-1b-preview +label: + zh_Hans: Llama 3.2 1B Text (Preview) + en_US: Llama 3.2 1B Text (Preview) +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 131072 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: max_tokens + use_template: max_tokens + default: 512 + min: 1 + max: 8192 + - name: response_format + label: + zh_Hans: 回复格式 + en_US: Response Format + type: string + help: + zh_Hans: 指定模型必须输出的格式 + en_US: specifying the format that the model must output + required: false + options: + - text + - json_object +pricing: + input: '0.05' + output: '0.1' + unit: '0.000001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/groq/llm/llama-3.2-3b-preview.yaml b/ai-provider/model-runtime/model-providers/groq/llm/llama-3.2-3b-preview.yaml new file mode 100644 index 00000000..93a8127e --- /dev/null +++ b/ai-provider/model-runtime/model-providers/groq/llm/llama-3.2-3b-preview.yaml @@ -0,0 +1,37 @@ +model: llama-3.2-3b-preview +label: + zh_Hans: Llama 3.2 3B Text (Preview) + en_US: Llama 3.2 3B Text (Preview) +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 131072 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: max_tokens + use_template: max_tokens + default: 512 + min: 1 + max: 8192 + - name: response_format + label: + zh_Hans: 回复格式 + en_US: Response Format + type: string + help: + zh_Hans: 指定模型必须输出的格式 + en_US: specifying the format that the model must output + required: false + options: + - text + - json_object +pricing: + input: '0.05' + output: '0.1' + unit: '0.000001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/groq/llm/llama-3.2-90b-text-preview.yaml b/ai-provider/model-runtime/model-providers/groq/llm/llama-3.2-90b-text-preview.yaml new file mode 100644 index 00000000..f9361bff --- /dev/null +++ b/ai-provider/model-runtime/model-providers/groq/llm/llama-3.2-90b-text-preview.yaml @@ -0,0 +1,38 @@ +model: llama-3.2-90b-text-preview +depraceted: true +label: + zh_Hans: Llama 3.2 90B Text (Preview) + en_US: Llama 3.2 90B Text (Preview) +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 131072 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: max_tokens + use_template: max_tokens + default: 512 + min: 1 + max: 8192 + - name: response_format + label: + zh_Hans: 回复格式 + en_US: Response Format + type: string + help: + zh_Hans: 指定模型必须输出的格式 + en_US: specifying the format that the model must output + required: false + options: + - text + - json_object +pricing: + input: '0.05' + output: '0.1' + unit: '0.000001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/groq/llm/llama-3.2-90b-vision-preview.yaml b/ai-provider/model-runtime/model-providers/groq/llm/llama-3.2-90b-vision-preview.yaml new file mode 100644 index 00000000..145b4579 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/groq/llm/llama-3.2-90b-vision-preview.yaml @@ -0,0 +1,38 @@ +model: llama-3.2-90b-vision-preview +label: + zh_Hans: Llama 3.2 90B Vision (Preview) + en_US: Llama 3.2 90B Vision (Preview) +model_type: llm +features: + - agent-thought + - vision +model_properties: + mode: chat + context_size: 131072 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: max_tokens + use_template: max_tokens + default: 512 + min: 1 + max: 8192 + - name: response_format + label: + zh_Hans: 回复格式 + en_US: Response Format + type: string + help: + zh_Hans: 指定模型必须输出的格式 + en_US: specifying the format that the model must output + required: false + options: + - text + - json_object +pricing: + input: '0.05' + output: '0.1' + unit: '0.000001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/groq/llm/llama-3.3-70b-specdec.yaml b/ai-provider/model-runtime/model-providers/groq/llm/llama-3.3-70b-specdec.yaml new file mode 100644 index 00000000..916dfee3 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/groq/llm/llama-3.3-70b-specdec.yaml @@ -0,0 +1,38 @@ +model: llama-3.3-70b-specdec +label: + zh_Hans: Llama 3.3 70B Specdec + en_US: Llama 3.3 70B Specdec +model_type: llm +features: + - agent-thought + - multi-tool-call +model_properties: + mode: chat + context_size: 131072 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: max_tokens + use_template: max_tokens + default: 1024 + min: 1 + max: 32768 + - name: response_format + label: + zh_Hans: 回复格式 + en_US: Response Format + type: string + help: + zh_Hans: 指定模型必须输出的格式 + en_US: specifying the format that the model must output + required: false + options: + - text + - json_object +pricing: + input: "0.05" + output: "0.1" + unit: "0.000001" + currency: USD diff --git a/ai-provider/model-runtime/model-providers/groq/llm/llama-3.3-70b-versatile.yaml b/ai-provider/model-runtime/model-providers/groq/llm/llama-3.3-70b-versatile.yaml new file mode 100644 index 00000000..a5de4e75 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/groq/llm/llama-3.3-70b-versatile.yaml @@ -0,0 +1,38 @@ +model: llama-3.3-70b-versatile +label: + zh_Hans: Llama 3.3 70B Versatile + en_US: Llama 3.3 70B Versatile +model_type: llm +features: + - agent-thought + - multi-tool-call +model_properties: + mode: chat + context_size: 131072 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: max_tokens + use_template: max_tokens + default: 1024 + min: 1 + max: 32768 + - name: response_format + label: + zh_Hans: 回复格式 + en_US: Response Format + type: string + help: + zh_Hans: 指定模型必须输出的格式 + en_US: specifying the format that the model must output + required: false + options: + - text + - json_object +pricing: + input: "0.05" + output: "0.1" + unit: "0.000001" + currency: USD diff --git a/ai-provider/model-runtime/model-providers/groq/llm/llama-guard-3-8b.yaml b/ai-provider/model-runtime/model-providers/groq/llm/llama-guard-3-8b.yaml new file mode 100644 index 00000000..bd8e5d2a --- /dev/null +++ b/ai-provider/model-runtime/model-providers/groq/llm/llama-guard-3-8b.yaml @@ -0,0 +1,37 @@ +model: llama-guard-3-8b +label: + zh_Hans: Llama-Guard-3-8B + en_US: Llama-Guard-3-8B +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 8192 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: max_tokens + use_template: max_tokens + default: 512 + min: 1 + max: 8192 + - name: response_format + label: + zh_Hans: 回复格式 + en_US: Response Format + type: string + help: + zh_Hans: 指定模型必须输出的格式 + en_US: specifying the format that the model must output + required: false + options: + - text + - json_object +pricing: + input: '0.20' + output: '0.20' + unit: '0.000001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/groq/llm/llama3-groq-70b-8192-tool-use-preview.yaml b/ai-provider/model-runtime/model-providers/groq/llm/llama3-groq-70b-8192-tool-use-preview.yaml new file mode 100644 index 00000000..61c83c98 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/groq/llm/llama3-groq-70b-8192-tool-use-preview.yaml @@ -0,0 +1,38 @@ +model: llama3-groq-70b-8192-tool-use-preview +label: + zh_Hans: Llama3-groq-70b-8192-tool-use (PREVIEW) + en_US: Llama3-groq-70b-8192-tool-use (PREVIEW) +model_type: llm +features: + - agent-thought + - multi-tool-call +model_properties: + mode: chat + context_size: 8192 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: max_tokens + use_template: max_tokens + default: 512 + min: 1 + max: 8192 + - name: response_format + label: + zh_Hans: 回复格式 + en_US: Response Format + type: string + help: + zh_Hans: 指定模型必须输出的格式 + en_US: specifying the format that the model must output + required: false + options: + - text + - json_object +pricing: + input: '0.05' + output: '0.08' + unit: '0.000001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/hunyuan/llm/hunyuan-functioncall.yaml b/ai-provider/model-runtime/model-providers/hunyuan/llm/hunyuan-functioncall.yaml new file mode 100644 index 00000000..eb865691 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/hunyuan/llm/hunyuan-functioncall.yaml @@ -0,0 +1,38 @@ +model: hunyuan-functioncall +label: + zh_Hans: hunyuan-functioncall + en_US: hunyuan-functioncall +model_type: llm +features: + - agent-thought + - tool-call + - multi-tool-call + - stream-tool-call +model_properties: + mode: chat + context_size: 32000 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: max_tokens + use_template: max_tokens + default: 1024 + min: 1 + max: 32000 + - name: enable_enhance + label: + zh_Hans: 功能增强 + en_US: Enable Enhancement + type: boolean + help: + zh_Hans: 功能增强(如搜索)开关,关闭时将直接由主模型生成回复内容,可以降低响应时延(对于流式输出时的首字时延尤为明显)。但在少数场景里,回复效果可能会下降。 + en_US: Allow the model to perform external search to enhance the generation results. + required: false + default: true +pricing: + input: '0.004' + output: '0.008' + unit: '0.001' + currency: RMB diff --git a/ai-provider/model-runtime/model-providers/hunyuan/llm/hunyuan-large-longcontext.yaml b/ai-provider/model-runtime/model-providers/hunyuan/llm/hunyuan-large-longcontext.yaml new file mode 100644 index 00000000..c39724a3 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/hunyuan/llm/hunyuan-large-longcontext.yaml @@ -0,0 +1,38 @@ +model: hunyuan-large-longcontext +label: + zh_Hans: hunyuan-large-longcontext + en_US: hunyuan-large-longcontext +model_type: llm +features: + - agent-thought + - tool-call + - multi-tool-call + - stream-tool-call +model_properties: + mode: chat + context_size: 134000 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: max_tokens + use_template: max_tokens + default: 1024 + min: 1 + max: 134000 + - name: enable_enhance + label: + zh_Hans: 功能增强 + en_US: Enable Enhancement + type: boolean + help: + zh_Hans: 功能增强(如搜索)开关,关闭时将直接由主模型生成回复内容,可以降低响应时延(对于流式输出时的首字时延尤为明显)。但在少数场景里,回复效果可能会下降。 + en_US: Allow the model to perform external search to enhance the generation results. + required: false + default: true +pricing: + input: '0.006' + output: '0.018' + unit: '0.001' + currency: RMB diff --git a/ai-provider/model-runtime/model-providers/hunyuan/llm/hunyuan-large-role.yaml b/ai-provider/model-runtime/model-providers/hunyuan/llm/hunyuan-large-role.yaml new file mode 100644 index 00000000..1b40b35e --- /dev/null +++ b/ai-provider/model-runtime/model-providers/hunyuan/llm/hunyuan-large-role.yaml @@ -0,0 +1,38 @@ +model: hunyuan-large-role +label: + zh_Hans: hunyuan-large-role + en_US: hunyuan-large-role +model_type: llm +features: + - agent-thought + - tool-call + - multi-tool-call + - stream-tool-call +model_properties: + mode: chat + context_size: 32000 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: max_tokens + use_template: max_tokens + default: 1024 + min: 1 + max: 32000 + - name: enable_enhance + label: + zh_Hans: 功能增强 + en_US: Enable Enhancement + type: boolean + help: + zh_Hans: 功能增强(如搜索)开关,关闭时将直接由主模型生成回复内容,可以降低响应时延(对于流式输出时的首字时延尤为明显)。但在少数场景里,回复效果可能会下降。 + en_US: Allow the model to perform external search to enhance the generation results. + required: false + default: true +pricing: + input: '0.004' + output: '0.008' + unit: '0.001' + currency: RMB diff --git a/ai-provider/model-runtime/model-providers/hunyuan/llm/hunyuan-large.yaml b/ai-provider/model-runtime/model-providers/hunyuan/llm/hunyuan-large.yaml new file mode 100644 index 00000000..87dc104e --- /dev/null +++ b/ai-provider/model-runtime/model-providers/hunyuan/llm/hunyuan-large.yaml @@ -0,0 +1,38 @@ +model: hunyuan-large +label: + zh_Hans: hunyuan-large + en_US: hunyuan-large +model_type: llm +features: + - agent-thought + - tool-call + - multi-tool-call + - stream-tool-call +model_properties: + mode: chat + context_size: 32000 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: max_tokens + use_template: max_tokens + default: 1024 + min: 1 + max: 32000 + - name: enable_enhance + label: + zh_Hans: 功能增强 + en_US: Enable Enhancement + type: boolean + help: + zh_Hans: 功能增强(如搜索)开关,关闭时将直接由主模型生成回复内容,可以降低响应时延(对于流式输出时的首字时延尤为明显)。但在少数场景里,回复效果可能会下降。 + en_US: Allow the model to perform external search to enhance the generation results. + required: false + default: true +pricing: + input: '0.004' + output: '0.012' + unit: '0.001' + currency: RMB diff --git a/ai-provider/model-runtime/model-providers/hunyuan/llm/hunyuan-role.yaml b/ai-provider/model-runtime/model-providers/hunyuan/llm/hunyuan-role.yaml new file mode 100644 index 00000000..0f6d2c5c --- /dev/null +++ b/ai-provider/model-runtime/model-providers/hunyuan/llm/hunyuan-role.yaml @@ -0,0 +1,38 @@ +model: hunyuan-role +label: + zh_Hans: hunyuan-role + en_US: hunyuan-role +model_type: llm +features: + - agent-thought + - tool-call + - multi-tool-call + - stream-tool-call +model_properties: + mode: chat + context_size: 32000 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: max_tokens + use_template: max_tokens + default: 1024 + min: 1 + max: 32000 + - name: enable_enhance + label: + zh_Hans: 功能增强 + en_US: Enable Enhancement + type: boolean + help: + zh_Hans: 功能增强(如搜索)开关,关闭时将直接由主模型生成回复内容,可以降低响应时延(对于流式输出时的首字时延尤为明显)。但在少数场景里,回复效果可能会下降。 + en_US: Allow the model to perform external search to enhance the generation results. + required: false + default: true +pricing: + input: '0.004' + output: '0.008' + unit: '0.001' + currency: RMB diff --git a/ai-provider/model-runtime/model-providers/hunyuan/llm/hunyuan-turbo-latest.yaml b/ai-provider/model-runtime/model-providers/hunyuan/llm/hunyuan-turbo-latest.yaml new file mode 100644 index 00000000..adfa3a4c --- /dev/null +++ b/ai-provider/model-runtime/model-providers/hunyuan/llm/hunyuan-turbo-latest.yaml @@ -0,0 +1,38 @@ +model: hunyuan-turbo-latest +label: + zh_Hans: hunyuan-turbo-latest + en_US: hunyuan-turbo-latest +model_type: llm +features: + - agent-thought + - tool-call + - multi-tool-call + - stream-tool-call +model_properties: + mode: chat + context_size: 32000 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: max_tokens + use_template: max_tokens + default: 1024 + min: 1 + max: 32000 + - name: enable_enhance + label: + zh_Hans: 功能增强 + en_US: Enable Enhancement + type: boolean + help: + zh_Hans: 功能增强(如搜索)开关,关闭时将直接由主模型生成回复内容,可以降低响应时延(对于流式输出时的首字时延尤为明显)。但在少数场景里,回复效果可能会下降。 + en_US: Allow the model to perform external search to enhance the generation results. + required: false + default: true +pricing: + input: '0.015' + output: '0.05' + unit: '0.001' + currency: RMB diff --git a/ai-provider/model-runtime/model-providers/hunyuan/llm/hunyuan-turbo-vision.yaml b/ai-provider/model-runtime/model-providers/hunyuan/llm/hunyuan-turbo-vision.yaml new file mode 100644 index 00000000..5b9b17cc --- /dev/null +++ b/ai-provider/model-runtime/model-providers/hunyuan/llm/hunyuan-turbo-vision.yaml @@ -0,0 +1,39 @@ +model: hunyuan-turbo-vision +label: + zh_Hans: hunyuan-turbo-vision + en_US: hunyuan-turbo-vision +model_type: llm +features: + - agent-thought + - tool-call + - multi-tool-call + - stream-tool-call + - vision +model_properties: + mode: chat + context_size: 8000 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: max_tokens + use_template: max_tokens + default: 1024 + min: 1 + max: 8000 + - name: enable_enhance + label: + zh_Hans: 功能增强 + en_US: Enable Enhancement + type: boolean + help: + zh_Hans: 功能增强(如搜索)开关,关闭时将直接由主模型生成回复内容,可以降低响应时延(对于流式输出时的首字时延尤为明显)。但在少数场景里,回复效果可能会下降。 + en_US: Allow the model to perform external search to enhance the generation results. + required: false + default: true +pricing: + input: '0.08' + output: '0.08' + unit: '0.001' + currency: RMB diff --git a/ai-provider/model-runtime/model-providers/minimax/llm/abab6.5t-chat.yaml b/ai-provider/model-runtime/model-providers/minimax/llm/abab6.5t-chat.yaml new file mode 100644 index 00000000..cc8a3aa0 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/minimax/llm/abab6.5t-chat.yaml @@ -0,0 +1,44 @@ +model: abab6.5t-chat +label: + en_US: Abab6.5t-Chat +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 8192 +parameter_rules: + - name: temperature + use_template: temperature + min: 0.01 + max: 1 + default: 0.9 + - name: top_p + use_template: top_p + min: 0.01 + max: 1 + default: 0.95 + - name: max_tokens + use_template: max_tokens + required: true + default: 3072 + min: 1 + max: 8192 + - name: mask_sensitive_info + type: boolean + default: true + label: + zh_Hans: 隐私保护 + en_US: Moderate + help: + zh_Hans: 对输出中易涉及隐私问题的文本信息进行打码,目前包括但不限于邮箱、域名、链接、证件号、家庭住址等,默认true,即开启打码 + en_US: Mask the sensitive info of the generated content, such as email/domain/link/address/phone/id.. + - name: presence_penalty + use_template: presence_penalty + - name: frequency_penalty + use_template: frequency_penalty +pricing: + input: '0.005' + output: '0.005' + unit: '0.001' + currency: RMB diff --git a/ai-provider/model-runtime/model-providers/minimax/llm/abab7-chat-preview.yaml b/ai-provider/model-runtime/model-providers/minimax/llm/abab7-chat-preview.yaml new file mode 100644 index 00000000..bb9899d5 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/minimax/llm/abab7-chat-preview.yaml @@ -0,0 +1,46 @@ +model: abab7-chat-preview +label: + en_US: Abab7-chat-preview +model_type: llm +features: + - agent-thought + - tool-call + - stream-tool-call +model_properties: + mode: chat + context_size: 245760 +parameter_rules: + - name: temperature + use_template: temperature + min: 0.01 + max: 1 + default: 0.1 + - name: top_p + use_template: top_p + min: 0.01 + max: 1 + default: 0.95 + - name: max_tokens + use_template: max_tokens + required: true + default: 2048 + min: 1 + max: 245760 + - name: mask_sensitive_info + type: boolean + default: true + label: + zh_Hans: 隐私保护 + en_US: Moderate + help: + zh_Hans: 对输出中易涉及隐私问题的文本信息进行打码,目前包括但不限于邮箱、域名、链接、证件号、家庭住址等,默认true,即开启打码 + en_US: Mask the sensitive info of the generated content, such as email/domain/link/address/phone/id.. + - name: presence_penalty + use_template: presence_penalty + - name: frequency_penalty + use_template: frequency_penalty +pricing: + input: '0.1' + output: '0.1' + unit: '0.001' + currency: RMB diff --git a/ai-provider/model-runtime/model-providers/minimax/llm/minimax-text-01.yaml b/ai-provider/model-runtime/model-providers/minimax/llm/minimax-text-01.yaml new file mode 100644 index 00000000..8f31aa87 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/minimax/llm/minimax-text-01.yaml @@ -0,0 +1,46 @@ +model: minimax-text-01 +label: + en_US: Minimax-Text-01 +model_type: llm +features: + - agent-thought + - tool-call + - stream-tool-call +model_properties: + mode: chat + context_size: 1000192 +parameter_rules: + - name: temperature + use_template: temperature + min: 0.01 + max: 1 + default: 0.1 + - name: top_p + use_template: top_p + min: 0.01 + max: 1 + default: 0.95 + - name: max_tokens + use_template: max_tokens + required: true + default: 2048 + min: 1 + max: 1000192 + - name: mask_sensitive_info + type: boolean + default: true + label: + zh_Hans: 隐私保护 + en_US: Moderate + help: + zh_Hans: 对输出中易涉及隐私问题的文本信息进行打码,目前包括但不限于邮箱、域名、链接、证件号、家庭住址等,默认true,即开启打码 + en_US: Mask the sensitive info of the generated content, such as email/domain/link/address/phone/id.. + - name: presence_penalty + use_template: presence_penalty + - name: frequency_penalty + use_template: frequency_penalty +pricing: + input: '0.001' + output: '0.008' + unit: '0.001' + currency: RMB diff --git a/ai-provider/model-runtime/model-providers/mistralai/llm/pixtral-large-2411.yaml b/ai-provider/model-runtime/model-providers/mistralai/llm/pixtral-large-2411.yaml new file mode 100644 index 00000000..606c9aa3 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/mistralai/llm/pixtral-large-2411.yaml @@ -0,0 +1,52 @@ +model: pixtral-large-2411 +label: + zh_Hans: pixtral-large-2411 + en_US: pixtral-large-2411 +model_type: llm +features: + - agent-thought + - vision +model_properties: + mode: chat + context_size: 128000 +parameter_rules: + - name: temperature + use_template: temperature + default: 0.7 + min: 0 + max: 1 + - name: top_p + use_template: top_p + default: 1 + min: 0 + max: 1 + - name: max_tokens + use_template: max_tokens + default: 8192 + min: 1 + max: 8192 + - name: safe_prompt + default: false + type: boolean + help: + en_US: Whether to inject a safety prompt before all conversations. + zh_Hans: 是否开启提示词审查 + label: + en_US: SafePrompt + zh_Hans: 提示词审查 + - name: random_seed + type: int + help: + en_US: The seed to use for random sampling. If set, different calls will generate deterministic results. + zh_Hans: 当开启随机数种子以后,你可以通过指定一个固定的种子来使得回答结果更加稳定 + label: + en_US: RandomSeed + zh_Hans: 随机数种子 + default: 0 + min: 0 + max: 2147483647 +pricing: + input: '0.008' + output: '0.024' + unit: '0.001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/mistralai/llm/pixtral-large-latest.yaml b/ai-provider/model-runtime/model-providers/mistralai/llm/pixtral-large-latest.yaml new file mode 100644 index 00000000..4f0ed5ae --- /dev/null +++ b/ai-provider/model-runtime/model-providers/mistralai/llm/pixtral-large-latest.yaml @@ -0,0 +1,52 @@ +model: pixtral-large-latest +label: + zh_Hans: pixtral-large-latest + en_US: pixtral-large-latest +model_type: llm +features: + - agent-thought + - vision +model_properties: + mode: chat + context_size: 128000 +parameter_rules: + - name: temperature + use_template: temperature + default: 0.7 + min: 0 + max: 1 + - name: top_p + use_template: top_p + default: 1 + min: 0 + max: 1 + - name: max_tokens + use_template: max_tokens + default: 8192 + min: 1 + max: 8192 + - name: safe_prompt + default: false + type: boolean + help: + en_US: Whether to inject a safety prompt before all conversations. + zh_Hans: 是否开启提示词审查 + label: + en_US: SafePrompt + zh_Hans: 提示词审查 + - name: random_seed + type: int + help: + en_US: The seed to use for random sampling. If set, different calls will generate deterministic results. + zh_Hans: 当开启随机数种子以后,你可以通过指定一个固定的种子来使得回答结果更加稳定 + label: + en_US: RandomSeed + zh_Hans: 随机数种子 + default: 0 + min: 0 + max: 2147483647 +pricing: + input: '0.008' + output: '0.024' + unit: '0.001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/novita/llm/L3-8B-Stheno-v3.2.yaml b/ai-provider/model-runtime/model-providers/novita/llm/L3-8B-Stheno-v3.2.yaml new file mode 100644 index 00000000..34e03747 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/novita/llm/L3-8B-Stheno-v3.2.yaml @@ -0,0 +1,41 @@ +model: Sao10K/L3-8B-Stheno-v3.2 +label: + zh_Hans: L3 8B Stheno V3.2 + en_US: L3 8B Stheno V3.2 +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 8192 +parameter_rules: + - name: temperature + use_template: temperature + min: 0 + max: 2 + default: 1 + - name: top_p + use_template: top_p + min: 0 + max: 1 + default: 1 + - name: max_tokens + use_template: max_tokens + min: 1 + max: 2048 + default: 512 + - name: frequency_penalty + use_template: frequency_penalty + min: -2 + max: 2 + default: 0 + - name: presence_penalty + use_template: presence_penalty + min: -2 + max: 2 + default: 0 +pricing: + input: '0.0005' + output: '0.0005' + unit: '0.0001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/novita/llm/deepseek-r1.yaml b/ai-provider/model-runtime/model-providers/novita/llm/deepseek-r1.yaml new file mode 100644 index 00000000..ce80aa82 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/novita/llm/deepseek-r1.yaml @@ -0,0 +1,41 @@ +model: deepseek/deepseek-r1 +label: + zh_Hans: DeepSeek R1 + en_US: DeepSeek R1 +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 64000 +parameter_rules: + - name: temperature + use_template: temperature + min: 0 + max: 2 + default: 1 + - name: top_p + use_template: top_p + min: 0 + max: 1 + default: 1 + - name: max_tokens + use_template: max_tokens + min: 1 + max: 2048 + default: 512 + - name: frequency_penalty + use_template: frequency_penalty + min: -2 + max: 2 + default: 0 + - name: presence_penalty + use_template: presence_penalty + min: -2 + max: 2 + default: 0 +pricing: + input: '0.04' + output: '0.04' + unit: '0.0001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/novita/llm/deepseek_v3.yaml b/ai-provider/model-runtime/model-providers/novita/llm/deepseek_v3.yaml new file mode 100644 index 00000000..261a0a67 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/novita/llm/deepseek_v3.yaml @@ -0,0 +1,41 @@ +model: deepseek/deepseek_v3 +label: + zh_Hans: DeepSeek V3 + en_US: DeepSeek V3 +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 64000 +parameter_rules: + - name: temperature + use_template: temperature + min: 0 + max: 2 + default: 1 + - name: top_p + use_template: top_p + min: 0 + max: 1 + default: 1 + - name: max_tokens + use_template: max_tokens + min: 1 + max: 2048 + default: 512 + - name: frequency_penalty + use_template: frequency_penalty + min: -2 + max: 2 + default: 0 + - name: presence_penalty + use_template: presence_penalty + min: -2 + max: 2 + default: 0 +pricing: + input: '0.0089' + output: '0.0089' + unit: '0.0001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/novita/llm/l3-8b-lunaris.yaml b/ai-provider/model-runtime/model-providers/novita/llm/l3-8b-lunaris.yaml new file mode 100644 index 00000000..d22ecaed --- /dev/null +++ b/ai-provider/model-runtime/model-providers/novita/llm/l3-8b-lunaris.yaml @@ -0,0 +1,41 @@ +model: sao10k/l3-8b-lunaris +label: + zh_Hans: "Sao10k L3 8B Lunaris" + en_US: "Sao10k L3 8B Lunaris" +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 8192 +parameter_rules: + - name: temperature + use_template: temperature + min: 0 + max: 2 + default: 1 + - name: top_p + use_template: top_p + min: 0 + max: 1 + default: 1 + - name: max_tokens + use_template: max_tokens + min: 1 + max: 2048 + default: 512 + - name: frequency_penalty + use_template: frequency_penalty + min: -2 + max: 2 + default: 0 + - name: presence_penalty + use_template: presence_penalty + min: -2 + max: 2 + default: 0 +pricing: + input: '0.0005' + output: '0.0005' + unit: '0.0001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/novita/llm/l31-70b-euryale-v2.2.yaml b/ai-provider/model-runtime/model-providers/novita/llm/l31-70b-euryale-v2.2.yaml new file mode 100644 index 00000000..19cfe31a --- /dev/null +++ b/ai-provider/model-runtime/model-providers/novita/llm/l31-70b-euryale-v2.2.yaml @@ -0,0 +1,41 @@ +model: sao10k/l31-70b-euryale-v2.2 +label: + zh_Hans: L31 70B Euryale V2.2 + en_US: L31 70B Euryale V2.2 +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 16000 +parameter_rules: + - name: temperature + use_template: temperature + min: 0 + max: 2 + default: 1 + - name: top_p + use_template: top_p + min: 0 + max: 1 + default: 1 + - name: max_tokens + use_template: max_tokens + min: 1 + max: 2048 + default: 512 + - name: frequency_penalty + use_template: frequency_penalty + min: -2 + max: 2 + default: 0 + - name: presence_penalty + use_template: presence_penalty + min: -2 + max: 2 + default: 0 +pricing: + input: '0.0148' + output: '0.0148' + unit: '0.0001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/novita/llm/llama-3.1-8b-instruct-bf16.yaml b/ai-provider/model-runtime/model-providers/novita/llm/llama-3.1-8b-instruct-bf16.yaml new file mode 100644 index 00000000..b172084f --- /dev/null +++ b/ai-provider/model-runtime/model-providers/novita/llm/llama-3.1-8b-instruct-bf16.yaml @@ -0,0 +1,41 @@ +model: meta-llama/llama-3.1-8b-instruct-bf16 +label: + zh_Hans: Llama 3.1 8B Instruct BF16 + en_US: Llama 3.1 8B Instruct BF16 +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 8192 +parameter_rules: + - name: temperature + use_template: temperature + min: 0 + max: 2 + default: 1 + - name: top_p + use_template: top_p + min: 0 + max: 1 + default: 1 + - name: max_tokens + use_template: max_tokens + min: 1 + max: 2048 + default: 512 + - name: frequency_penalty + use_template: frequency_penalty + min: -2 + max: 2 + default: 0 + - name: presence_penalty + use_template: presence_penalty + min: -2 + max: 2 + default: 0 +pricing: + input: '0.0006' + output: '0.0006' + unit: '0.0001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/novita/llm/llama-3.1-8b-instruct-max.yaml b/ai-provider/model-runtime/model-providers/novita/llm/llama-3.1-8b-instruct-max.yaml new file mode 100644 index 00000000..1ddd8e2d --- /dev/null +++ b/ai-provider/model-runtime/model-providers/novita/llm/llama-3.1-8b-instruct-max.yaml @@ -0,0 +1,41 @@ +model: meta-llama/llama-3.1-8b-instruct-max +label: + zh_Hans: "Llama3.1 8B Instruct Max\t" + en_US: "Llama3.1 8B Instruct Max\t" +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 16384 +parameter_rules: + - name: temperature + use_template: temperature + min: 0 + max: 2 + default: 1 + - name: top_p + use_template: top_p + min: 0 + max: 1 + default: 1 + - name: max_tokens + use_template: max_tokens + min: 1 + max: 2048 + default: 512 + - name: frequency_penalty + use_template: frequency_penalty + min: -2 + max: 2 + default: 0 + - name: presence_penalty + use_template: presence_penalty + min: -2 + max: 2 + default: 0 +pricing: + input: '0.0005' + output: '0.0005' + unit: '0.0001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/novita/llm/llama-3.2-11b-vision-instruct.yaml b/ai-provider/model-runtime/model-providers/novita/llm/llama-3.2-11b-vision-instruct.yaml new file mode 100644 index 00000000..f33fa6e5 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/novita/llm/llama-3.2-11b-vision-instruct.yaml @@ -0,0 +1,41 @@ +model: meta-llama/llama-3.2-11b-vision-instruct +label: + zh_Hans: "Llama 3.2 11B Vision Instruct\t" + en_US: "Llama 3.2 11B Vision Instruct\t" +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 32768 +parameter_rules: + - name: temperature + use_template: temperature + min: 0 + max: 2 + default: 1 + - name: top_p + use_template: top_p + min: 0 + max: 1 + default: 1 + - name: max_tokens + use_template: max_tokens + min: 1 + max: 2048 + default: 512 + - name: frequency_penalty + use_template: frequency_penalty + min: -2 + max: 2 + default: 0 + - name: presence_penalty + use_template: presence_penalty + min: -2 + max: 2 + default: 0 +pricing: + input: '0.0006' + output: '0.0006' + unit: '0.0001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/novita/llm/llama-3.2-1b-instruct.yaml b/ai-provider/model-runtime/model-providers/novita/llm/llama-3.2-1b-instruct.yaml new file mode 100644 index 00000000..f09750f8 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/novita/llm/llama-3.2-1b-instruct.yaml @@ -0,0 +1,41 @@ +model: meta-llama/llama-3.2-1b-instruct +label: + zh_Hans: "Llama 3.2 1B Instruct\t" + en_US: "Llama 3.2 1B Instruct\t" +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 131000 +parameter_rules: + - name: temperature + use_template: temperature + min: 0 + max: 2 + default: 1 + - name: top_p + use_template: top_p + min: 0 + max: 1 + default: 1 + - name: max_tokens + use_template: max_tokens + min: 1 + max: 2048 + default: 512 + - name: frequency_penalty + use_template: frequency_penalty + min: -2 + max: 2 + default: 0 + - name: presence_penalty + use_template: presence_penalty + min: -2 + max: 2 + default: 0 +pricing: + input: '0.0002' + output: '0.0002' + unit: '0.0001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/novita/llm/llama-3.2-3b-instruct.yaml b/ai-provider/model-runtime/model-providers/novita/llm/llama-3.2-3b-instruct.yaml new file mode 100644 index 00000000..7a19ef47 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/novita/llm/llama-3.2-3b-instruct.yaml @@ -0,0 +1,41 @@ +model: meta-llama/llama-3.2-3b-instruct +label: + zh_Hans: Llama 3.2 3B Instruct + en_US: Llama 3.2 3B Instruct +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 32768 +parameter_rules: + - name: temperature + use_template: temperature + min: 0 + max: 2 + default: 1 + - name: top_p + use_template: top_p + min: 0 + max: 1 + default: 1 + - name: max_tokens + use_template: max_tokens + min: 1 + max: 2048 + default: 512 + - name: frequency_penalty + use_template: frequency_penalty + min: -2 + max: 2 + default: 0 + - name: presence_penalty + use_template: presence_penalty + min: -2 + max: 2 + default: 0 +pricing: + input: '0.0003' + output: '0.0005' + unit: '0.0001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/novita/llm/llama-3.3-70b-instruct.yaml b/ai-provider/model-runtime/model-providers/novita/llm/llama-3.3-70b-instruct.yaml new file mode 100644 index 00000000..efdc2cc9 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/novita/llm/llama-3.3-70b-instruct.yaml @@ -0,0 +1,41 @@ +model: meta-llama/llama-3.3-70b-instruct +label: + zh_Hans: Llama 3.3 70B Instruct + en_US: Llama 3.3 70B Instruct +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 131072 +parameter_rules: + - name: temperature + use_template: temperature + min: 0 + max: 2 + default: 1 + - name: top_p + use_template: top_p + min: 0 + max: 1 + default: 1 + - name: max_tokens + use_template: max_tokens + min: 1 + max: 2048 + default: 512 + - name: frequency_penalty + use_template: frequency_penalty + min: -2 + max: 2 + default: 0 + - name: presence_penalty + use_template: presence_penalty + min: -2 + max: 2 + default: 0 +pricing: + input: '0.0039' + output: '0.0039' + unit: '0.0001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/novita/llm/llm.py b/ai-provider/model-runtime/model-providers/novita/llm/llm.py deleted file mode 100644 index 23367ed1..00000000 --- a/ai-provider/model-runtime/model-providers/novita/llm/llm.py +++ /dev/null @@ -1,69 +0,0 @@ -from collections.abc import Generator -from typing import Optional, Union - -from core.model_runtime.entities.llm_entities import LLMResult -from core.model_runtime.entities.message_entities import PromptMessage, PromptMessageTool -from core.model_runtime.entities.model_entities import AIModelEntity -from core.model_runtime.model_providers.openai_api_compatible.llm.llm import OAIAPICompatLargeLanguageModel - - -class NovitaLargeLanguageModel(OAIAPICompatLargeLanguageModel): - def _update_endpoint_url(self, credentials: dict): - credentials["endpoint_url"] = "https://api.novita.ai/v3/openai" - credentials["extra_headers"] = {"X-Novita-Source": "dify.ai"} - return credentials - - def _invoke( - self, - model: str, - credentials: dict, - prompt_messages: list[PromptMessage], - model_parameters: dict, - tools: Optional[list[PromptMessageTool]] = None, - stop: Optional[list[str]] = None, - stream: bool = True, - user: Optional[str] = None, - ) -> Union[LLMResult, Generator]: - cred_with_endpoint = self._update_endpoint_url(credentials=credentials) - return super()._invoke(model, cred_with_endpoint, prompt_messages, model_parameters, tools, stop, stream, user) - - def validate_credentials(self, model: str, credentials: dict) -> None: - cred_with_endpoint = self._update_endpoint_url(credentials=credentials) - self._add_custom_parameters(credentials, model) - return super().validate_credentials(model, cred_with_endpoint) - - @classmethod - def _add_custom_parameters(cls, credentials: dict, model: str) -> None: - credentials["mode"] = "chat" - - def _generate( - self, - model: str, - credentials: dict, - prompt_messages: list[PromptMessage], - model_parameters: dict, - tools: Optional[list[PromptMessageTool]] = None, - stop: Optional[list[str]] = None, - stream: bool = True, - user: Optional[str] = None, - ) -> Union[LLMResult, Generator]: - cred_with_endpoint = self._update_endpoint_url(credentials=credentials) - return super()._generate( - model, cred_with_endpoint, prompt_messages, model_parameters, tools, stop, stream, user - ) - - def get_customizable_model_schema(self, model: str, credentials: dict) -> AIModelEntity: - cred_with_endpoint = self._update_endpoint_url(credentials=credentials) - - return super().get_customizable_model_schema(model, cred_with_endpoint) - - def get_num_tokens( - self, - model: str, - credentials: dict, - prompt_messages: list[PromptMessage], - tools: Optional[list[PromptMessageTool]] = None, - ) -> int: - cred_with_endpoint = self._update_endpoint_url(credentials=credentials) - - return super().get_num_tokens(model, cred_with_endpoint, prompt_messages, tools) diff --git a/ai-provider/model-runtime/model-providers/novita/llm/mistral-nemo.yaml b/ai-provider/model-runtime/model-providers/novita/llm/mistral-nemo.yaml new file mode 100644 index 00000000..6f116738 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/novita/llm/mistral-nemo.yaml @@ -0,0 +1,41 @@ +model: mistralai/mistral-nemo +label: + zh_Hans: Mistral Nemo + en_US: Mistral Nemo +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 131072 +parameter_rules: + - name: temperature + use_template: temperature + min: 0 + max: 2 + default: 1 + - name: top_p + use_template: top_p + min: 0 + max: 1 + default: 1 + - name: max_tokens + use_template: max_tokens + min: 1 + max: 2048 + default: 512 + - name: frequency_penalty + use_template: frequency_penalty + min: -2 + max: 2 + default: 0 + - name: presence_penalty + use_template: presence_penalty + min: -2 + max: 2 + default: 0 +pricing: + input: '0.0017' + output: '0.0017' + unit: '0.0001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/novita/llm/openchat-7b.yaml b/ai-provider/model-runtime/model-providers/novita/llm/openchat-7b.yaml new file mode 100644 index 00000000..b21ea301 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/novita/llm/openchat-7b.yaml @@ -0,0 +1,41 @@ +model: openchat/openchat-7b +label: + zh_Hans: OpenChat 7B + en_US: OpenChat 7B +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 4096 +parameter_rules: + - name: temperature + use_template: temperature + min: 0 + max: 2 + default: 1 + - name: top_p + use_template: top_p + min: 0 + max: 1 + default: 1 + - name: max_tokens + use_template: max_tokens + min: 1 + max: 2048 + default: 512 + - name: frequency_penalty + use_template: frequency_penalty + min: -2 + max: 2 + default: 0 + - name: presence_penalty + use_template: presence_penalty + min: -2 + max: 2 + default: 0 +pricing: + input: '0.0006' + output: '0.0006' + unit: '0.0001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/novita/llm/qwen-2-72b-instruct.yaml b/ai-provider/model-runtime/model-providers/novita/llm/qwen-2-72b-instruct.yaml new file mode 100644 index 00000000..069f9096 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/novita/llm/qwen-2-72b-instruct.yaml @@ -0,0 +1,41 @@ +model: qwen/qwen-2-72b-instruct +label: + zh_Hans: Qwen2 72B Instruct + en_US: Qwen2 72B Instruct +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 32768 +parameter_rules: + - name: temperature + use_template: temperature + min: 0 + max: 2 + default: 1 + - name: top_p + use_template: top_p + min: 0 + max: 1 + default: 1 + - name: max_tokens + use_template: max_tokens + min: 1 + max: 2048 + default: 512 + - name: frequency_penalty + use_template: frequency_penalty + min: -2 + max: 2 + default: 0 + - name: presence_penalty + use_template: presence_penalty + min: -2 + max: 2 + default: 0 +pricing: + input: '0.0034' + output: '0.0039' + unit: '0.0001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/novita/llm/qwen-2-7b-instruct.yaml b/ai-provider/model-runtime/model-providers/novita/llm/qwen-2-7b-instruct.yaml new file mode 100644 index 00000000..afc627f1 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/novita/llm/qwen-2-7b-instruct.yaml @@ -0,0 +1,41 @@ +model: qwen/qwen-2-7b-instruct +label: + zh_Hans: Qwen 2 7B Instruct + en_US: Qwen 2 7B Instruct +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 32768 +parameter_rules: + - name: temperature + use_template: temperature + min: 0 + max: 2 + default: 1 + - name: top_p + use_template: top_p + min: 0 + max: 1 + default: 1 + - name: max_tokens + use_template: max_tokens + min: 1 + max: 2048 + default: 512 + - name: frequency_penalty + use_template: frequency_penalty + min: -2 + max: 2 + default: 0 + - name: presence_penalty + use_template: presence_penalty + min: -2 + max: 2 + default: 0 +pricing: + input: '0.00054' + output: '0.00054' + unit: '0.0001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/novita/llm/qwen-2-vl-72b-instruct.yaml b/ai-provider/model-runtime/model-providers/novita/llm/qwen-2-vl-72b-instruct.yaml new file mode 100644 index 00000000..06bdf0c8 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/novita/llm/qwen-2-vl-72b-instruct.yaml @@ -0,0 +1,41 @@ +model: qwen/qwen-2-vl-72b-instruct +label: + zh_Hans: Qwen 2 VL 72B Instruct + en_US: Qwen 2 VL 72B Instruct +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 32768 +parameter_rules: + - name: temperature + use_template: temperature + min: 0 + max: 2 + default: 1 + - name: top_p + use_template: top_p + min: 0 + max: 1 + default: 1 + - name: max_tokens + use_template: max_tokens + min: 1 + max: 2048 + default: 512 + - name: frequency_penalty + use_template: frequency_penalty + min: -2 + max: 2 + default: 0 + - name: presence_penalty + use_template: presence_penalty + min: -2 + max: 2 + default: 0 +pricing: + input: '0.0045' + output: '0.0045' + unit: '0.0001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/novita/llm/qwen-2.5-72b-instruct.yaml b/ai-provider/model-runtime/model-providers/novita/llm/qwen-2.5-72b-instruct.yaml new file mode 100644 index 00000000..97f5af35 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/novita/llm/qwen-2.5-72b-instruct.yaml @@ -0,0 +1,41 @@ +model: qwen/qwen-2.5-72b-instruct +label: + zh_Hans: Qwen 2.5 72B Instruct + en_US: Qwen 2.5 72B Instruct +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 32000 +parameter_rules: + - name: temperature + use_template: temperature + min: 0 + max: 2 + default: 1 + - name: top_p + use_template: top_p + min: 0 + max: 1 + default: 1 + - name: max_tokens + use_template: max_tokens + min: 1 + max: 2048 + default: 512 + - name: frequency_penalty + use_template: frequency_penalty + min: -2 + max: 2 + default: 0 + - name: presence_penalty + use_template: presence_penalty + min: -2 + max: 2 + default: 0 +pricing: + input: '0.0038' + output: '0.004' + unit: '0.0001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/nvidia/llm/deepseek-r1.yaml b/ai-provider/model-runtime/model-providers/nvidia/llm/deepseek-r1.yaml new file mode 100644 index 00000000..159941ec --- /dev/null +++ b/ai-provider/model-runtime/model-providers/nvidia/llm/deepseek-r1.yaml @@ -0,0 +1,35 @@ +model: deepseek-ai/deepseek-r1 +label: + en_US: deepseek-ai/deepseek-r1 +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 128000 +parameter_rules: + - name: temperature + use_template: temperature + min: 0 + max: 1 + default: 0.5 + - name: top_p + use_template: top_p + min: 0 + max: 1 + default: 1 + - name: max_tokens + use_template: max_tokens + min: 1 + max: 1024 + default: 1024 + - name: frequency_penalty + use_template: frequency_penalty + min: -2 + max: 2 + default: 0 + - name: presence_penalty + use_template: presence_penalty + min: -2 + max: 2 + default: 0 diff --git a/ai-provider/model-runtime/model-providers/openAI/llm/gpt-4o-2024-11-20.yaml b/ai-provider/model-runtime/model-providers/openAI/llm/gpt-4o-2024-11-20.yaml new file mode 100644 index 00000000..2c7c1c6e --- /dev/null +++ b/ai-provider/model-runtime/model-providers/openAI/llm/gpt-4o-2024-11-20.yaml @@ -0,0 +1,47 @@ +model: gpt-4o-2024-11-20 +label: + zh_Hans: gpt-4o-2024-11-20 + en_US: gpt-4o-2024-11-20 +model_type: llm +features: + - multi-tool-call + - agent-thought + - stream-tool-call + - vision +model_properties: + mode: chat + context_size: 128000 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: presence_penalty + use_template: presence_penalty + - name: frequency_penalty + use_template: frequency_penalty + - name: max_tokens + use_template: max_tokens + default: 16384 + min: 1 + max: 16384 + - name: response_format + label: + zh_Hans: 回复格式 + en_US: Response Format + type: string + help: + zh_Hans: 指定模型必须输出的格式 + en_US: specifying the format that the model must output + required: false + options: + - text + - json_object + - json_schema + - name: json_schema + use_template: json_schema +pricing: + input: '2.50' + output: '10.00' + unit: '0.000001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/openAI/llm/gpt-4o-audio-preview.yaml b/ai-provider/model-runtime/model-providers/openAI/llm/gpt-4o-audio-preview.yaml new file mode 100644 index 00000000..e707acc5 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/openAI/llm/gpt-4o-audio-preview.yaml @@ -0,0 +1,44 @@ +model: gpt-4o-audio-preview +label: + zh_Hans: gpt-4o-audio-preview + en_US: gpt-4o-audio-preview +model_type: llm +features: + - multi-tool-call + - agent-thought + - stream-tool-call + - audio +model_properties: + mode: chat + context_size: 128000 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: presence_penalty + use_template: presence_penalty + - name: frequency_penalty + use_template: frequency_penalty + - name: max_tokens + use_template: max_tokens + default: 16384 + min: 1 + max: 16384 + - name: response_format + label: + zh_Hans: 回复格式 + en_US: Response Format + type: string + help: + zh_Hans: 指定模型必须输出的格式 + en_US: specifying the format that the model must output + required: false + options: + - text + - json_object +pricing: + input: '5.00' + output: '15.00' + unit: '0.000001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/openAI/llm/o1-2024-12-17.yaml b/ai-provider/model-runtime/model-providers/openAI/llm/o1-2024-12-17.yaml new file mode 100644 index 00000000..643258a2 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/openAI/llm/o1-2024-12-17.yaml @@ -0,0 +1,48 @@ +model: o1-2024-12-17 +label: + en_US: o1-2024-12-17 +model_type: llm +features: + - multi-tool-call + - agent-thought + - stream-tool-call + - vision +model_properties: + mode: chat + context_size: 200000 +parameter_rules: + - name: max_tokens + use_template: max_tokens + default: 50000 + min: 1 + max: 50000 + - name: reasoning_effort + label: + zh_Hans: 推理工作 + en_US: reasoning_effort + type: string + help: + zh_Hans: 限制推理模型的推理工作 + en_US: constrains effort on reasoning for reasoning models + required: false + options: + - low + - medium + - high + - name: response_format + label: + zh_Hans: 回复格式 + en_US: response_format + type: string + help: + zh_Hans: 指定模型必须输出的格式 + en_US: specifying the format that the model must output + required: false + options: + - text + - json_object +pricing: + input: '15.00' + output: '60.00' + unit: '0.000001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/openAI/llm/o1.yaml b/ai-provider/model-runtime/model-providers/openAI/llm/o1.yaml new file mode 100644 index 00000000..53d5f719 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/openAI/llm/o1.yaml @@ -0,0 +1,49 @@ +model: o1 +label: + zh_Hans: o1 + en_US: o1 +model_type: llm +features: + - multi-tool-call + - agent-thought + - stream-tool-call + - vision +model_properties: + mode: chat + context_size: 200000 +parameter_rules: + - name: max_tokens + use_template: max_tokens + default: 50000 + min: 1 + max: 50000 + - name: reasoning_effort + label: + zh_Hans: 推理工作 + en_US: reasoning_effort + type: string + help: + zh_Hans: 限制推理模型的推理工作 + en_US: constrains effort on reasoning for reasoning models + required: false + options: + - low + - medium + - high + - name: response_format + label: + zh_Hans: 回复格式 + en_US: response_format + type: string + help: + zh_Hans: 指定模型必须输出的格式 + en_US: specifying the format that the model must output + required: false + options: + - text + - json_object +pricing: + input: '15.00' + output: '60.00' + unit: '0.000001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/openAI/llm/o3-mini-2025-01-31.yaml b/ai-provider/model-runtime/model-providers/openAI/llm/o3-mini-2025-01-31.yaml new file mode 100644 index 00000000..3f717bf0 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/openAI/llm/o3-mini-2025-01-31.yaml @@ -0,0 +1,46 @@ +model: o3-mini-2025-01-31 +label: + zh_Hans: o3-mini-2025-01-31 + en_US: o3-mini-2025-01-31 +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 200000 +parameter_rules: + - name: max_tokens + use_template: max_tokens + default: 100000 + min: 1 + max: 100000 + - name: reasoning_effort + label: + zh_Hans: 推理工作 + en_US: reasoning_effort + type: string + help: + zh_Hans: 限制推理模型的推理工作 + en_US: constrains effort on reasoning for reasoning models + required: false + options: + - low + - medium + - high + - name: response_format + label: + zh_Hans: 回复格式 + en_US: response_format + type: string + help: + zh_Hans: 指定模型必须输出的格式 + en_US: specifying the format that the model must output + required: false + options: + - text + - json_object +pricing: + input: '1.10' + output: '4.40' + unit: '0.000001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/openAI/llm/o3-mini.yaml b/ai-provider/model-runtime/model-providers/openAI/llm/o3-mini.yaml new file mode 100644 index 00000000..755fc005 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/openAI/llm/o3-mini.yaml @@ -0,0 +1,46 @@ +model: o3-mini +label: + zh_Hans: o3-mini + en_US: o3-mini +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 200000 +parameter_rules: + - name: max_tokens + use_template: max_tokens + default: 100000 + min: 1 + max: 100000 + - name: reasoning_effort + label: + zh_Hans: 推理工作 + en_US: reasoning_effort + type: string + help: + zh_Hans: 限制推理模型的推理工作 + en_US: constrains effort on reasoning for reasoning models + required: false + options: + - low + - medium + - high + - name: response_format + label: + zh_Hans: 回复格式 + en_US: response_format + type: string + help: + zh_Hans: 指定模型必须输出的格式 + en_US: specifying the format that the model must output + required: false + options: + - text + - json_object +pricing: + input: '1.10' + output: '4.40' + unit: '0.000001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/openrouter/llm/claude-3-5-haiku.yaml b/ai-provider/model-runtime/model-providers/openrouter/llm/claude-3-5-haiku.yaml new file mode 100644 index 00000000..de45093a --- /dev/null +++ b/ai-provider/model-runtime/model-providers/openrouter/llm/claude-3-5-haiku.yaml @@ -0,0 +1,38 @@ +model: anthropic/claude-3-5-haiku +label: + en_US: claude-3-5-haiku +model_type: llm +features: + - agent-thought + - tool-call + - stream-tool-call +model_properties: + mode: chat + context_size: 200000 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: top_k + label: + zh_Hans: 取样数量 + en_US: Top k + type: int + help: + zh_Hans: 仅从每个后续标记的前 K 个选项中采样。 + en_US: Only sample from the top K options for each subsequent token. + required: false + - name: max_tokens + use_template: max_tokens + required: true + default: 8192 + min: 1 + max: 8192 + - name: response_format + use_template: response_format +pricing: + input: "1" + output: "5" + unit: "0.000001" + currency: USD diff --git a/ai-provider/model-runtime/model-providers/openrouter/llm/deepseek-r1.yaml b/ai-provider/model-runtime/model-providers/openrouter/llm/deepseek-r1.yaml new file mode 100644 index 00000000..488b7dd4 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/openrouter/llm/deepseek-r1.yaml @@ -0,0 +1,59 @@ +model: deepseek/deepseek-r1 +label: + en_US: deepseek-r1 +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 163840 +parameter_rules: + - name: temperature + use_template: temperature + type: float + default: 1 + min: 0.0 + max: 2.0 + help: + zh_Hans: 控制生成结果的多样性和随机性。数值越小,越严谨;数值越大,越发散。 + en_US: Control the diversity and randomness of generated results. The smaller the value, the more rigorous it is; the larger the value, the more divergent it is. + - name: max_tokens + use_template: max_tokens + type: int + default: 4096 + min: 1 + max: 4096 + help: + zh_Hans: 指定生成结果长度的上限。如果生成结果截断,可以调大该参数。 + en_US: Specifies the upper limit on the length of generated results. If the generated results are truncated, you can increase this parameter. + - name: top_p + use_template: top_p + type: float + default: 1 + min: 0.01 + max: 1.00 + help: + zh_Hans: 控制生成结果的随机性。数值越小,随机性越弱;数值越大,随机性越强。一般而言,top_p 和 temperature 两个参数选择一个进行调整即可。 + en_US: Control the randomness of generated results. The smaller the value, the weaker the randomness; the larger the value, the stronger the randomness. Generally speaking, you can adjust one of the two parameters top_p and temperature. + - name: top_k + label: + zh_Hans: 取样数量 + en_US: Top k + type: int + help: + zh_Hans: 仅从每个后续标记的前 K 个选项中采样。 + en_US: Only sample from the top K options for each subsequent token. + required: false + - name: frequency_penalty + use_template: frequency_penalty + default: 0 + min: -2.0 + max: 2.0 + help: + zh_Hans: 介于 -2.0 和 2.0 之间的数字。如果该值为正,那么新 token 会根据其在已有文本中的出现频率受到相应的惩罚,降低模型重复相同内容的可能性。 + en_US: A number between -2.0 and 2.0. If the value is positive, new tokens are penalized based on their frequency of occurrence in existing text, reducing the likelihood that the model will repeat the same content. +pricing: + input: "3" + output: "8" + unit: "0.000001" + currency: USD diff --git a/ai-provider/model-runtime/model-providers/openrouter/llm/llama-3.2-11b-vision-instruct.yaml b/ai-provider/model-runtime/model-providers/openrouter/llm/llama-3.2-11b-vision-instruct.yaml new file mode 100644 index 00000000..6ad2c26c --- /dev/null +++ b/ai-provider/model-runtime/model-providers/openrouter/llm/llama-3.2-11b-vision-instruct.yaml @@ -0,0 +1,46 @@ +model: meta-llama/llama-3.2-11b-vision-instruct +label: + zh_Hans: llama-3.2-11b-vision-instruct + en_US: llama-3.2-11b-vision-instruct +model_type: llm +features: + - agent-thought + - vision +model_properties: + mode: chat + context_size: 131072 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: top_k + label: + zh_Hans: 取样数量 + en_US: Top k + type: int + help: + zh_Hans: 仅从每个后续标记的前 K 个选项中采样。 + en_US: Only sample from the top K options for each subsequent token. + - name: max_tokens + use_template: max_tokens + - name: context_length_exceeded_behavior + default: None + label: + zh_Hans: 上下文长度超出行为 + en_US: Context Length Exceeded Behavior + help: + zh_Hans: 上下文长度超出行为 + en_US: Context Length Exceeded Behavior + type: string + options: + - None + - truncate + - error + - name: response_format + use_template: response_format +pricing: + input: '0.055' + output: '0.055' + unit: '0.000001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/openrouter/llm/llama-3.2-1b-instruct.yaml b/ai-provider/model-runtime/model-providers/openrouter/llm/llama-3.2-1b-instruct.yaml new file mode 100644 index 00000000..657ef168 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/openrouter/llm/llama-3.2-1b-instruct.yaml @@ -0,0 +1,45 @@ +model: meta-llama/llama-3.2-1b-instruct +label: + zh_Hans: llama-3.2-1b-instruct + en_US: llama-3.2-1b-instruct +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 131072 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: top_k + label: + zh_Hans: 取样数量 + en_US: Top k + type: int + help: + zh_Hans: 仅从每个后续标记的前 K 个选项中采样。 + en_US: Only sample from the top K options for each subsequent token. + - name: max_tokens + use_template: max_tokens + - name: context_length_exceeded_behavior + default: None + label: + zh_Hans: 上下文长度超出行为 + en_US: Context Length Exceeded Behavior + help: + zh_Hans: 上下文长度超出行为 + en_US: Context Length Exceeded Behavior + type: string + options: + - None + - truncate + - error + - name: response_format + use_template: response_format +pricing: + input: '0.01' + output: '0.02' + unit: '0.000001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/openrouter/llm/llama-3.2-3b-instruct.yaml b/ai-provider/model-runtime/model-providers/openrouter/llm/llama-3.2-3b-instruct.yaml new file mode 100644 index 00000000..7f6e24e5 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/openrouter/llm/llama-3.2-3b-instruct.yaml @@ -0,0 +1,45 @@ +model: meta-llama/llama-3.2-3b-instruct +label: + zh_Hans: llama-3.2-3b-instruct + en_US: llama-3.2-3b-instruct +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 131072 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: top_k + label: + zh_Hans: 取样数量 + en_US: Top k + type: int + help: + zh_Hans: 仅从每个后续标记的前 K 个选项中采样。 + en_US: Only sample from the top K options for each subsequent token. + - name: max_tokens + use_template: max_tokens + - name: context_length_exceeded_behavior + default: None + label: + zh_Hans: 上下文长度超出行为 + en_US: Context Length Exceeded Behavior + help: + zh_Hans: 上下文长度超出行为 + en_US: Context Length Exceeded Behavior + type: string + options: + - None + - truncate + - error + - name: response_format + use_template: response_format +pricing: + input: '0.03' + output: '0.05' + unit: '0.000001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/openrouter/llm/llama-3.2-90b-vision-instruct.yaml b/ai-provider/model-runtime/model-providers/openrouter/llm/llama-3.2-90b-vision-instruct.yaml new file mode 100644 index 00000000..c264db0f --- /dev/null +++ b/ai-provider/model-runtime/model-providers/openrouter/llm/llama-3.2-90b-vision-instruct.yaml @@ -0,0 +1,46 @@ +model: meta-llama/llama-3.2-90b-vision-instruct +label: + zh_Hans: llama-3.2-90b-vision-instruct + en_US: llama-3.2-90b-vision-instruct +model_type: llm +features: + - agent-thought + - vision +model_properties: + mode: chat + context_size: 131072 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: top_k + label: + zh_Hans: 取样数量 + en_US: Top k + type: int + help: + zh_Hans: 仅从每个后续标记的前 K 个选项中采样。 + en_US: Only sample from the top K options for each subsequent token. + - name: max_tokens + use_template: max_tokens + - name: context_length_exceeded_behavior + default: None + label: + zh_Hans: 上下文长度超出行为 + en_US: Context Length Exceeded Behavior + help: + zh_Hans: 上下文长度超出行为 + en_US: Context Length Exceeded Behavior + type: string + options: + - None + - truncate + - error + - name: response_format + use_template: response_format +pricing: + input: '0.35' + output: '0.4' + unit: '0.000001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/openrouter/llm/o3-mini-2025-01-31.yaml b/ai-provider/model-runtime/model-providers/openrouter/llm/o3-mini-2025-01-31.yaml new file mode 100644 index 00000000..0cb38c11 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/openrouter/llm/o3-mini-2025-01-31.yaml @@ -0,0 +1,49 @@ +model: openai/o3-mini-2025-01-31 +label: + en_US: o3-mini-2025-01-31 +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 200000 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: top_k + label: + zh_Hans: 取样数量 + en_US: Top k + type: int + help: + zh_Hans: 仅从每个后续标记的前 K 个选项中采样。 + en_US: Only sample from the top K options for each subsequent token. + required: false + - name: presence_penalty + use_template: presence_penalty + - name: frequency_penalty + use_template: frequency_penalty + - name: max_tokens + use_template: max_tokens + default: 512 + min: 1 + max: 100000 + - name: response_format + label: + zh_Hans: 回复格式 + en_US: response_format + type: string + help: + zh_Hans: 指定模型必须输出的格式 + en_US: specifying the format that the model must output + required: false + options: + - text + - json_object +pricing: + input: "1.10" + output: "4.40" + unit: "0.000001" + currency: USD diff --git a/ai-provider/model-runtime/model-providers/openrouter/llm/o3-mini.yaml b/ai-provider/model-runtime/model-providers/openrouter/llm/o3-mini.yaml new file mode 100644 index 00000000..6fe38bd3 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/openrouter/llm/o3-mini.yaml @@ -0,0 +1,49 @@ +model: openai/o3-mini +label: + en_US: o3-mini +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 200000 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: top_k + label: + zh_Hans: 取样数量 + en_US: Top k + type: int + help: + zh_Hans: 仅从每个后续标记的前 K 个选项中采样。 + en_US: Only sample from the top K options for each subsequent token. + required: false + - name: presence_penalty + use_template: presence_penalty + - name: frequency_penalty + use_template: frequency_penalty + - name: max_tokens + use_template: max_tokens + default: 512 + min: 1 + max: 100000 + - name: response_format + label: + zh_Hans: 回复格式 + en_US: response_format + type: string + help: + zh_Hans: 指定模型必须输出的格式 + en_US: specifying the format that the model must output + required: false + options: + - text + - json_object +pricing: + input: "1.10" + output: "4.40" + unit: "0.000001" + currency: USD diff --git a/ai-provider/model-runtime/model-providers/openrouter/llm/qwen2.5-72b-instruct.yaml b/ai-provider/model-runtime/model-providers/openrouter/llm/qwen2.5-72b-instruct.yaml new file mode 100644 index 00000000..5392b111 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/openrouter/llm/qwen2.5-72b-instruct.yaml @@ -0,0 +1,39 @@ +model: qwen/qwen-2.5-72b-instruct +label: + en_US: qwen-2.5-72b-instruct +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 131072 +parameter_rules: + - name: temperature + use_template: temperature + - name: max_tokens + use_template: max_tokens + type: int + default: 512 + min: 1 + max: 8192 + help: + zh_Hans: 指定生成结果长度的上限。如果生成结果截断,可以调大该参数。 + en_US: Specifies the upper limit on the length of generated results. If the generated results are truncated, you can increase this parameter. + - name: top_p + use_template: top_p + - name: top_k + label: + zh_Hans: 取样数量 + en_US: Top k + type: int + help: + zh_Hans: 仅从每个后续标记的前 K 个选项中采样。 + en_US: Only sample from the top K options for each subsequent token. + required: false + - name: frequency_penalty + use_template: frequency_penalty +pricing: + input: "0.35" + output: "0.4" + unit: "0.000001" + currency: USD diff --git a/ai-provider/model-runtime/model-providers/siliconflow/llm/Internvl2-26b.yaml b/ai-provider/model-runtime/model-providers/siliconflow/llm/Internvl2-26b.yaml new file mode 100644 index 00000000..f7b03e12 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/siliconflow/llm/Internvl2-26b.yaml @@ -0,0 +1,84 @@ +model: OpenGVLab/InternVL2-26B +label: + en_US: OpenGVLab/InternVL2-26B +model_type: llm +features: + - vision +model_properties: + mode: chat + context_size: 32768 +parameter_rules: + - name: temperature + use_template: temperature + type: float + default: 0.3 + min: 0.0 + max: 2.0 + help: + zh_Hans: 用于控制随机性和多样性的程度。具体来说,temperature值控制了生成文本时对每个候选词的概率分布进行平滑的程度。较高的temperature值会降低概率分布的峰值,使得更多的低概率词被选择,生成结果更加多样化;而较低的temperature值则会增强概率分布的峰值,使得高概率词更容易被选择,生成结果更加确定。 + en_US: Used to control the degree of randomness and diversity. Specifically, the temperature value controls the degree to which the probability distribution of each candidate word is smoothed when generating text. A higher temperature value will reduce the peak value of the probability distribution, allowing more low-probability words to be selected, and the generated results will be more diverse; while a lower temperature value will enhance the peak value of the probability distribution, making it easier for high-probability words to be selected. , the generated results are more certain. + - name: max_tokens + use_template: max_tokens + type: int + default: 2000 + min: 1 + max: 2000 + help: + zh_Hans: 用于指定模型在生成内容时token的最大数量,它定义了生成的上限,但不保证每次都会生成到这个数量。 + en_US: It is used to specify the maximum number of tokens when the model generates content. It defines the upper limit of generation, but does not guarantee that this number will be generated every time. + - name: top_p + use_template: top_p + type: float + default: 0.8 + min: 0.1 + max: 0.9 + help: + zh_Hans: 生成过程中核采样方法概率阈值,例如,取值为0.8时,仅保留概率加起来大于等于0.8的最可能token的最小集合作为候选集。取值范围为(0,1.0),取值越大,生成的随机性越高;取值越低,生成的确定性越高。 + en_US: The probability threshold of the kernel sampling method during the generation process. For example, when the value is 0.8, only the smallest set of the most likely tokens with a sum of probabilities greater than or equal to 0.8 is retained as the candidate set. The value range is (0,1.0). The larger the value, the higher the randomness generated; the lower the value, the higher the certainty generated. + - name: top_k + type: int + min: 0 + max: 99 + label: + zh_Hans: 取样数量 + en_US: Top k + help: + zh_Hans: 生成时,采样候选集的大小。例如,取值为50时,仅将单次生成中得分最高的50个token组成随机采样的候选集。取值越大,生成的随机性越高;取值越小,生成的确定性越高。 + en_US: The size of the sample candidate set when generated. For example, when the value is 50, only the 50 highest-scoring tokens in a single generation form a randomly sampled candidate set. The larger the value, the higher the randomness generated; the smaller the value, the higher the certainty generated. + - name: seed + required: false + type: int + default: 1234 + label: + zh_Hans: 随机种子 + en_US: Random seed + help: + zh_Hans: 生成时使用的随机数种子,用户控制模型生成内容的随机性。支持无符号64位整数,默认值为 1234。在使用seed时,模型将尽可能生成相同或相似的结果,但目前不保证每次生成的结果完全相同。 + en_US: The random number seed used when generating, the user controls the randomness of the content generated by the model. Supports unsigned 64-bit integers, default value is 1234. When using seed, the model will try its best to generate the same or similar results, but there is currently no guarantee that the results will be exactly the same every time. + - name: repetition_penalty + required: false + type: float + default: 1.1 + label: + zh_Hans: 重复惩罚 + en_US: Repetition penalty + help: + zh_Hans: 用于控制模型生成时的重复度。提高repetition_penalty时可以降低模型生成的重复度。1.0表示不做惩罚。 + en_US: Used to control the repeatability when generating models. Increasing repetition_penalty can reduce the duplication of model generation. 1.0 means no punishment. + - name: response_format + label: + zh_Hans: 回复格式 + en_US: Response Format + type: string + help: + zh_Hans: 指定模型必须输出的格式 + en_US: specifying the format that the model must output + required: false + options: + - text + - json_object +pricing: + input: '21' + output: '21' + unit: '0.000001' + currency: RMB diff --git a/ai-provider/model-runtime/model-providers/siliconflow/llm/Internvl2-8b.yaml b/ai-provider/model-runtime/model-providers/siliconflow/llm/Internvl2-8b.yaml new file mode 100644 index 00000000..1e858bb4 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/siliconflow/llm/Internvl2-8b.yaml @@ -0,0 +1,84 @@ +model: Pro/OpenGVLab/InternVL2-8B +label: + en_US: Pro/OpenGVLab/InternVL2-8B +model_type: llm +features: + - vision +model_properties: + mode: chat + context_size: 32768 +parameter_rules: + - name: temperature + use_template: temperature + type: float + default: 0.3 + min: 0.0 + max: 2.0 + help: + zh_Hans: 用于控制随机性和多样性的程度。具体来说,temperature值控制了生成文本时对每个候选词的概率分布进行平滑的程度。较高的temperature值会降低概率分布的峰值,使得更多的低概率词被选择,生成结果更加多样化;而较低的temperature值则会增强概率分布的峰值,使得高概率词更容易被选择,生成结果更加确定。 + en_US: Used to control the degree of randomness and diversity. Specifically, the temperature value controls the degree to which the probability distribution of each candidate word is smoothed when generating text. A higher temperature value will reduce the peak value of the probability distribution, allowing more low-probability words to be selected, and the generated results will be more diverse; while a lower temperature value will enhance the peak value of the probability distribution, making it easier for high-probability words to be selected. , the generated results are more certain. + - name: max_tokens + use_template: max_tokens + type: int + default: 2000 + min: 1 + max: 2000 + help: + zh_Hans: 用于指定模型在生成内容时token的最大数量,它定义了生成的上限,但不保证每次都会生成到这个数量。 + en_US: It is used to specify the maximum number of tokens when the model generates content. It defines the upper limit of generation, but does not guarantee that this number will be generated every time. + - name: top_p + use_template: top_p + type: float + default: 0.8 + min: 0.1 + max: 0.9 + help: + zh_Hans: 生成过程中核采样方法概率阈值,例如,取值为0.8时,仅保留概率加起来大于等于0.8的最可能token的最小集合作为候选集。取值范围为(0,1.0),取值越大,生成的随机性越高;取值越低,生成的确定性越高。 + en_US: The probability threshold of the kernel sampling method during the generation process. For example, when the value is 0.8, only the smallest set of the most likely tokens with a sum of probabilities greater than or equal to 0.8 is retained as the candidate set. The value range is (0,1.0). The larger the value, the higher the randomness generated; the lower the value, the higher the certainty generated. + - name: top_k + type: int + min: 0 + max: 99 + label: + zh_Hans: 取样数量 + en_US: Top k + help: + zh_Hans: 生成时,采样候选集的大小。例如,取值为50时,仅将单次生成中得分最高的50个token组成随机采样的候选集。取值越大,生成的随机性越高;取值越小,生成的确定性越高。 + en_US: The size of the sample candidate set when generated. For example, when the value is 50, only the 50 highest-scoring tokens in a single generation form a randomly sampled candidate set. The larger the value, the higher the randomness generated; the smaller the value, the higher the certainty generated. + - name: seed + required: false + type: int + default: 1234 + label: + zh_Hans: 随机种子 + en_US: Random seed + help: + zh_Hans: 生成时使用的随机数种子,用户控制模型生成内容的随机性。支持无符号64位整数,默认值为 1234。在使用seed时,模型将尽可能生成相同或相似的结果,但目前不保证每次生成的结果完全相同。 + en_US: The random number seed used when generating, the user controls the randomness of the content generated by the model. Supports unsigned 64-bit integers, default value is 1234. When using seed, the model will try its best to generate the same or similar results, but there is currently no guarantee that the results will be exactly the same every time. + - name: repetition_penalty + required: false + type: float + default: 1.1 + label: + zh_Hans: 重复惩罚 + en_US: Repetition penalty + help: + zh_Hans: 用于控制模型生成时的重复度。提高repetition_penalty时可以降低模型生成的重复度。1.0表示不做惩罚。 + en_US: Used to control the repeatability when generating models. Increasing repetition_penalty can reduce the duplication of model generation. 1.0 means no punishment. + - name: response_format + label: + zh_Hans: 回复格式 + en_US: Response Format + type: string + help: + zh_Hans: 指定模型必须输出的格式 + en_US: specifying the format that the model must output + required: false + options: + - text + - json_object +pricing: + input: '21' + output: '21' + unit: '0.000001' + currency: RMB diff --git a/ai-provider/model-runtime/model-providers/siliconflow/llm/deepseek-r1-distill-llama-70B.yaml b/ai-provider/model-runtime/model-providers/siliconflow/llm/deepseek-r1-distill-llama-70B.yaml new file mode 100644 index 00000000..59e0b4d6 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/siliconflow/llm/deepseek-r1-distill-llama-70B.yaml @@ -0,0 +1,21 @@ +model: deepseek-ai/DeepSeek-R1-Distill-Llama-70B +label: + zh_Hans: deepseek-ai/DeepSeek-R1-Distill-Llama-70B + en_US: deepseek-ai/DeepSeek-R1-Distill-Llama-70B +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 32000 +parameter_rules: + - name: max_tokens + use_template: max_tokens + min: 1 + max: 8192 + default: 4096 +pricing: + input: "0.00" + output: "4.3" + unit: "0.000001" + currency: RMB diff --git a/ai-provider/model-runtime/model-providers/siliconflow/llm/deepseek-r1-distill-llama-8B.yaml b/ai-provider/model-runtime/model-providers/siliconflow/llm/deepseek-r1-distill-llama-8B.yaml new file mode 100644 index 00000000..f3256aa5 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/siliconflow/llm/deepseek-r1-distill-llama-8B.yaml @@ -0,0 +1,21 @@ +model: deepseek-ai/DeepSeek-R1-Distill-Llama-8B +label: + zh_Hans: deepseek-ai/DeepSeek-R1-Distill-Llama-8B + en_US: deepseek-ai/DeepSeek-R1-Distill-Llama-8B +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 32000 +parameter_rules: + - name: max_tokens + use_template: max_tokens + min: 1 + max: 8192 + default: 4096 +pricing: + input: "0.00" + output: "0.00" + unit: "0.000001" + currency: RMB diff --git a/ai-provider/model-runtime/model-providers/siliconflow/llm/deepseek-r1-distill-qwen-1.5B.yaml b/ai-provider/model-runtime/model-providers/siliconflow/llm/deepseek-r1-distill-qwen-1.5B.yaml new file mode 100644 index 00000000..72972786 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/siliconflow/llm/deepseek-r1-distill-qwen-1.5B.yaml @@ -0,0 +1,21 @@ +model: deepseek-ai/DeepSeek-R1-Distill-Qwen-1.5B +label: + zh_Hans: deepseek-ai/DeepSeek-R1-Distill-Qwen-1.5B + en_US: deepseek-ai/DeepSeek-R1-Distill-Qwen-1.5B +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 32000 +parameter_rules: + - name: max_tokens + use_template: max_tokens + min: 1 + max: 8192 + default: 4096 +pricing: + input: "0.00" + output: "1.26" + unit: "0.000001" + currency: RMB diff --git a/ai-provider/model-runtime/model-providers/siliconflow/llm/deepseek-r1-distill-qwen-14B.yaml b/ai-provider/model-runtime/model-providers/siliconflow/llm/deepseek-r1-distill-qwen-14B.yaml new file mode 100644 index 00000000..24b5c89e --- /dev/null +++ b/ai-provider/model-runtime/model-providers/siliconflow/llm/deepseek-r1-distill-qwen-14B.yaml @@ -0,0 +1,21 @@ +model: deepseek-ai/DeepSeek-R1-Distill-Qwen-14B +label: + zh_Hans: deepseek-ai/DeepSeek-R1-Distill-Qwen-14B + en_US: deepseek-ai/DeepSeek-R1-Distill-Qwen-14B +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 32000 +parameter_rules: + - name: max_tokens + use_template: max_tokens + min: 1 + max: 8192 + default: 4096 +pricing: + input: "0.00" + output: "0.70" + unit: "0.000001" + currency: RMB diff --git a/ai-provider/model-runtime/model-providers/siliconflow/llm/deepseek-r1-distill-qwen-32B.yaml b/ai-provider/model-runtime/model-providers/siliconflow/llm/deepseek-r1-distill-qwen-32B.yaml new file mode 100644 index 00000000..2a8cce1f --- /dev/null +++ b/ai-provider/model-runtime/model-providers/siliconflow/llm/deepseek-r1-distill-qwen-32B.yaml @@ -0,0 +1,21 @@ +model: deepseek-ai/DeepSeek-R1-Distill-Qwen-32B +label: + zh_Hans: deepseek-ai/DeepSeek-R1-Distill-Qwen-32B + en_US: deepseek-ai/DeepSeek-R1-Distill-Qwen-32B +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 32000 +parameter_rules: + - name: max_tokens + use_template: max_tokens + min: 1 + max: 8192 + default: 4096 +pricing: + input: "0.00" + output: "1.26" + unit: "0.000001" + currency: RMB diff --git a/ai-provider/model-runtime/model-providers/siliconflow/llm/deepseek-r1-distill-qwen-7B.yaml b/ai-provider/model-runtime/model-providers/siliconflow/llm/deepseek-r1-distill-qwen-7B.yaml new file mode 100644 index 00000000..cde1c14a --- /dev/null +++ b/ai-provider/model-runtime/model-providers/siliconflow/llm/deepseek-r1-distill-qwen-7B.yaml @@ -0,0 +1,21 @@ +model: deepseek-ai/DeepSeek-R1-Distill-Qwen-7B +label: + zh_Hans: deepseek-ai/DeepSeek-R1-Distill-Qwen-7B + en_US: deepseek-ai/DeepSeek-R1-Distill-Qwen-7B +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 32000 +parameter_rules: + - name: max_tokens + use_template: max_tokens + min: 1 + max: 8192 + default: 4096 +pricing: + input: "0.00" + output: "0.00" + unit: "0.000001" + currency: RMB diff --git a/ai-provider/model-runtime/model-providers/siliconflow/llm/deepseek-r1.yaml b/ai-provider/model-runtime/model-providers/siliconflow/llm/deepseek-r1.yaml new file mode 100644 index 00000000..44c6a9d5 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/siliconflow/llm/deepseek-r1.yaml @@ -0,0 +1,21 @@ +model: deepseek-ai/DeepSeek-R1 +label: + zh_Hans: deepseek-ai/DeepSeek-R1 + en_US: deepseek-ai/DeepSeek-R1 +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 64000 +parameter_rules: + - name: max_tokens + use_template: max_tokens + min: 1 + max: 8192 + default: 4096 +pricing: + input: "4" + output: "16" + unit: "0.000001" + currency: RMB diff --git a/ai-provider/model-runtime/model-providers/siliconflow/llm/deepseek-v3.yaml b/ai-provider/model-runtime/model-providers/siliconflow/llm/deepseek-v3.yaml new file mode 100644 index 00000000..ed1a5f00 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/siliconflow/llm/deepseek-v3.yaml @@ -0,0 +1,53 @@ +model: deepseek-ai/DeepSeek-V3 +label: + en_US: deepseek-ai/DeepSeek-V3 +model_type: llm +features: + - agent-thought + - tool-call + - stream-tool-call +model_properties: + mode: chat + context_size: 64000 +parameter_rules: + - name: temperature + use_template: temperature + - name: max_tokens + use_template: max_tokens + type: int + default: 512 + min: 1 + max: 4096 + help: + zh_Hans: 指定生成结果长度的上限。如果生成结果截断,可以调大该参数。 + en_US: Specifies the upper limit on the length of generated results. If the generated results are truncated, you can increase this parameter. + - name: top_p + use_template: top_p + - name: top_k + label: + zh_Hans: 取样数量 + en_US: Top k + type: int + help: + zh_Hans: 仅从每个后续标记的前 K 个选项中采样。 + en_US: Only sample from the top K options for each subsequent token. + required: false + - name: frequency_penalty + use_template: frequency_penalty + - name: response_format + label: + zh_Hans: 回复格式 + en_US: Response Format + type: string + help: + zh_Hans: 指定模型必须输出的格式 + en_US: specifying the format that the model must output + required: false + options: + - text + - json_object +pricing: + input: "1" + output: "2" + unit: "0.000001" + currency: RMB diff --git a/ai-provider/model-runtime/model-providers/siliconflow/llm/hunyuan-a52b-instruct.yaml b/ai-provider/model-runtime/model-providers/siliconflow/llm/hunyuan-a52b-instruct.yaml new file mode 100644 index 00000000..51d6c024 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/siliconflow/llm/hunyuan-a52b-instruct.yaml @@ -0,0 +1,85 @@ +model: Tencent/Hunyuan-A52B-Instruct +label: + en_US: Tencent/Hunyuan-A52B-Instruct +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 32768 +parameter_rules: + - name: temperature + use_template: temperature + type: float + default: 0.3 + min: 0.0 + max: 2.0 + help: + zh_Hans: 用于控制随机性和多样性的程度。具体来说,temperature值控制了生成文本时对每个候选词的概率分布进行平滑的程度。较高的temperature值会降低概率分布的峰值,使得更多的低概率词被选择,生成结果更加多样化;而较低的temperature值则会增强概率分布的峰值,使得高概率词更容易被选择,生成结果更加确定。 + en_US: Used to control the degree of randomness and diversity. Specifically, the temperature value controls the degree to which the probability distribution of each candidate word is smoothed when generating text. A higher temperature value will reduce the peak value of the probability distribution, allowing more low-probability words to be selected, and the generated results will be more diverse; while a lower temperature value will enhance the peak value of the probability distribution, making it easier for high-probability words to be selected. , the generated results are more certain. + - name: max_tokens + use_template: max_tokens + type: int + default: 2000 + min: 1 + max: 2000 + help: + zh_Hans: 用于指定模型在生成内容时token的最大数量,它定义了生成的上限,但不保证每次都会生成到这个数量。 + en_US: It is used to specify the maximum number of tokens when the model generates content. It defines the upper limit of generation, but does not guarantee that this number will be generated every time. + - name: top_p + use_template: top_p + type: float + default: 0.8 + min: 0.1 + max: 0.9 + help: + zh_Hans: 生成过程中核采样方法概率阈值,例如,取值为0.8时,仅保留概率加起来大于等于0.8的最可能token的最小集合作为候选集。取值范围为(0,1.0),取值越大,生成的随机性越高;取值越低,生成的确定性越高。 + en_US: The probability threshold of the kernel sampling method during the generation process. For example, when the value is 0.8, only the smallest set of the most likely tokens with a sum of probabilities greater than or equal to 0.8 is retained as the candidate set. The value range is (0,1.0). The larger the value, the higher the randomness generated; the lower the value, the higher the certainty generated. + - name: top_k + type: int + min: 0 + max: 99 + label: + zh_Hans: 取样数量 + en_US: Top k + help: + zh_Hans: 生成时,采样候选集的大小。例如,取值为50时,仅将单次生成中得分最高的50个token组成随机采样的候选集。取值越大,生成的随机性越高;取值越小,生成的确定性越高。 + en_US: The size of the sample candidate set when generated. For example, when the value is 50, only the 50 highest-scoring tokens in a single generation form a randomly sampled candidate set. The larger the value, the higher the randomness generated; the smaller the value, the higher the certainty generated. + - name: seed + required: false + type: int + default: 1234 + label: + zh_Hans: 随机种子 + en_US: Random seed + help: + zh_Hans: 生成时使用的随机数种子,用户控制模型生成内容的随机性。支持无符号64位整数,默认值为 1234。在使用seed时,模型将尽可能生成相同或相似的结果,但目前不保证每次生成的结果完全相同。 + en_US: The random number seed used when generating, the user controls the randomness of the content generated by the model. Supports unsigned 64-bit integers, default value is 1234. When using seed, the model will try its best to generate the same or similar results, but there is currently no guarantee that the results will be exactly the same every time. + - name: repetition_penalty + required: false + type: float + default: 1.1 + label: + zh_Hans: 重复惩罚 + en_US: Repetition penalty + help: + zh_Hans: 用于控制模型生成时的重复度。提高repetition_penalty时可以降低模型生成的重复度。1.0表示不做惩罚。 + en_US: Used to control the repeatability when generating models. Increasing repetition_penalty can reduce the duplication of model generation. 1.0 means no punishment. + - name: response_format + label: + zh_Hans: 回复格式 + en_US: Response Format + type: string + help: + zh_Hans: 指定模型必须输出的格式 + en_US: specifying the format that the model must output + required: false + options: + - text + - json_object +pricing: + input: '21' + output: '21' + unit: '0.000001' + currency: RMB +deprecated: true diff --git a/ai-provider/model-runtime/model-providers/siliconflow/llm/internlm2_5-20b-chat.yaml b/ai-provider/model-runtime/model-providers/siliconflow/llm/internlm2_5-20b-chat.yaml new file mode 100644 index 00000000..a5ae3674 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/siliconflow/llm/internlm2_5-20b-chat.yaml @@ -0,0 +1,51 @@ +model: internlm/internlm2_5-20b-chat +label: + en_US: internlm/internlm2_5-20b-chat +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 32768 +parameter_rules: + - name: temperature + use_template: temperature + - name: max_tokens + use_template: max_tokens + type: int + default: 512 + min: 1 + max: 4096 + help: + zh_Hans: 指定生成结果长度的上限。如果生成结果截断,可以调大该参数。 + en_US: Specifies the upper limit on the length of generated results. If the generated results are truncated, you can increase this parameter. + - name: top_p + use_template: top_p + - name: top_k + label: + zh_Hans: 取样数量 + en_US: Top k + type: int + help: + zh_Hans: 仅从每个后续标记的前 K 个选项中采样。 + en_US: Only sample from the top K options for each subsequent token. + required: false + - name: frequency_penalty + use_template: frequency_penalty + - name: response_format + label: + zh_Hans: 回复格式 + en_US: Response Format + type: string + help: + zh_Hans: 指定模型必须输出的格式 + en_US: specifying the format that the model must output + required: false + options: + - text + - json_object +pricing: + input: '1' + output: '1' + unit: '0.000001' + currency: RMB diff --git a/ai-provider/model-runtime/model-providers/siliconflow/llm/internvl2-llama3-76b.yaml b/ai-provider/model-runtime/model-providers/siliconflow/llm/internvl2-llama3-76b.yaml new file mode 100644 index 00000000..b5443df1 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/siliconflow/llm/internvl2-llama3-76b.yaml @@ -0,0 +1,85 @@ +model: OpenGVLab/InternVL2-Llama3-76B +label: + en_US: OpenGVLab/InternVL2-Llama3-76B +model_type: llm +features: + - vision +model_properties: + mode: chat + context_size: 8192 +parameter_rules: + - name: temperature + use_template: temperature + type: float + default: 0.3 + min: 0.0 + max: 2.0 + help: + zh_Hans: 用于控制随机性和多样性的程度。具体来说,temperature值控制了生成文本时对每个候选词的概率分布进行平滑的程度。较高的temperature值会降低概率分布的峰值,使得更多的低概率词被选择,生成结果更加多样化;而较低的temperature值则会增强概率分布的峰值,使得高概率词更容易被选择,生成结果更加确定。 + en_US: Used to control the degree of randomness and diversity. Specifically, the temperature value controls the degree to which the probability distribution of each candidate word is smoothed when generating text. A higher temperature value will reduce the peak value of the probability distribution, allowing more low-probability words to be selected, and the generated results will be more diverse; while a lower temperature value will enhance the peak value of the probability distribution, making it easier for high-probability words to be selected. , the generated results are more certain. + - name: max_tokens + use_template: max_tokens + type: int + default: 2000 + min: 1 + max: 2000 + help: + zh_Hans: 用于指定模型在生成内容时token的最大数量,它定义了生成的上限,但不保证每次都会生成到这个数量。 + en_US: It is used to specify the maximum number of tokens when the model generates content. It defines the upper limit of generation, but does not guarantee that this number will be generated every time. + - name: top_p + use_template: top_p + type: float + default: 0.8 + min: 0.1 + max: 0.9 + help: + zh_Hans: 生成过程中核采样方法概率阈值,例如,取值为0.8时,仅保留概率加起来大于等于0.8的最可能token的最小集合作为候选集。取值范围为(0,1.0),取值越大,生成的随机性越高;取值越低,生成的确定性越高。 + en_US: The probability threshold of the kernel sampling method during the generation process. For example, when the value is 0.8, only the smallest set of the most likely tokens with a sum of probabilities greater than or equal to 0.8 is retained as the candidate set. The value range is (0,1.0). The larger the value, the higher the randomness generated; the lower the value, the higher the certainty generated. + - name: top_k + type: int + min: 0 + max: 99 + label: + zh_Hans: 取样数量 + en_US: Top k + help: + zh_Hans: 生成时,采样候选集的大小。例如,取值为50时,仅将单次生成中得分最高的50个token组成随机采样的候选集。取值越大,生成的随机性越高;取值越小,生成的确定性越高。 + en_US: The size of the sample candidate set when generated. For example, when the value is 50, only the 50 highest-scoring tokens in a single generation form a randomly sampled candidate set. The larger the value, the higher the randomness generated; the smaller the value, the higher the certainty generated. + - name: seed + required: false + type: int + default: 1234 + label: + zh_Hans: 随机种子 + en_US: Random seed + help: + zh_Hans: 生成时使用的随机数种子,用户控制模型生成内容的随机性。支持无符号64位整数,默认值为 1234。在使用seed时,模型将尽可能生成相同或相似的结果,但目前不保证每次生成的结果完全相同。 + en_US: The random number seed used when generating, the user controls the randomness of the content generated by the model. Supports unsigned 64-bit integers, default value is 1234. When using seed, the model will try its best to generate the same or similar results, but there is currently no guarantee that the results will be exactly the same every time. + - name: repetition_penalty + required: false + type: float + default: 1.1 + label: + zh_Hans: 重复惩罚 + en_US: Repetition penalty + help: + zh_Hans: 用于控制模型生成时的重复度。提高repetition_penalty时可以降低模型生成的重复度。1.0表示不做惩罚。 + en_US: Used to control the repeatability when generating models. Increasing repetition_penalty can reduce the duplication of model generation. 1.0 means no punishment. + - name: response_format + label: + zh_Hans: 回复格式 + en_US: Response Format + type: string + help: + zh_Hans: 指定模型必须输出的格式 + en_US: specifying the format that the model must output + required: false + options: + - text + - json_object +pricing: + input: '21' + output: '21' + unit: '0.000001' + currency: RMB +deprecated: true diff --git a/ai-provider/model-runtime/model-providers/siliconflow/llm/janus-pro-7B.yaml b/ai-provider/model-runtime/model-providers/siliconflow/llm/janus-pro-7B.yaml new file mode 100644 index 00000000..dabbd745 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/siliconflow/llm/janus-pro-7B.yaml @@ -0,0 +1,22 @@ +model: deepseek-ai/Janus-Pro-7B +label: + zh_Hans: deepseek-ai/Janus-Pro-7B + en_US: deepseek-ai/Janus-Pro-7B +model_type: llm +features: + - agent-thought + - vision +model_properties: + mode: chat + context_size: 32000 +parameter_rules: + - name: max_tokens + use_template: max_tokens + min: 1 + max: 8192 + default: 4096 +pricing: + input: "0.00" + output: "0.00" + unit: "0.000001" + currency: RMB diff --git a/ai-provider/model-runtime/model-providers/siliconflow/llm/meta-llama-3.3-70b-instruct.yaml b/ai-provider/model-runtime/model-providers/siliconflow/llm/meta-llama-3.3-70b-instruct.yaml new file mode 100644 index 00000000..9373a8f4 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/siliconflow/llm/meta-llama-3.3-70b-instruct.yaml @@ -0,0 +1,53 @@ +model: meta-llama/Llama-3.3-70B-Instruct +label: + en_US: meta-llama/Llama-3.3-70B-Instruct +model_type: llm +features: + - agent-thought + - tool-call + - stream-tool-call +model_properties: + mode: chat + context_size: 32768 +parameter_rules: + - name: temperature + use_template: temperature + - name: max_tokens + use_template: max_tokens + type: int + default: 512 + min: 1 + max: 4096 + help: + zh_Hans: 指定生成结果长度的上限。如果生成结果截断,可以调大该参数。 + en_US: Specifies the upper limit on the length of generated results. If the generated results are truncated, you can increase this parameter. + - name: top_p + use_template: top_p + - name: top_k + label: + zh_Hans: 取样数量 + en_US: Top k + type: int + help: + zh_Hans: 仅从每个后续标记的前 K 个选项中采样。 + en_US: Only sample from the top K options for each subsequent token. + required: false + - name: frequency_penalty + use_template: frequency_penalty + - name: response_format + label: + zh_Hans: 回复格式 + en_US: Response Format + type: string + help: + zh_Hans: 指定模型必须输出的格式 + en_US: specifying the format that the model must output + required: false + options: + - text + - json_object +pricing: + input: '4.13' + output: '4.13' + unit: '0.000001' + currency: RMB diff --git a/ai-provider/model-runtime/model-providers/siliconflow/llm/qwen-qvq-72B-preview.yaml b/ai-provider/model-runtime/model-providers/siliconflow/llm/qwen-qvq-72B-preview.yaml new file mode 100644 index 00000000..dada6bb8 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/siliconflow/llm/qwen-qvq-72B-preview.yaml @@ -0,0 +1,54 @@ +model: Qwen/QVQ-72B-Preview +label: + en_US: Qwen/QVQ-72B-Preview +model_type: llm +features: + - agent-thought + - tool-call + - stream-tool-call + - vision +model_properties: + mode: chat + context_size: 32768 +parameter_rules: + - name: temperature + use_template: temperature + - name: max_tokens + use_template: max_tokens + type: int + default: 8192 + min: 1 + max: 16384 + help: + zh_Hans: 指定生成结果长度的上限。如果生成结果截断,可以调大该参数。 + en_US: Specifies the upper limit on the length of generated results. If the generated results are truncated, you can increase this parameter. + - name: top_p + use_template: top_p + - name: top_k + label: + zh_Hans: 取样数量 + en_US: Top k + type: int + help: + zh_Hans: 仅从每个后续标记的前 K 个选项中采样。 + en_US: Only sample from the top K options for each subsequent token. + required: false + - name: frequency_penalty + use_template: frequency_penalty + - name: response_format + label: + zh_Hans: 回复格式 + en_US: Response Format + type: string + help: + zh_Hans: 指定模型必须输出的格式 + en_US: specifying the format that the model must output + required: false + options: + - text + - json_object +pricing: + input: '9.90' + output: '9.90' + unit: '0.000001' + currency: RMB diff --git a/ai-provider/model-runtime/model-providers/siliconflow/llm/qwen-qwq-32B-preview.yaml b/ai-provider/model-runtime/model-providers/siliconflow/llm/qwen-qwq-32B-preview.yaml new file mode 100644 index 00000000..e73c5d20 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/siliconflow/llm/qwen-qwq-32B-preview.yaml @@ -0,0 +1,53 @@ +model: Qwen/QwQ-32B-Preview +label: + en_US: Qwen/QwQ-32B-Preview +model_type: llm +features: + - agent-thought + - tool-call + - stream-tool-call +model_properties: + mode: chat + context_size: 32768 +parameter_rules: + - name: temperature + use_template: temperature + - name: max_tokens + use_template: max_tokens + type: int + default: 4096 + min: 1 + max: 8192 + help: + zh_Hans: 指定生成结果长度的上限。如果生成结果截断,可以调大该参数。 + en_US: Specifies the upper limit on the length of generated results. If the generated results are truncated, you can increase this parameter. + - name: top_p + use_template: top_p + - name: top_k + label: + zh_Hans: 取样数量 + en_US: Top k + type: int + help: + zh_Hans: 仅从每个后续标记的前 K 个选项中采样。 + en_US: Only sample from the top K options for each subsequent token. + required: false + - name: frequency_penalty + use_template: frequency_penalty + - name: response_format + label: + zh_Hans: 回复格式 + en_US: Response Format + type: string + help: + zh_Hans: 指定模型必须输出的格式 + en_US: specifying the format that the model must output + required: false + options: + - text + - json_object +pricing: + input: '1.26' + output: '1.26' + unit: '0.000001' + currency: RMB diff --git a/ai-provider/model-runtime/model-providers/siliconflow/llm/qwen2-vl-72b-instruct.yaml b/ai-provider/model-runtime/model-providers/siliconflow/llm/qwen2-vl-72b-instruct.yaml new file mode 100644 index 00000000..f5180b41 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/siliconflow/llm/qwen2-vl-72b-instruct.yaml @@ -0,0 +1,84 @@ +model: Qwen/Qwen2-VL-72B-Instruct +label: + en_US: Qwen/Qwen2-VL-72B-Instruct +model_type: llm +features: + - vision +model_properties: + mode: chat + context_size: 32768 +parameter_rules: + - name: temperature + use_template: temperature + type: float + default: 0.3 + min: 0.0 + max: 2.0 + help: + zh_Hans: 用于控制随机性和多样性的程度。具体来说,temperature值控制了生成文本时对每个候选词的概率分布进行平滑的程度。较高的temperature值会降低概率分布的峰值,使得更多的低概率词被选择,生成结果更加多样化;而较低的temperature值则会增强概率分布的峰值,使得高概率词更容易被选择,生成结果更加确定。 + en_US: Used to control the degree of randomness and diversity. Specifically, the temperature value controls the degree to which the probability distribution of each candidate word is smoothed when generating text. A higher temperature value will reduce the peak value of the probability distribution, allowing more low-probability words to be selected, and the generated results will be more diverse; while a lower temperature value will enhance the peak value of the probability distribution, making it easier for high-probability words to be selected. , the generated results are more certain. + - name: max_tokens + use_template: max_tokens + type: int + default: 2000 + min: 1 + max: 2000 + help: + zh_Hans: 用于指定模型在生成内容时token的最大数量,它定义了生成的上限,但不保证每次都会生成到这个数量。 + en_US: It is used to specify the maximum number of tokens when the model generates content. It defines the upper limit of generation, but does not guarantee that this number will be generated every time. + - name: top_p + use_template: top_p + type: float + default: 0.8 + min: 0.1 + max: 0.9 + help: + zh_Hans: 生成过程中核采样方法概率阈值,例如,取值为0.8时,仅保留概率加起来大于等于0.8的最可能token的最小集合作为候选集。取值范围为(0,1.0),取值越大,生成的随机性越高;取值越低,生成的确定性越高。 + en_US: The probability threshold of the kernel sampling method during the generation process. For example, when the value is 0.8, only the smallest set of the most likely tokens with a sum of probabilities greater than or equal to 0.8 is retained as the candidate set. The value range is (0,1.0). The larger the value, the higher the randomness generated; the lower the value, the higher the certainty generated. + - name: top_k + type: int + min: 0 + max: 99 + label: + zh_Hans: 取样数量 + en_US: Top k + help: + zh_Hans: 生成时,采样候选集的大小。例如,取值为50时,仅将单次生成中得分最高的50个token组成随机采样的候选集。取值越大,生成的随机性越高;取值越小,生成的确定性越高。 + en_US: The size of the sample candidate set when generated. For example, when the value is 50, only the 50 highest-scoring tokens in a single generation form a randomly sampled candidate set. The larger the value, the higher the randomness generated; the smaller the value, the higher the certainty generated. + - name: seed + required: false + type: int + default: 1234 + label: + zh_Hans: 随机种子 + en_US: Random seed + help: + zh_Hans: 生成时使用的随机数种子,用户控制模型生成内容的随机性。支持无符号64位整数,默认值为 1234。在使用seed时,模型将尽可能生成相同或相似的结果,但目前不保证每次生成的结果完全相同。 + en_US: The random number seed used when generating, the user controls the randomness of the content generated by the model. Supports unsigned 64-bit integers, default value is 1234. When using seed, the model will try its best to generate the same or similar results, but there is currently no guarantee that the results will be exactly the same every time. + - name: repetition_penalty + required: false + type: float + default: 1.1 + label: + zh_Hans: 重复惩罚 + en_US: Repetition penalty + help: + zh_Hans: 用于控制模型生成时的重复度。提高repetition_penalty时可以降低模型生成的重复度。1.0表示不做惩罚。 + en_US: Used to control the repeatability when generating models. Increasing repetition_penalty can reduce the duplication of model generation. 1.0 means no punishment. + - name: response_format + label: + zh_Hans: 回复格式 + en_US: Response Format + type: string + help: + zh_Hans: 指定模型必须输出的格式 + en_US: specifying the format that the model must output + required: false + options: + - text + - json_object +pricing: + input: '4.13' + output: '4.13' + unit: '0.000001' + currency: RMB diff --git a/ai-provider/model-runtime/model-providers/siliconflow/llm/qwen2-vl-7b-Instruct.yaml b/ai-provider/model-runtime/model-providers/siliconflow/llm/qwen2-vl-7b-Instruct.yaml new file mode 100644 index 00000000..0ffbaee3 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/siliconflow/llm/qwen2-vl-7b-Instruct.yaml @@ -0,0 +1,84 @@ +model: Pro/Qwen/Qwen2-VL-7B-Instruct +label: + en_US: Pro/Qwen/Qwen2-VL-7B-Instruct +model_type: llm +features: + - vision +model_properties: + mode: chat + context_size: 32768 +parameter_rules: + - name: temperature + use_template: temperature + type: float + default: 0.3 + min: 0.0 + max: 2.0 + help: + zh_Hans: 用于控制随机性和多样性的程度。具体来说,temperature值控制了生成文本时对每个候选词的概率分布进行平滑的程度。较高的temperature值会降低概率分布的峰值,使得更多的低概率词被选择,生成结果更加多样化;而较低的temperature值则会增强概率分布的峰值,使得高概率词更容易被选择,生成结果更加确定。 + en_US: Used to control the degree of randomness and diversity. Specifically, the temperature value controls the degree to which the probability distribution of each candidate word is smoothed when generating text. A higher temperature value will reduce the peak value of the probability distribution, allowing more low-probability words to be selected, and the generated results will be more diverse; while a lower temperature value will enhance the peak value of the probability distribution, making it easier for high-probability words to be selected. , the generated results are more certain. + - name: max_tokens + use_template: max_tokens + type: int + default: 2000 + min: 1 + max: 2000 + help: + zh_Hans: 用于指定模型在生成内容时token的最大数量,它定义了生成的上限,但不保证每次都会生成到这个数量。 + en_US: It is used to specify the maximum number of tokens when the model generates content. It defines the upper limit of generation, but does not guarantee that this number will be generated every time. + - name: top_p + use_template: top_p + type: float + default: 0.8 + min: 0.1 + max: 0.9 + help: + zh_Hans: 生成过程中核采样方法概率阈值,例如,取值为0.8时,仅保留概率加起来大于等于0.8的最可能token的最小集合作为候选集。取值范围为(0,1.0),取值越大,生成的随机性越高;取值越低,生成的确定性越高。 + en_US: The probability threshold of the kernel sampling method during the generation process. For example, when the value is 0.8, only the smallest set of the most likely tokens with a sum of probabilities greater than or equal to 0.8 is retained as the candidate set. The value range is (0,1.0). The larger the value, the higher the randomness generated; the lower the value, the higher the certainty generated. + - name: top_k + type: int + min: 0 + max: 99 + label: + zh_Hans: 取样数量 + en_US: Top k + help: + zh_Hans: 生成时,采样候选集的大小。例如,取值为50时,仅将单次生成中得分最高的50个token组成随机采样的候选集。取值越大,生成的随机性越高;取值越小,生成的确定性越高。 + en_US: The size of the sample candidate set when generated. For example, when the value is 50, only the 50 highest-scoring tokens in a single generation form a randomly sampled candidate set. The larger the value, the higher the randomness generated; the smaller the value, the higher the certainty generated. + - name: seed + required: false + type: int + default: 1234 + label: + zh_Hans: 随机种子 + en_US: Random seed + help: + zh_Hans: 生成时使用的随机数种子,用户控制模型生成内容的随机性。支持无符号64位整数,默认值为 1234。在使用seed时,模型将尽可能生成相同或相似的结果,但目前不保证每次生成的结果完全相同。 + en_US: The random number seed used when generating, the user controls the randomness of the content generated by the model. Supports unsigned 64-bit integers, default value is 1234. When using seed, the model will try its best to generate the same or similar results, but there is currently no guarantee that the results will be exactly the same every time. + - name: repetition_penalty + required: false + type: float + default: 1.1 + label: + zh_Hans: 重复惩罚 + en_US: Repetition penalty + help: + zh_Hans: 用于控制模型生成时的重复度。提高repetition_penalty时可以降低模型生成的重复度。1.0表示不做惩罚。 + en_US: Used to control the repeatability when generating models. Increasing repetition_penalty can reduce the duplication of model generation. 1.0 means no punishment. + - name: response_format + label: + zh_Hans: 回复格式 + en_US: Response Format + type: string + help: + zh_Hans: 指定模型必须输出的格式 + en_US: specifying the format that the model must output + required: false + options: + - text + - json_object +pricing: + input: '0.35' + output: '0.35' + unit: '0.000001' + currency: RMB diff --git a/ai-provider/model-runtime/model-providers/siliconflow/llm/qwen2.5-72b-instruct-128k.yaml b/ai-provider/model-runtime/model-providers/siliconflow/llm/qwen2.5-72b-instruct-128k.yaml new file mode 100644 index 00000000..79f94da3 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/siliconflow/llm/qwen2.5-72b-instruct-128k.yaml @@ -0,0 +1,51 @@ +model: Qwen/Qwen2.5-72B-Instruct-128K +label: + en_US: Qwen/Qwen2.5-72B-Instruct-128K +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 131072 +parameter_rules: + - name: temperature + use_template: temperature + - name: max_tokens + use_template: max_tokens + type: int + default: 512 + min: 1 + max: 4096 + help: + zh_Hans: 指定生成结果长度的上限。如果生成结果截断,可以调大该参数。 + en_US: Specifies the upper limit on the length of generated results. If the generated results are truncated, you can increase this parameter. + - name: top_p + use_template: top_p + - name: top_k + label: + zh_Hans: 取样数量 + en_US: Top k + type: int + help: + zh_Hans: 仅从每个后续标记的前 K 个选项中采样。 + en_US: Only sample from the top K options for each subsequent token. + required: false + - name: frequency_penalty + use_template: frequency_penalty + - name: response_format + label: + zh_Hans: 回复格式 + en_US: Response Format + type: string + help: + zh_Hans: 指定模型必须输出的格式 + en_US: specifying the format that the model must output + required: false + options: + - text + - json_object +pricing: + input: '4.13' + output: '4.13' + unit: '0.000001' + currency: RMB diff --git a/ai-provider/model-runtime/model-providers/siliconflow/llm/qwen2.5-72b-instruct-vendorA.yaml b/ai-provider/model-runtime/model-providers/siliconflow/llm/qwen2.5-72b-instruct-vendorA.yaml new file mode 100644 index 00000000..fdbe38ff --- /dev/null +++ b/ai-provider/model-runtime/model-providers/siliconflow/llm/qwen2.5-72b-instruct-vendorA.yaml @@ -0,0 +1,51 @@ +model: Vendor-A/Qwen/Qwen2.5-72B-Instruct +label: + en_US: Vendor-A/Qwen/Qwen2.5-72B-Instruct +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 32768 +parameter_rules: + - name: temperature + use_template: temperature + - name: max_tokens + use_template: max_tokens + type: int + default: 512 + min: 1 + max: 4096 + help: + zh_Hans: 指定生成结果长度的上限。如果生成结果截断,可以调大该参数。 + en_US: Specifies the upper limit on the length of generated results. If the generated results are truncated, you can increase this parameter. + - name: top_p + use_template: top_p + - name: top_k + label: + zh_Hans: 取样数量 + en_US: Top k + type: int + help: + zh_Hans: 仅从每个后续标记的前 K 个选项中采样。 + en_US: Only sample from the top K options for each subsequent token. + required: false + - name: frequency_penalty + use_template: frequency_penalty + - name: response_format + label: + zh_Hans: 回复格式 + en_US: Response Format + type: string + help: + zh_Hans: 指定模型必须输出的格式 + en_US: specifying the format that the model must output + required: false + options: + - text + - json_object +pricing: + input: '1.00' + output: '1.00' + unit: '0.000001' + currency: RMB diff --git a/ai-provider/model-runtime/model-providers/siliconflow/llm/qwen2.5-coder-32b-instruct.yaml b/ai-provider/model-runtime/model-providers/siliconflow/llm/qwen2.5-coder-32b-instruct.yaml new file mode 100644 index 00000000..de2224a6 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/siliconflow/llm/qwen2.5-coder-32b-instruct.yaml @@ -0,0 +1,84 @@ +model: Qwen/Qwen2.5-Coder-32B-Instruct +label: + en_US: Qwen/Qwen2.5-Coder-32B-Instruct +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 32768 +parameter_rules: + - name: temperature + use_template: temperature + type: float + default: 0.3 + min: 0.0 + max: 2.0 + help: + zh_Hans: 用于控制随机性和多样性的程度。具体来说,temperature值控制了生成文本时对每个候选词的概率分布进行平滑的程度。较高的temperature值会降低概率分布的峰值,使得更多的低概率词被选择,生成结果更加多样化;而较低的temperature值则会增强概率分布的峰值,使得高概率词更容易被选择,生成结果更加确定。 + en_US: Used to control the degree of randomness and diversity. Specifically, the temperature value controls the degree to which the probability distribution of each candidate word is smoothed when generating text. A higher temperature value will reduce the peak value of the probability distribution, allowing more low-probability words to be selected, and the generated results will be more diverse; while a lower temperature value will enhance the peak value of the probability distribution, making it easier for high-probability words to be selected. , the generated results are more certain. + - name: max_tokens + use_template: max_tokens + type: int + default: 8192 + min: 1 + max: 8192 + help: + zh_Hans: 用于指定模型在生成内容时token的最大数量,它定义了生成的上限,但不保证每次都会生成到这个数量。 + en_US: It is used to specify the maximum number of tokens when the model generates content. It defines the upper limit of generation, but does not guarantee that this number will be generated every time. + - name: top_p + use_template: top_p + type: float + default: 0.8 + min: 0.1 + max: 0.9 + help: + zh_Hans: 生成过程中核采样方法概率阈值,例如,取值为0.8时,仅保留概率加起来大于等于0.8的最可能token的最小集合作为候选集。取值范围为(0,1.0),取值越大,生成的随机性越高;取值越低,生成的确定性越高。 + en_US: The probability threshold of the kernel sampling method during the generation process. For example, when the value is 0.8, only the smallest set of the most likely tokens with a sum of probabilities greater than or equal to 0.8 is retained as the candidate set. The value range is (0,1.0). The larger the value, the higher the randomness generated; the lower the value, the higher the certainty generated. + - name: top_k + type: int + min: 0 + max: 99 + label: + zh_Hans: 取样数量 + en_US: Top k + help: + zh_Hans: 生成时,采样候选集的大小。例如,取值为50时,仅将单次生成中得分最高的50个token组成随机采样的候选集。取值越大,生成的随机性越高;取值越小,生成的确定性越高。 + en_US: The size of the sample candidate set when generated. For example, when the value is 50, only the 50 highest-scoring tokens in a single generation form a randomly sampled candidate set. The larger the value, the higher the randomness generated; the smaller the value, the higher the certainty generated. + - name: seed + required: false + type: int + default: 1234 + label: + zh_Hans: 随机种子 + en_US: Random seed + help: + zh_Hans: 生成时使用的随机数种子,用户控制模型生成内容的随机性。支持无符号64位整数,默认值为 1234。在使用seed时,模型将尽可能生成相同或相似的结果,但目前不保证每次生成的结果完全相同。 + en_US: The random number seed used when generating, the user controls the randomness of the content generated by the model. Supports unsigned 64-bit integers, default value is 1234. When using seed, the model will try its best to generate the same or similar results, but there is currently no guarantee that the results will be exactly the same every time. + - name: repetition_penalty + required: false + type: float + default: 1.1 + label: + zh_Hans: 重复惩罚 + en_US: Repetition penalty + help: + zh_Hans: 用于控制模型生成时的重复度。提高repetition_penalty时可以降低模型生成的重复度。1.0表示不做惩罚。 + en_US: Used to control the repeatability when generating models. Increasing repetition_penalty can reduce the duplication of model generation. 1.0 means no punishment. + - name: response_format + label: + zh_Hans: 回复格式 + en_US: Response Format + type: string + help: + zh_Hans: 指定模型必须输出的格式 + en_US: specifying the format that the model must output + required: false + options: + - text + - json_object +pricing: + input: '1.26' + output: '1.26' + unit: '0.000001' + currency: RMB diff --git a/ai-provider/model-runtime/model-providers/siliconflow/llm/qwen2.5-coder-7b-instruct.yaml b/ai-provider/model-runtime/model-providers/siliconflow/llm/qwen2.5-coder-7b-instruct.yaml new file mode 100644 index 00000000..c31a338c --- /dev/null +++ b/ai-provider/model-runtime/model-providers/siliconflow/llm/qwen2.5-coder-7b-instruct.yaml @@ -0,0 +1,84 @@ +model: Qwen/Qwen2.5-Coder-7B-Instruct +label: + en_US: Qwen/Qwen2.5-Coder-7B-Instruct +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 131072 +parameter_rules: + - name: temperature + use_template: temperature + type: float + default: 0.3 + min: 0.0 + max: 2.0 + help: + zh_Hans: 用于控制随机性和多样性的程度。具体来说,temperature值控制了生成文本时对每个候选词的概率分布进行平滑的程度。较高的temperature值会降低概率分布的峰值,使得更多的低概率词被选择,生成结果更加多样化;而较低的temperature值则会增强概率分布的峰值,使得高概率词更容易被选择,生成结果更加确定。 + en_US: Used to control the degree of randomness and diversity. Specifically, the temperature value controls the degree to which the probability distribution of each candidate word is smoothed when generating text. A higher temperature value will reduce the peak value of the probability distribution, allowing more low-probability words to be selected, and the generated results will be more diverse; while a lower temperature value will enhance the peak value of the probability distribution, making it easier for high-probability words to be selected. , the generated results are more certain. + - name: max_tokens + use_template: max_tokens + type: int + default: 8192 + min: 1 + max: 8192 + help: + zh_Hans: 用于指定模型在生成内容时token的最大数量,它定义了生成的上限,但不保证每次都会生成到这个数量。 + en_US: It is used to specify the maximum number of tokens when the model generates content. It defines the upper limit of generation, but does not guarantee that this number will be generated every time. + - name: top_p + use_template: top_p + type: float + default: 0.8 + min: 0.1 + max: 0.9 + help: + zh_Hans: 生成过程中核采样方法概率阈值,例如,取值为0.8时,仅保留概率加起来大于等于0.8的最可能token的最小集合作为候选集。取值范围为(0,1.0),取值越大,生成的随机性越高;取值越低,生成的确定性越高。 + en_US: The probability threshold of the kernel sampling method during the generation process. For example, when the value is 0.8, only the smallest set of the most likely tokens with a sum of probabilities greater than or equal to 0.8 is retained as the candidate set. The value range is (0,1.0). The larger the value, the higher the randomness generated; the lower the value, the higher the certainty generated. + - name: top_k + type: int + min: 0 + max: 99 + label: + zh_Hans: 取样数量 + en_US: Top k + help: + zh_Hans: 生成时,采样候选集的大小。例如,取值为50时,仅将单次生成中得分最高的50个token组成随机采样的候选集。取值越大,生成的随机性越高;取值越小,生成的确定性越高。 + en_US: The size of the sample candidate set when generated. For example, when the value is 50, only the 50 highest-scoring tokens in a single generation form a randomly sampled candidate set. The larger the value, the higher the randomness generated; the smaller the value, the higher the certainty generated. + - name: seed + required: false + type: int + default: 1234 + label: + zh_Hans: 随机种子 + en_US: Random seed + help: + zh_Hans: 生成时使用的随机数种子,用户控制模型生成内容的随机性。支持无符号64位整数,默认值为 1234。在使用seed时,模型将尽可能生成相同或相似的结果,但目前不保证每次生成的结果完全相同。 + en_US: The random number seed used when generating, the user controls the randomness of the content generated by the model. Supports unsigned 64-bit integers, default value is 1234. When using seed, the model will try its best to generate the same or similar results, but there is currently no guarantee that the results will be exactly the same every time. + - name: repetition_penalty + required: false + type: float + default: 1.1 + label: + zh_Hans: 重复惩罚 + en_US: Repetition penalty + help: + zh_Hans: 用于控制模型生成时的重复度。提高repetition_penalty时可以降低模型生成的重复度。1.0表示不做惩罚。 + en_US: Used to control the repeatability when generating models. Increasing repetition_penalty can reduce the duplication of model generation. 1.0 means no punishment. + - name: response_format + label: + zh_Hans: 回复格式 + en_US: Response Format + type: string + help: + zh_Hans: 指定模型必须输出的格式 + en_US: specifying the format that the model must output + required: false + options: + - text + - json_object +pricing: + input: '0' + output: '0' + unit: '0.000001' + currency: RMB diff --git a/ai-provider/model-runtime/model-providers/siliconflow/llm/qwen2.5-math-72b-instruct.yaml b/ai-provider/model-runtime/model-providers/siliconflow/llm/qwen2.5-math-72b-instruct.yaml new file mode 100644 index 00000000..40c9ab48 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/siliconflow/llm/qwen2.5-math-72b-instruct.yaml @@ -0,0 +1,85 @@ +model: Qwen/Qwen2.5-Math-72B-Instruct +label: + en_US: Qwen/Qwen2.5-Math-72B-Instruct +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 4096 +parameter_rules: + - name: temperature + use_template: temperature + type: float + default: 0.3 + min: 0.0 + max: 2.0 + help: + zh_Hans: 用于控制随机性和多样性的程度。具体来说,temperature值控制了生成文本时对每个候选词的概率分布进行平滑的程度。较高的temperature值会降低概率分布的峰值,使得更多的低概率词被选择,生成结果更加多样化;而较低的temperature值则会增强概率分布的峰值,使得高概率词更容易被选择,生成结果更加确定。 + en_US: Used to control the degree of randomness and diversity. Specifically, the temperature value controls the degree to which the probability distribution of each candidate word is smoothed when generating text. A higher temperature value will reduce the peak value of the probability distribution, allowing more low-probability words to be selected, and the generated results will be more diverse; while a lower temperature value will enhance the peak value of the probability distribution, making it easier for high-probability words to be selected. , the generated results are more certain. + - name: max_tokens + use_template: max_tokens + type: int + default: 2000 + min: 1 + max: 2000 + help: + zh_Hans: 用于指定模型在生成内容时token的最大数量,它定义了生成的上限,但不保证每次都会生成到这个数量。 + en_US: It is used to specify the maximum number of tokens when the model generates content. It defines the upper limit of generation, but does not guarantee that this number will be generated every time. + - name: top_p + use_template: top_p + type: float + default: 0.8 + min: 0.1 + max: 0.9 + help: + zh_Hans: 生成过程中核采样方法概率阈值,例如,取值为0.8时,仅保留概率加起来大于等于0.8的最可能token的最小集合作为候选集。取值范围为(0,1.0),取值越大,生成的随机性越高;取值越低,生成的确定性越高。 + en_US: The probability threshold of the kernel sampling method during the generation process. For example, when the value is 0.8, only the smallest set of the most likely tokens with a sum of probabilities greater than or equal to 0.8 is retained as the candidate set. The value range is (0,1.0). The larger the value, the higher the randomness generated; the lower the value, the higher the certainty generated. + - name: top_k + type: int + min: 0 + max: 99 + label: + zh_Hans: 取样数量 + en_US: Top k + help: + zh_Hans: 生成时,采样候选集的大小。例如,取值为50时,仅将单次生成中得分最高的50个token组成随机采样的候选集。取值越大,生成的随机性越高;取值越小,生成的确定性越高。 + en_US: The size of the sample candidate set when generated. For example, when the value is 50, only the 50 highest-scoring tokens in a single generation form a randomly sampled candidate set. The larger the value, the higher the randomness generated; the smaller the value, the higher the certainty generated. + - name: seed + required: false + type: int + default: 1234 + label: + zh_Hans: 随机种子 + en_US: Random seed + help: + zh_Hans: 生成时使用的随机数种子,用户控制模型生成内容的随机性。支持无符号64位整数,默认值为 1234。在使用seed时,模型将尽可能生成相同或相似的结果,但目前不保证每次生成的结果完全相同。 + en_US: The random number seed used when generating, the user controls the randomness of the content generated by the model. Supports unsigned 64-bit integers, default value is 1234. When using seed, the model will try its best to generate the same or similar results, but there is currently no guarantee that the results will be exactly the same every time. + - name: repetition_penalty + required: false + type: float + default: 1.1 + label: + zh_Hans: 重复惩罚 + en_US: Repetition penalty + help: + zh_Hans: 用于控制模型生成时的重复度。提高repetition_penalty时可以降低模型生成的重复度。1.0表示不做惩罚。 + en_US: Used to control the repeatability when generating models. Increasing repetition_penalty can reduce the duplication of model generation. 1.0 means no punishment. + - name: response_format + label: + zh_Hans: 回复格式 + en_US: Response Format + type: string + help: + zh_Hans: 指定模型必须输出的格式 + en_US: specifying the format that the model must output + required: false + options: + - text + - json_object +pricing: + input: '4.13' + output: '4.13' + unit: '0.000001' + currency: RMB +deprecated: true diff --git a/ai-provider/model-runtime/model-providers/spark/llm/spark-1.5.yaml b/ai-provider/model-runtime/model-providers/spark/llm/spark-1.5.yaml new file mode 100644 index 00000000..fcd65c24 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/spark/llm/spark-1.5.yaml @@ -0,0 +1,34 @@ +model: spark-1.5 +deprecated: true +label: + en_US: Spark V1.5 +model_type: llm +model_properties: + mode: chat +parameter_rules: + - name: temperature + use_template: temperature + default: 0.5 + help: + zh_Hans: 核采样阈值。用于决定结果随机性,取值越高随机性越强即相同的问题得到的不同答案的可能性越高。 + en_US: Kernel sampling threshold. Used to determine the randomness of the results. The higher the value, the stronger the randomness, that is, the higher the possibility of getting different answers to the same question. + - name: max_tokens + use_template: max_tokens + default: 512 + min: 1 + max: 4096 + help: + zh_Hans: 模型回答的tokens的最大长度。 + en_US: 模型回答的tokens的最大长度。 + - name: top_k + label: + zh_Hans: 取样数量 + en_US: Top k + type: int + default: 4 + min: 1 + max: 6 + help: + zh_Hans: 从 k 个候选中随机选择一个(非等概率)。 + en_US: Randomly select one from k candidates (non-equal probability). + required: false diff --git a/ai-provider/model-runtime/model-providers/spark/llm/spark-2.yaml b/ai-provider/model-runtime/model-providers/spark/llm/spark-2.yaml new file mode 100644 index 00000000..2db6805a --- /dev/null +++ b/ai-provider/model-runtime/model-providers/spark/llm/spark-2.yaml @@ -0,0 +1,34 @@ +model: spark-2 +deprecated: true +label: + en_US: Spark V2.0 +model_type: llm +model_properties: + mode: chat +parameter_rules: + - name: temperature + use_template: temperature + default: 0.5 + help: + zh_Hans: 核采样阈值。用于决定结果随机性,取值越高随机性越强即相同的问题得到的不同答案的可能性越高。 + en_US: Kernel sampling threshold. Used to determine the randomness of the results. The higher the value, the stronger the randomness, that is, the higher the possibility of getting different answers to the same question. + - name: max_tokens + use_template: max_tokens + default: 2048 + min: 1 + max: 8192 + help: + zh_Hans: 模型回答的tokens的最大长度。 + en_US: 模型回答的tokens的最大长度。 + - name: top_k + label: + zh_Hans: 取样数量 + en_US: Top k + type: int + default: 4 + min: 1 + max: 6 + help: + zh_Hans: 从 k 个候选中随机选择一个(非等概率)。 + en_US: Randomly select one from k candidates (non-equal probability). + required: false diff --git a/ai-provider/model-runtime/model-providers/spark/llm/spark-3.5.yaml b/ai-provider/model-runtime/model-providers/spark/llm/spark-3.5.yaml new file mode 100644 index 00000000..86617a53 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/spark/llm/spark-3.5.yaml @@ -0,0 +1,34 @@ +model: spark-3.5 +deprecated: true +label: + en_US: Spark V3.5 +model_type: llm +model_properties: + mode: chat +parameter_rules: + - name: temperature + use_template: temperature + default: 0.5 + help: + zh_Hans: 核采样阈值。用于决定结果随机性,取值越高随机性越强即相同的问题得到的不同答案的可能性越高。 + en_US: Kernel sampling threshold. Used to determine the randomness of the results. The higher the value, the stronger the randomness, that is, the higher the possibility of getting different answers to the same question. + - name: max_tokens + use_template: max_tokens + default: 2048 + min: 1 + max: 8192 + help: + zh_Hans: 模型回答的tokens的最大长度。 + en_US: 模型回答的tokens的最大长度。 + - name: top_k + label: + zh_Hans: 取样数量 + en_US: Top k + type: int + default: 4 + min: 1 + max: 6 + help: + zh_Hans: 从 k 个候选中随机选择一个(非等概率)。 + en_US: Randomly select one from k candidates (non-equal probability). + required: false diff --git a/ai-provider/model-runtime/model-providers/spark/llm/spark-3.yaml b/ai-provider/model-runtime/model-providers/spark/llm/spark-3.yaml new file mode 100644 index 00000000..9f296c68 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/spark/llm/spark-3.yaml @@ -0,0 +1,34 @@ +model: spark-3 +deprecated: true +label: + en_US: Spark V3.0 +model_type: llm +model_properties: + mode: chat +parameter_rules: + - name: temperature + use_template: temperature + default: 0.5 + help: + zh_Hans: 核采样阈值。用于决定结果随机性,取值越高随机性越强即相同的问题得到的不同答案的可能性越高。 + en_US: Kernel sampling threshold. Used to determine the randomness of the results. The higher the value, the stronger the randomness, that is, the higher the possibility of getting different answers to the same question. + - name: max_tokens + use_template: max_tokens + default: 2048 + min: 1 + max: 8192 + help: + zh_Hans: 模型回答的tokens的最大长度。 + en_US: 模型回答的tokens的最大长度。 + - name: top_k + label: + zh_Hans: 取样数量 + en_US: Top k + type: int + default: 4 + min: 1 + max: 6 + help: + zh_Hans: 从 k 个候选中随机选择一个(非等概率)。 + en_US: Randomly select one from k candidates (non-equal probability). + required: false diff --git a/ai-provider/model-runtime/model-providers/spark/llm/spark-4.yaml b/ai-provider/model-runtime/model-providers/spark/llm/spark-4.yaml new file mode 100644 index 00000000..4b5529e8 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/spark/llm/spark-4.yaml @@ -0,0 +1,34 @@ +model: spark-4 +deprecated: true +label: + en_US: Spark V4.0 +model_type: llm +model_properties: + mode: chat +parameter_rules: + - name: temperature + use_template: temperature + default: 0.5 + help: + zh_Hans: 核采样阈值。用于决定结果随机性,取值越高随机性越强即相同的问题得到的不同答案的可能性越高。 + en_US: Kernel sampling threshold. Used to determine the randomness of the results. The higher the value, the stronger the randomness, that is, the higher the possibility of getting different answers to the same question. + - name: max_tokens + use_template: max_tokens + default: 4096 + min: 1 + max: 8192 + help: + zh_Hans: 模型回答的tokens的最大长度。 + en_US: 模型回答的tokens的最大长度。 + - name: top_k + label: + zh_Hans: 取样数量 + en_US: Top k + type: int + default: 4 + min: 1 + max: 6 + help: + zh_Hans: 从 k 个候选中随机选择一个(非等概率)。 + en_US: Randomly select one from k candidates (non-equal probability). + required: false diff --git a/ai-provider/model-runtime/model-providers/tongyi/llm/deepseek-r1-distill-qwen-14B.yaml b/ai-provider/model-runtime/model-providers/tongyi/llm/deepseek-r1-distill-qwen-14B.yaml new file mode 100644 index 00000000..2bce8805 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/tongyi/llm/deepseek-r1-distill-qwen-14B.yaml @@ -0,0 +1,21 @@ +model: deepseek-r1-distill-qwen-14b +label: + zh_Hans: DeepSeek-R1-Distill-Qwen-14B + en_US: DeepSeek-R1-Distill-Qwen-14B +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 32000 +parameter_rules: + - name: max_tokens + use_template: max_tokens + min: 1 + max: 8192 + default: 4096 +pricing: + input: "0.001" + output: "0.003" + unit: "0.001" + currency: RMB diff --git a/ai-provider/model-runtime/model-providers/tongyi/llm/deepseek-r1-distill-qwen-32B.yaml b/ai-provider/model-runtime/model-providers/tongyi/llm/deepseek-r1-distill-qwen-32B.yaml new file mode 100644 index 00000000..dfc155ff --- /dev/null +++ b/ai-provider/model-runtime/model-providers/tongyi/llm/deepseek-r1-distill-qwen-32B.yaml @@ -0,0 +1,21 @@ +model: deepseek-r1-distill-qwen-32b +label: + zh_Hans: DeepSeek-R1-Distill-Qwen-32B + en_US: DeepSeek-R1-Distill-Qwen-32B +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 32000 +parameter_rules: + - name: max_tokens + use_template: max_tokens + min: 1 + max: 8192 + default: 4096 +pricing: + input: "0.002" + output: "0.006" + unit: "0.001" + currency: RMB diff --git a/ai-provider/model-runtime/model-providers/tongyi/llm/deepseek-r1.yaml b/ai-provider/model-runtime/model-providers/tongyi/llm/deepseek-r1.yaml new file mode 100644 index 00000000..742e7f00 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/tongyi/llm/deepseek-r1.yaml @@ -0,0 +1,21 @@ +model: deepseek-r1 +label: + zh_Hans: DeepSeek-R1 + en_US: DeepSeek-R1 +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 64000 +parameter_rules: + - name: max_tokens + use_template: max_tokens + min: 1 + max: 8192 + default: 4096 +pricing: + input: "0.004" + output: "0.016" + unit: '0.001' + currency: RMB diff --git a/ai-provider/model-runtime/model-providers/tongyi/llm/deepseek-v3.yaml b/ai-provider/model-runtime/model-providers/tongyi/llm/deepseek-v3.yaml new file mode 100644 index 00000000..23f38d60 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/tongyi/llm/deepseek-v3.yaml @@ -0,0 +1,52 @@ +model: deepseek-v3 +label: + zh_Hans: DeepSeek-V3 + en_US: DeepSeek-V3 +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 64000 +parameter_rules: + - name: temperature + use_template: temperature + - name: max_tokens + use_template: max_tokens + type: int + default: 512 + min: 1 + max: 4096 + help: + zh_Hans: 指定生成结果长度的上限。如果生成结果截断,可以调大该参数。 + en_US: Specifies the upper limit on the length of generated results. If the generated results are truncated, you can increase this parameter. + - name: top_p + use_template: top_p + - name: top_k + label: + zh_Hans: 取样数量 + en_US: Top k + type: int + help: + zh_Hans: 仅从每个后续标记的前 K 个选项中采样。 + en_US: Only sample from the top K options for each subsequent token. + required: false + - name: frequency_penalty + use_template: frequency_penalty + - name: response_format + label: + zh_Hans: 回复格式 + en_US: Response Format + type: string + help: + zh_Hans: 指定模型必须输出的格式 + en_US: specifying the format that the model must output + required: false + options: + - text + - json_object +pricing: + input: "0.002" + output: "0.008" + unit: "0.001" + currency: RMB diff --git a/ai-provider/model-runtime/model-providers/tongyi/llm/farui-plus.yaml b/ai-provider/model-runtime/model-providers/tongyi/llm/farui-plus.yaml new file mode 100644 index 00000000..34a57d1f --- /dev/null +++ b/ai-provider/model-runtime/model-providers/tongyi/llm/farui-plus.yaml @@ -0,0 +1,77 @@ +# for more details, please refer to https://help.aliyun.com/zh/model-studio/getting-started/models +model: farui-plus +label: + en_US: farui-plus +model_type: llm +features: + - multi-tool-call + - agent-thought + - stream-tool-call +model_properties: + mode: chat + context_size: 12288 +parameter_rules: + - name: temperature + use_template: temperature + type: float + default: 0.3 + min: 0.0 + max: 2.0 + help: + zh_Hans: 用于控制随机性和多样性的程度。具体来说,temperature值控制了生成文本时对每个候选词的概率分布进行平滑的程度。较高的temperature值会降低概率分布的峰值,使得更多的低概率词被选择,生成结果更加多样化;而较低的temperature值则会增强概率分布的峰值,使得高概率词更容易被选择,生成结果更加确定。 + en_US: Used to control the degree of randomness and diversity. Specifically, the temperature value controls the degree to which the probability distribution of each candidate word is smoothed when generating text. A higher temperature value will reduce the peak value of the probability distribution, allowing more low-probability words to be selected, and the generated results will be more diverse; while a lower temperature value will enhance the peak value of the probability distribution, making it easier for high-probability words to be selected. , the generated results are more certain. + - name: max_tokens + use_template: max_tokens + type: int + default: 2000 + min: 1 + max: 2000 + help: + zh_Hans: 用于指定模型在生成内容时token的最大数量,它定义了生成的上限,但不保证每次都会生成到这个数量。 + en_US: It is used to specify the maximum number of tokens when the model generates content. It defines the upper limit of generation, but does not guarantee that this number will be generated every time. + - name: top_p + use_template: top_p + type: float + default: 0.8 + min: 0.1 + max: 0.9 + help: + zh_Hans: 生成过程中核采样方法概率阈值,例如,取值为0.8时,仅保留概率加起来大于等于0.8的最可能token的最小集合作为候选集。取值范围为(0,1.0),取值越大,生成的随机性越高;取值越低,生成的确定性越高。 + en_US: The probability threshold of the kernel sampling method during the generation process. For example, when the value is 0.8, only the smallest set of the most likely tokens with a sum of probabilities greater than or equal to 0.8 is retained as the candidate set. The value range is (0,1.0). The larger the value, the higher the randomness generated; the lower the value, the higher the certainty generated. + - name: top_k + type: int + min: 0 + max: 99 + label: + zh_Hans: 取样数量 + en_US: Top k + help: + zh_Hans: 生成时,采样候选集的大小。例如,取值为50时,仅将单次生成中得分最高的50个token组成随机采样的候选集。取值越大,生成的随机性越高;取值越小,生成的确定性越高。 + en_US: The size of the sample candidate set when generated. For example, when the value is 50, only the 50 highest-scoring tokens in a single generation form a randomly sampled candidate set. The larger the value, the higher the randomness generated; the smaller the value, the higher the certainty generated. + - name: seed + required: false + type: int + default: 1234 + label: + zh_Hans: 随机种子 + en_US: Random seed + help: + zh_Hans: 生成时使用的随机数种子,用户控制模型生成内容的随机性。支持无符号64位整数,默认值为 1234。在使用seed时,模型将尽可能生成相同或相似的结果,但目前不保证每次生成的结果完全相同。 + en_US: The random number seed used when generating, the user controls the randomness of the content generated by the model. Supports unsigned 64-bit integers, default value is 1234. When using seed, the model will try its best to generate the same or similar results, but there is currently no guarantee that the results will be exactly the same every time. + - name: repetition_penalty + required: false + type: float + default: 1.1 + label: + zh_Hans: 重复惩罚 + en_US: Repetition penalty + help: + zh_Hans: 用于控制模型生成时的重复度。提高repetition_penalty时可以降低模型生成的重复度。1.0表示不做惩罚。 + en_US: Used to control the repeatability when generating models. Increasing repetition_penalty can reduce the duplication of model generation. 1.0 means no punishment. + - name: response_format + use_template: response_format +pricing: + input: '0.02' + output: '0.02' + unit: '0.001' + currency: RMB diff --git a/ai-provider/model-runtime/model-providers/tongyi/llm/qwen2.5-14b-instruct-1m.yaml b/ai-provider/model-runtime/model-providers/tongyi/llm/qwen2.5-14b-instruct-1m.yaml new file mode 100644 index 00000000..c3d72ec4 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/tongyi/llm/qwen2.5-14b-instruct-1m.yaml @@ -0,0 +1,75 @@ +# for more details, please refer to https://help.aliyun.com/zh/model-studio/getting-started/models +model: qwen2.5-14b-instruct-1m +label: + en_US: qwen2.5-14b-instruct-1m +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 1000000 +parameter_rules: + - name: temperature + use_template: temperature + type: float + default: 0.3 + min: 0.0 + max: 2.0 + help: + zh_Hans: 用于控制随机性和多样性的程度。具体来说,temperature值控制了生成文本时对每个候选词的概率分布进行平滑的程度。较高的temperature值会降低概率分布的峰值,使得更多的低概率词被选择,生成结果更加多样化;而较低的temperature值则会增强概率分布的峰值,使得高概率词更容易被选择,生成结果更加确定。 + en_US: Used to control the degree of randomness and diversity. Specifically, the temperature value controls the degree to which the probability distribution of each candidate word is smoothed when generating text. A higher temperature value will reduce the peak value of the probability distribution, allowing more low-probability words to be selected, and the generated results will be more diverse; while a lower temperature value will enhance the peak value of the probability distribution, making it easier for high-probability words to be selected. , the generated results are more certain. + - name: max_tokens + use_template: max_tokens + type: int + default: 8192 + min: 1 + max: 8192 + help: + zh_Hans: 用于指定模型在生成内容时token的最大数量,它定义了生成的上限,但不保证每次都会生成到这个数量。 + en_US: It is used to specify the maximum number of tokens when the model generates content. It defines the upper limit of generation, but does not guarantee that this number will be generated every time. + - name: top_p + use_template: top_p + type: float + default: 0.8 + min: 0.1 + max: 0.9 + help: + zh_Hans: 生成过程中核采样方法概率阈值,例如,取值为0.8时,仅保留概率加起来大于等于0.8的最可能token的最小集合作为候选集。取值范围为(0,1.0),取值越大,生成的随机性越高;取值越低,生成的确定性越高。 + en_US: The probability threshold of the kernel sampling method during the generation process. For example, when the value is 0.8, only the smallest set of the most likely tokens with a sum of probabilities greater than or equal to 0.8 is retained as the candidate set. The value range is (0,1.0). The larger the value, the higher the randomness generated; the lower the value, the higher the certainty generated. + - name: top_k + type: int + min: 0 + max: 99 + label: + zh_Hans: 取样数量 + en_US: Top k + help: + zh_Hans: 生成时,采样候选集的大小。例如,取值为50时,仅将单次生成中得分最高的50个token组成随机采样的候选集。取值越大,生成的随机性越高;取值越小,生成的确定性越高。 + en_US: The size of the sample candidate set when generated. For example, when the value is 50, only the 50 highest-scoring tokens in a single generation form a randomly sampled candidate set. The larger the value, the higher the randomness generated; the smaller the value, the higher the certainty generated. + - name: seed + required: false + type: int + default: 1234 + label: + zh_Hans: 随机种子 + en_US: Random seed + help: + zh_Hans: 生成时使用的随机数种子,用户控制模型生成内容的随机性。支持无符号64位整数,默认值为 1234。在使用seed时,模型将尽可能生成相同或相似的结果,但目前不保证每次生成的结果完全相同。 + en_US: The random number seed used when generating, the user controls the randomness of the content generated by the model. Supports unsigned 64-bit integers, default value is 1234. When using seed, the model will try its best to generate the same or similar results, but there is currently no guarantee that the results will be exactly the same every time. + - name: repetition_penalty + required: false + type: float + default: 1.1 + label: + zh_Hans: 重复惩罚 + en_US: Repetition penalty + help: + zh_Hans: 用于控制模型生成时的重复度。提高repetition_penalty时可以降低模型生成的重复度。1.0表示不做惩罚。 + en_US: Used to control the repeatability when generating models. Increasing repetition_penalty can reduce the duplication of model generation. 1.0 means no punishment. + - name: response_format + use_template: response_format +pricing: + input: '0.001' + output: '0.003' + unit: '0.001' + currency: RMB diff --git a/ai-provider/model-runtime/model-providers/tongyi/llm/qwen2.5-7b-instruct-1m.yaml b/ai-provider/model-runtime/model-providers/tongyi/llm/qwen2.5-7b-instruct-1m.yaml new file mode 100644 index 00000000..44968e54 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/tongyi/llm/qwen2.5-7b-instruct-1m.yaml @@ -0,0 +1,75 @@ +# for more details, please refer to https://help.aliyun.com/zh/model-studio/getting-started/models +model: qwen2.5-7b-instruct-1m +label: + en_US: qwen2.5-7b-instruct-1m +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 1000000 +parameter_rules: + - name: temperature + use_template: temperature + type: float + default: 0.3 + min: 0.0 + max: 2.0 + help: + zh_Hans: 用于控制随机性和多样性的程度。具体来说,temperature值控制了生成文本时对每个候选词的概率分布进行平滑的程度。较高的temperature值会降低概率分布的峰值,使得更多的低概率词被选择,生成结果更加多样化;而较低的temperature值则会增强概率分布的峰值,使得高概率词更容易被选择,生成结果更加确定。 + en_US: Used to control the degree of randomness and diversity. Specifically, the temperature value controls the degree to which the probability distribution of each candidate word is smoothed when generating text. A higher temperature value will reduce the peak value of the probability distribution, allowing more low-probability words to be selected, and the generated results will be more diverse; while a lower temperature value will enhance the peak value of the probability distribution, making it easier for high-probability words to be selected. , the generated results are more certain. + - name: max_tokens + use_template: max_tokens + type: int + default: 8192 + min: 1 + max: 8192 + help: + zh_Hans: 用于指定模型在生成内容时token的最大数量,它定义了生成的上限,但不保证每次都会生成到这个数量。 + en_US: It is used to specify the maximum number of tokens when the model generates content. It defines the upper limit of generation, but does not guarantee that this number will be generated every time. + - name: top_p + use_template: top_p + type: float + default: 0.8 + min: 0.1 + max: 0.9 + help: + zh_Hans: 生成过程中核采样方法概率阈值,例如,取值为0.8时,仅保留概率加起来大于等于0.8的最可能token的最小集合作为候选集。取值范围为(0,1.0),取值越大,生成的随机性越高;取值越低,生成的确定性越高。 + en_US: The probability threshold of the kernel sampling method during the generation process. For example, when the value is 0.8, only the smallest set of the most likely tokens with a sum of probabilities greater than or equal to 0.8 is retained as the candidate set. The value range is (0,1.0). The larger the value, the higher the randomness generated; the lower the value, the higher the certainty generated. + - name: top_k + type: int + min: 0 + max: 99 + label: + zh_Hans: 取样数量 + en_US: Top k + help: + zh_Hans: 生成时,采样候选集的大小。例如,取值为50时,仅将单次生成中得分最高的50个token组成随机采样的候选集。取值越大,生成的随机性越高;取值越小,生成的确定性越高。 + en_US: The size of the sample candidate set when generated. For example, when the value is 50, only the 50 highest-scoring tokens in a single generation form a randomly sampled candidate set. The larger the value, the higher the randomness generated; the smaller the value, the higher the certainty generated. + - name: seed + required: false + type: int + default: 1234 + label: + zh_Hans: 随机种子 + en_US: Random seed + help: + zh_Hans: 生成时使用的随机数种子,用户控制模型生成内容的随机性。支持无符号64位整数,默认值为 1234。在使用seed时,模型将尽可能生成相同或相似的结果,但目前不保证每次生成的结果完全相同。 + en_US: The random number seed used when generating, the user controls the randomness of the content generated by the model. Supports unsigned 64-bit integers, default value is 1234. When using seed, the model will try its best to generate the same or similar results, but there is currently no guarantee that the results will be exactly the same every time. + - name: repetition_penalty + required: false + type: float + default: 1.1 + label: + zh_Hans: 重复惩罚 + en_US: Repetition penalty + help: + zh_Hans: 用于控制模型生成时的重复度。提高repetition_penalty时可以降低模型生成的重复度。1.0表示不做惩罚。 + en_US: Used to control the repeatability when generating models. Increasing repetition_penalty can reduce the duplication of model generation. 1.0 means no punishment. + - name: response_format + use_template: response_format +pricing: + input: '0.0005' + output: '0.001' + unit: '0.001' + currency: RMB diff --git a/ai-provider/model-runtime/model-providers/vertex_ai/llm/anthropic.claude-3.5-sonnet-v2.yaml b/ai-provider/model-runtime/model-providers/vertex_ai/llm/anthropic.claude-3.5-sonnet-v2.yaml new file mode 100644 index 00000000..37b9f30c --- /dev/null +++ b/ai-provider/model-runtime/model-providers/vertex_ai/llm/anthropic.claude-3.5-sonnet-v2.yaml @@ -0,0 +1,55 @@ +model: claude-3-5-sonnet-v2@20241022 +label: + en_US: Claude 3.5 Sonnet v2 +model_type: llm +features: + - agent-thought + - vision +model_properties: + mode: chat + context_size: 200000 +parameter_rules: + - name: max_tokens + use_template: max_tokens + required: true + type: int + default: 8192 + min: 1 + max: 8192 + help: + zh_Hans: 停止前生成的最大令牌数。请注意,Anthropic Claude 模型可能会在达到 max_tokens 的值之前停止生成令牌。不同的 Anthropic Claude 模型对此参数具有不同的最大值。 + en_US: The maximum number of tokens to generate before stopping. Note that Anthropic Claude models might stop generating tokens before reaching the value of max_tokens. Different Anthropic Claude models have different maximum values for this parameter. + - name: temperature + use_template: temperature + required: false + type: float + default: 1 + min: 0.0 + max: 1.0 + help: + zh_Hans: 生成内容的随机性。 + en_US: The amount of randomness injected into the response. + - name: top_p + required: false + type: float + default: 0.999 + min: 0.000 + max: 1.000 + help: + zh_Hans: 在核采样中,Anthropic Claude 按概率递减顺序计算每个后续标记的所有选项的累积分布,并在达到 top_p 指定的特定概率时将其切断。您应该更改温度或top_p,但不能同时更改两者。 + en_US: In nucleus sampling, Anthropic Claude computes the cumulative distribution over all the options for each subsequent token in decreasing probability order and cuts it off once it reaches a particular probability specified by top_p. You should alter either temperature or top_p, but not both. + - name: top_k + required: false + type: int + default: 0 + min: 0 + # tip docs from aws has error, max value is 500 + max: 500 + help: + zh_Hans: 对于每个后续标记,仅从前 K 个选项中进行采样。使用 top_k 删除长尾低概率响应。 + en_US: Only sample from the top K options for each subsequent token. Use top_k to remove long tail low probability responses. +pricing: + input: '0.003' + output: '0.015' + unit: '0.001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/vertex_ai/llm/gemini-2.0-flash-001.yaml b/ai-provider/model-runtime/model-providers/vertex_ai/llm/gemini-2.0-flash-001.yaml new file mode 100644 index 00000000..bef7ca5e --- /dev/null +++ b/ai-provider/model-runtime/model-providers/vertex_ai/llm/gemini-2.0-flash-001.yaml @@ -0,0 +1,41 @@ +model: gemini-2.0-flash-001 +label: + en_US: Gemini 2.0 Flash 001 +model_type: llm +features: + - agent-thought + - vision + - tool-call + - stream-tool-call + - document + - video + - audio +model_properties: + mode: chat + context_size: 1048576 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: top_k + label: + zh_Hans: 取样数量 + en_US: Top k + type: int + help: + zh_Hans: 仅从每个后续标记的前 K 个选项中采样。 + en_US: Only sample from the top K options for each subsequent token. + required: false + - name: max_output_tokens + use_template: max_tokens + default: 8192 + min: 1 + max: 8192 + - name: json_schema + use_template: json_schema +pricing: + input: '0.00' + output: '0.00' + unit: '0.000001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/vertex_ai/llm/gemini-2.0-flash-exp.yaml b/ai-provider/model-runtime/model-providers/vertex_ai/llm/gemini-2.0-flash-exp.yaml new file mode 100644 index 00000000..bcd59623 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/vertex_ai/llm/gemini-2.0-flash-exp.yaml @@ -0,0 +1,39 @@ +model: gemini-2.0-flash-exp +label: + en_US: Gemini 2.0 Flash Exp +model_type: llm +features: + - agent-thought + - vision + - tool-call + - stream-tool-call + - document +model_properties: + mode: chat + context_size: 1048576 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: top_k + label: + zh_Hans: 取样数量 + en_US: Top k + type: int + help: + zh_Hans: 仅从每个后续标记的前 K 个选项中采样。 + en_US: Only sample from the top K options for each subsequent token. + required: false + - name: max_output_tokens + use_template: max_tokens + default: 8192 + min: 1 + max: 8192 + - name: json_schema + use_template: json_schema +pricing: + input: '0.00' + output: '0.00' + unit: '0.000001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/vertex_ai/llm/gemini-2.0-flash-lite-preview-02-05.yaml b/ai-provider/model-runtime/model-providers/vertex_ai/llm/gemini-2.0-flash-lite-preview-02-05.yaml new file mode 100644 index 00000000..9c0a1e06 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/vertex_ai/llm/gemini-2.0-flash-lite-preview-02-05.yaml @@ -0,0 +1,41 @@ +model: gemini-2.0-flash-lite-preview-02-05 +label: + en_US: Gemini 2.0 Flash Lite Preview 0205 +model_type: llm +features: + - agent-thought + - vision + - tool-call + - stream-tool-call + - document + - video + - audio +model_properties: + mode: chat + context_size: 1048576 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: top_k + label: + zh_Hans: 取样数量 + en_US: Top k + type: int + help: + zh_Hans: 仅从每个后续标记的前 K 个选项中采样。 + en_US: Only sample from the top K options for each subsequent token. + required: false + - name: max_output_tokens + use_template: max_tokens + default: 8192 + min: 1 + max: 8192 + - name: json_schema + use_template: json_schema +pricing: + input: '0.00' + output: '0.00' + unit: '0.000001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/vertex_ai/llm/gemini-2.0-flash-thinking-exp-01-21.yaml b/ai-provider/model-runtime/model-providers/vertex_ai/llm/gemini-2.0-flash-thinking-exp-01-21.yaml new file mode 100644 index 00000000..6e2fc767 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/vertex_ai/llm/gemini-2.0-flash-thinking-exp-01-21.yaml @@ -0,0 +1,39 @@ +model: gemini-2.0-flash-thinking-exp-01-21 +label: + en_US: Gemini 2.0 Flash Thinking Exp 0121 +model_type: llm +features: + - agent-thought + - vision + - document + - video + - audio +model_properties: + mode: chat + context_size: 32767 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: top_k + label: + zh_Hans: 取样数量 + en_US: Top k + type: int + help: + zh_Hans: 仅从每个后续标记的前 K 个选项中采样。 + en_US: Only sample from the top K options for each subsequent token. + required: false + - name: max_output_tokens + use_template: max_tokens + default: 8192 + min: 1 + max: 8192 + - name: json_schema + use_template: json_schema +pricing: + input: '0.00' + output: '0.00' + unit: '0.000001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/vertex_ai/llm/gemini-2.0-flash-thinking-exp-1219.yaml b/ai-provider/model-runtime/model-providers/vertex_ai/llm/gemini-2.0-flash-thinking-exp-1219.yaml new file mode 100644 index 00000000..dfcf8fd0 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/vertex_ai/llm/gemini-2.0-flash-thinking-exp-1219.yaml @@ -0,0 +1,39 @@ +model: gemini-2.0-flash-thinking-exp-1219 +label: + en_US: Gemini 2.0 Flash Thinking Exp 1219 +model_type: llm +features: + - agent-thought + - vision + - document + - video + - audio +model_properties: + mode: chat + context_size: 32767 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: top_k + label: + zh_Hans: 取样数量 + en_US: Top k + type: int + help: + zh_Hans: 仅从每个后续标记的前 K 个选项中采样。 + en_US: Only sample from the top K options for each subsequent token. + required: false + - name: max_output_tokens + use_template: max_tokens + default: 8192 + min: 1 + max: 8192 + - name: json_schema + use_template: json_schema +pricing: + input: '0.00' + output: '0.00' + unit: '0.000001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/vertex_ai/llm/gemini-2.0-pro-exp-02-05.yaml b/ai-provider/model-runtime/model-providers/vertex_ai/llm/gemini-2.0-pro-exp-02-05.yaml new file mode 100644 index 00000000..96926a17 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/vertex_ai/llm/gemini-2.0-pro-exp-02-05.yaml @@ -0,0 +1,37 @@ +model: gemini-2.0-pro-exp-02-05 +label: + en_US: Gemini 2.0 Pro Exp 0205 +model_type: llm +features: + - agent-thought + - document +model_properties: + mode: chat + context_size: 2000000 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: top_k + label: + en_US: Top k + type: int + help: + en_US: Only sample from the top K options for each subsequent token. + required: false + - name: presence_penalty + use_template: presence_penalty + - name: frequency_penalty + use_template: frequency_penalty + - name: max_output_tokens + use_template: max_tokens + required: true + default: 8192 + min: 1 + max: 8192 +pricing: + input: '0.00' + output: '0.00' + unit: '0.000001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/vertex_ai/llm/gemini-exp-1114.yaml b/ai-provider/model-runtime/model-providers/vertex_ai/llm/gemini-exp-1114.yaml new file mode 100644 index 00000000..bd49b476 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/vertex_ai/llm/gemini-exp-1114.yaml @@ -0,0 +1,41 @@ +model: gemini-exp-1114 +label: + en_US: Gemini exp 1114 +model_type: llm +features: + - agent-thought + - vision + - tool-call + - stream-tool-call + - document + - video + - audio +model_properties: + mode: chat + context_size: 32767 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: top_k + label: + zh_Hans: 取样数量 + en_US: Top k + type: int + help: + zh_Hans: 仅从每个后续标记的前 K 个选项中采样。 + en_US: Only sample from the top K options for each subsequent token. + required: false + - name: max_output_tokens + use_template: max_tokens + default: 8192 + min: 1 + max: 8192 + - name: json_schema + use_template: json_schema +pricing: + input: '0.00' + output: '0.00' + unit: '0.000001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/vertex_ai/llm/gemini-exp-1121.yaml b/ai-provider/model-runtime/model-providers/vertex_ai/llm/gemini-exp-1121.yaml new file mode 100644 index 00000000..8e3f218d --- /dev/null +++ b/ai-provider/model-runtime/model-providers/vertex_ai/llm/gemini-exp-1121.yaml @@ -0,0 +1,41 @@ +model: gemini-exp-1121 +label: + en_US: Gemini exp 1121 +model_type: llm +features: + - agent-thought + - vision + - tool-call + - stream-tool-call + - document + - video + - audio +model_properties: + mode: chat + context_size: 32767 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: top_k + label: + zh_Hans: 取样数量 + en_US: Top k + type: int + help: + zh_Hans: 仅从每个后续标记的前 K 个选项中采样。 + en_US: Only sample from the top K options for each subsequent token. + required: false + - name: max_output_tokens + use_template: max_tokens + default: 8192 + min: 1 + max: 8192 + - name: json_schema + use_template: json_schema +pricing: + input: '0.00' + output: '0.00' + unit: '0.000001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/vertex_ai/llm/gemini-exp-1206.yaml b/ai-provider/model-runtime/model-providers/vertex_ai/llm/gemini-exp-1206.yaml new file mode 100644 index 00000000..7a7c361c --- /dev/null +++ b/ai-provider/model-runtime/model-providers/vertex_ai/llm/gemini-exp-1206.yaml @@ -0,0 +1,41 @@ +model: gemini-exp-1206 +label: + en_US: Gemini exp 1206 +model_type: llm +features: + - agent-thought + - vision + - tool-call + - stream-tool-call + - document + - video + - audio +model_properties: + mode: chat + context_size: 2097152 +parameter_rules: + - name: temperature + use_template: temperature + - name: top_p + use_template: top_p + - name: top_k + label: + zh_Hans: 取样数量 + en_US: Top k + type: int + help: + zh_Hans: 仅从每个后续标记的前 K 个选项中采样。 + en_US: Only sample from the top K options for each subsequent token. + required: false + - name: max_output_tokens + use_template: max_tokens + default: 8192 + min: 1 + max: 8192 + - name: json_schema + use_template: json_schema +pricing: + input: '0.00' + output: '0.00' + unit: '0.000001' + currency: USD diff --git a/ai-provider/model-runtime/model-providers/wenxin/llm/ernie-4.0-turbo-128k.yaml b/ai-provider/model-runtime/model-providers/wenxin/llm/ernie-4.0-turbo-128k.yaml new file mode 100644 index 00000000..f8d56406 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/wenxin/llm/ernie-4.0-turbo-128k.yaml @@ -0,0 +1,40 @@ +model: ernie-4.0-turbo-128k +label: + en_US: Ernie-4.0-turbo-128K +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 131072 +parameter_rules: + - name: temperature + use_template: temperature + min: 0.1 + max: 1.0 + default: 0.8 + - name: top_p + use_template: top_p + - name: max_tokens + use_template: max_tokens + default: 1024 + min: 2 + max: 4096 + - name: presence_penalty + use_template: presence_penalty + default: 1.0 + min: 1.0 + max: 2.0 + - name: frequency_penalty + use_template: frequency_penalty + - name: response_format + use_template: response_format + - name: disable_search + label: + zh_Hans: 禁用搜索 + en_US: Disable Search + type: boolean + help: + zh_Hans: 禁用模型自行进行外部搜索。 + en_US: Disable the model to perform external search. + required: false diff --git a/ai-provider/model-runtime/model-providers/wenxin/llm/ernie-lite-pro-128k.yaml b/ai-provider/model-runtime/model-providers/wenxin/llm/ernie-lite-pro-128k.yaml new file mode 100644 index 00000000..4f5832c8 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/wenxin/llm/ernie-lite-pro-128k.yaml @@ -0,0 +1,42 @@ +model: ernie-lite-pro-128k +label: + en_US: Ernie-Lite-Pro-128K +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 128000 +parameter_rules: + - name: temperature + use_template: temperature + min: 0.1 + max: 1.0 + default: 0.8 + - name: top_p + use_template: top_p + - name: min_output_tokens + label: + en_US: "Min Output Tokens" + zh_Hans: "最小输出Token数" + use_template: max_tokens + min: 2 + max: 2048 + help: + zh_Hans: 指定模型最小输出token数 + en_US: Specifies the lower limit on the length of generated results. + - name: max_output_tokens + label: + en_US: "Max Output Tokens" + zh_Hans: "最大输出Token数" + use_template: max_tokens + min: 2 + max: 2048 + default: 2048 + help: + zh_Hans: 指定模型最大输出token数 + en_US: Specifies the upper limit on the length of generated results. If the generated results are truncated, you can increase this parameter. + - name: presence_penalty + use_template: presence_penalty + - name: frequency_penalty + use_template: frequency_penalty diff --git a/ai-provider/model-runtime/model-providers/yi/llm/yi-lightning.yaml b/ai-provider/model-runtime/model-providers/yi/llm/yi-lightning.yaml new file mode 100644 index 00000000..fccf1b3a --- /dev/null +++ b/ai-provider/model-runtime/model-providers/yi/llm/yi-lightning.yaml @@ -0,0 +1,43 @@ +model: yi-lightning +label: + zh_Hans: yi-lightning + en_US: yi-lightning +model_type: llm +features: + - agent-thought +model_properties: + mode: chat + context_size: 16384 +parameter_rules: + - name: temperature + use_template: temperature + type: float + default: 0.3 + min: 0.0 + max: 2.0 + help: + zh_Hans: 控制生成结果的多样性和随机性。数值越小,越严谨;数值越大,越发散。 + en_US: Control the diversity and randomness of generated results. The smaller the value, the more rigorous it is; the larger the value, the more divergent it is. + - name: max_tokens + use_template: max_tokens + type: int + default: 1024 + min: 1 + max: 4000 + help: + zh_Hans: 指定生成结果长度的上限。如果生成结果截断,可以调大该参数。 + en_US: Specifies the upper limit on the length of generated results. If the generated results are truncated, you can increase this parameter. + - name: top_p + use_template: top_p + type: float + default: 0.9 + min: 0.01 + max: 1.00 + help: + zh_Hans: 控制生成结果的随机性。数值越小,随机性越弱;数值越大,随机性越强。一般而言,top_p 和 temperature 两个参数选择一个进行调整即可。 + en_US: Control the randomness of generated results. The smaller the value, the weaker the randomness; the larger the value, the stronger the randomness. Generally speaking, you can adjust one of the two parameters top_p and temperature. +pricing: + input: '0.99' + output: '0.99' + unit: '0.000001' + currency: RMB diff --git a/ai-provider/model-runtime/model-providers/zhipuai/llm/glm-4-air-0111.yaml b/ai-provider/model-runtime/model-providers/zhipuai/llm/glm-4-air-0111.yaml new file mode 100644 index 00000000..8d301fc6 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/zhipuai/llm/glm-4-air-0111.yaml @@ -0,0 +1,66 @@ +model: glm-4-air-0111 +label: + en_US: glm-4-air-0111 +model_type: llm +features: + - multi-tool-call + - agent-thought + - stream-tool-call +model_properties: + mode: chat + context_size: 131072 +parameter_rules: + - name: temperature + use_template: temperature + default: 0.95 + min: 0.0 + max: 1.0 + help: + zh_Hans: 采样温度,控制输出的随机性,必须为正数取值范围是:(0.0,1.0],不能等于 0,默认值为 0.95 值越大,会使输出更随机,更具创造性;值越小,输出会更加稳定或确定建议您根据应用场景调整 top_p 或 temperature 参数,但不要同时调整两个参数。 + en_US: Sampling temperature, controls the randomness of the output, must be a positive number. The value range is (0.0,1.0], which cannot be equal to 0. The default value is 0.95. The larger the value, the more random and creative the output will be; the smaller the value, The output will be more stable or certain. It is recommended that you adjust the top_p or temperature parameters according to the application scenario, but do not adjust both parameters at the same time. + - name: top_p + use_template: top_p + default: 0.7 + help: + zh_Hans: 用温度取样的另一种方法,称为核取样取值范围是:(0.0, 1.0) 开区间,不能等于 0 或 1,默认值为 0.7 模型考虑具有 top_p 概率质量tokens的结果例如:0.1 意味着模型解码器只考虑从前 10% 的概率的候选集中取 tokens 建议您根据应用场景调整 top_p 或 temperature 参数,但不要同时调整两个参数。 + en_US: Another method of temperature sampling is called kernel sampling. The value range is (0.0, 1.0) open interval, which cannot be equal to 0 or 1. The default value is 0.7. The model considers the results with top_p probability mass tokens. For example 0.1 means The model decoder only considers tokens from the candidate set with the top 10% probability. It is recommended that you adjust the top_p or temperature parameters according to the application scenario, but do not adjust both parameters at the same time. + - name: do_sample + label: + zh_Hans: 采样策略 + en_US: Sampling strategy + type: boolean + help: + zh_Hans: do_sample 为 true 时启用采样策略,do_sample 为 false 时采样策略 temperature、top_p 将不生效。默认值为 true。 + en_US: When `do_sample` is set to true, the sampling strategy is enabled. When `do_sample` is set to false, the sampling strategies such as `temperature` and `top_p` will not take effect. The default value is true. + default: true + - name: max_tokens + use_template: max_tokens + default: 1024 + min: 1 + max: 4095 + - name: web_search + type: boolean + label: + zh_Hans: 联网搜索 + en_US: Web Search + default: false + help: + zh_Hans: 模型内置了互联网搜索服务,该参数控制模型在生成文本时是否参考使用互联网搜索结果。启用互联网搜索,模型会将搜索结果作为文本生成过程中的参考信息,但模型会基于其内部逻辑“自行判断”是否使用互联网搜索结果。 + en_US: The model has a built-in Internet search service. This parameter controls whether the model refers to Internet search results when generating text. When Internet search is enabled, the model will use the search results as reference information in the text generation process, but the model will "judge" whether to use Internet search results based on its internal logic. + - name: response_format + label: + zh_Hans: 回复格式 + en_US: Response Format + type: string + help: + zh_Hans: 指定模型必须输出的格式 + en_US: specifying the format that the model must output + required: false + options: + - text + - json_object +pricing: + input: '0.0005' + output: '0.0005' + unit: '0.001' + currency: RMB diff --git a/ai-provider/model-runtime/model-providers/zhipuai/llm/glm-4-flashx.yaml b/ai-provider/model-runtime/model-providers/zhipuai/llm/glm-4-flashx.yaml new file mode 100644 index 00000000..abd95a3a --- /dev/null +++ b/ai-provider/model-runtime/model-providers/zhipuai/llm/glm-4-flashx.yaml @@ -0,0 +1,66 @@ +model: glm-4-flashx +label: + en_US: glm-4-flashx +model_type: llm +features: + - multi-tool-call + - agent-thought + - stream-tool-call +model_properties: + mode: chat + context_size: 131072 +parameter_rules: + - name: temperature + use_template: temperature + default: 0.95 + min: 0.0 + max: 1.0 + help: + zh_Hans: 采样温度,控制输出的随机性,必须为正数取值范围是:(0.0,1.0],不能等于 0,默认值为 0.95 值越大,会使输出更随机,更具创造性;值越小,输出会更加稳定或确定建议您根据应用场景调整 top_p 或 temperature 参数,但不要同时调整两个参数。 + en_US: Sampling temperature, controls the randomness of the output, must be a positive number. The value range is (0.0,1.0], which cannot be equal to 0. The default value is 0.95. The larger the value, the more random and creative the output will be; the smaller the value, The output will be more stable or certain. It is recommended that you adjust the top_p or temperature parameters according to the application scenario, but do not adjust both parameters at the same time. + - name: top_p + use_template: top_p + default: 0.7 + help: + zh_Hans: 用温度取样的另一种方法,称为核取样取值范围是:(0.0, 1.0) 开区间,不能等于 0 或 1,默认值为 0.7 模型考虑具有 top_p 概率质量tokens的结果例如:0.1 意味着模型解码器只考虑从前 10% 的概率的候选集中取 tokens 建议您根据应用场景调整 top_p 或 temperature 参数,但不要同时调整两个参数。 + en_US: Another method of temperature sampling is called kernel sampling. The value range is (0.0, 1.0) open interval, which cannot be equal to 0 or 1. The default value is 0.7. The model considers the results with top_p probability mass tokens. For example 0.1 means The model decoder only considers tokens from the candidate set with the top 10% probability. It is recommended that you adjust the top_p or temperature parameters according to the application scenario, but do not adjust both parameters at the same time. + - name: do_sample + label: + zh_Hans: 采样策略 + en_US: Sampling strategy + type: boolean + help: + zh_Hans: do_sample 为 true 时启用采样策略,do_sample 为 false 时采样策略 temperature、top_p 将不生效。默认值为 true。 + en_US: When `do_sample` is set to true, the sampling strategy is enabled. When `do_sample` is set to false, the sampling strategies such as `temperature` and `top_p` will not take effect. The default value is true. + default: true + - name: max_tokens + use_template: max_tokens + default: 1024 + min: 1 + max: 4095 + - name: web_search + type: boolean + label: + zh_Hans: 联网搜索 + en_US: Web Search + default: false + help: + zh_Hans: 模型内置了互联网搜索服务,该参数控制模型在生成文本时是否参考使用互联网搜索结果。启用互联网搜索,模型会将搜索结果作为文本生成过程中的参考信息,但模型会基于其内部逻辑“自行判断”是否使用互联网搜索结果。 + en_US: The model has a built-in Internet search service. This parameter controls whether the model refers to Internet search results when generating text. When Internet search is enabled, the model will use the search results as reference information in the text generation process, but the model will "judge" whether to use Internet search results based on its internal logic. + - name: response_format + label: + zh_Hans: 回复格式 + en_US: Response Format + type: string + help: + zh_Hans: 指定模型必须输出的格式 + en_US: specifying the format that the model must output + required: false + options: + - text + - json_object +pricing: + input: '0' + output: '0' + unit: '0.001' + currency: RMB diff --git a/ai-provider/model-runtime/model-providers/zhipuai/llm/glm_4v_flash.yaml b/ai-provider/model-runtime/model-providers/zhipuai/llm/glm_4v_flash.yaml new file mode 100644 index 00000000..9e3a7f20 --- /dev/null +++ b/ai-provider/model-runtime/model-providers/zhipuai/llm/glm_4v_flash.yaml @@ -0,0 +1,64 @@ +model: glm-4v-flash +label: + en_US: glm-4v-flash +model_type: llm +model_properties: + mode: chat + context_size: 2048 +features: + - vision +parameter_rules: + - name: temperature + use_template: temperature + default: 0.95 + min: 0.0 + max: 1.0 + help: + zh_Hans: 采样温度,控制输出的随机性,必须为正数取值范围是:(0.0,1.0],不能等于 0,默认值为 0.95 值越大,会使输出更随机,更具创造性;值越小,输出会更加稳定或确定建议您根据应用场景调整 top_p 或 temperature 参数,但不要同时调整两个参数。 + en_US: Sampling temperature, controls the randomness of the output, must be a positive number. The value range is (0.0,1.0], which cannot be equal to 0. The default value is 0.95. The larger the value, the more random and creative the output will be; the smaller the value, The output will be more stable or certain. It is recommended that you adjust the top_p or temperature parameters according to the application scenario, but do not adjust both parameters at the same time. + - name: top_p + use_template: top_p + default: 0.6 + help: + zh_Hans: 用温度取样的另一种方法,称为核取样取值范围是:(0.0, 1.0) 开区间,不能等于 0 或 1,默认值为 0.7 模型考虑具有 top_p 概率质量tokens的结果例如:0.1 意味着模型解码器只考虑从前 10% 的概率的候选集中取 tokens 建议您根据应用场景调整 top_p 或 temperature 参数,但不要同时调整两个参数。 + en_US: Another method of temperature sampling is called kernel sampling. The value range is (0.0, 1.0) open interval, which cannot be equal to 0 or 1. The default value is 0.7. The model considers the results with top_p probability mass tokens. For example 0.1 means The model decoder only considers tokens from the candidate set with the top 10% probability. It is recommended that you adjust the top_p or temperature parameters according to the application scenario, but do not adjust both parameters at the same time. + - name: do_sample + label: + zh_Hans: 采样策略 + en_US: Sampling strategy + type: boolean + help: + zh_Hans: do_sample 为 true 时启用采样策略,do_sample 为 false 时采样策略 temperature、top_p 将不生效。默认值为 true。 + en_US: When `do_sample` is set to true, the sampling strategy is enabled. When `do_sample` is set to false, the sampling strategies such as `temperature` and `top_p` will not take effect. The default value is true. + default: true + - name: max_tokens + use_template: max_tokens + default: 1024 + min: 1 + max: 1024 + - name: web_search + type: boolean + label: + zh_Hans: 联网搜索 + en_US: Web Search + default: false + help: + zh_Hans: 模型内置了互联网搜索服务,该参数控制模型在生成文本时是否参考使用互联网搜索结果。启用互联网搜索,模型会将搜索结果作为文本生成过程中的参考信息,但模型会基于其内部逻辑“自行判断”是否使用互联网搜索结果。 + en_US: The model has a built-in Internet search service. This parameter controls whether the model refers to Internet search results when generating text. When Internet search is enabled, the model will use the search results as reference information in the text generation process, but the model will "judge" whether to use Internet search results based on its internal logic. + - name: response_format + label: + zh_Hans: 回复格式 + en_US: Response Format + type: string + help: + zh_Hans: 指定模型必须输出的格式 + en_US: specifying the format that the model must output + required: false + options: + - text + - json_object +pricing: + input: '0.00' + output: '0.00' + unit: '0.000001' + currency: RMB diff --git a/controller/ai-api/iml.go b/controller/ai-api/iml.go index d66a77a3..05e9baca 100644 --- a/controller/ai-api/iml.go +++ b/controller/ai-api/iml.go @@ -48,10 +48,14 @@ func (i *imlAPIController) Create(ctx *gin.Context, serviceId string, input *ai_ } } if input.AiModel != nil { + provider := "ollama" + if input.AiModel.Type != "local" { + provider = input.AiModel.Provider + } plugins["ai_formatter"] = api.PluginSetting{ Config: plugin_model.ConfigType{ "model": input.AiModel.Id, - "provider": input.AiModel.Provider, + "provider": provider, "config": input.AiModel.Config, }, } @@ -102,10 +106,14 @@ func (i *imlAPIController) Edit(ctx *gin.Context, serviceId string, apiId string } //var upstream *string if input.AiModel != nil { + provider := "ollama" + if input.AiModel.Type != "local" { + provider = input.AiModel.Provider + } proxy.Plugins["ai_formatter"] = api.PluginSetting{ Config: plugin_model.ConfigType{ "model": input.AiModel.Id, - "provider": input.AiModel.Provider, + "provider": provider, "config": input.AiModel.Config, }, } diff --git a/controller/ai-balance/controller.go b/controller/ai-balance/controller.go new file mode 100644 index 00000000..96969176 --- /dev/null +++ b/controller/ai-balance/controller.go @@ -0,0 +1,22 @@ +package ai_balance + +import ( + "reflect" + + ai_balance_dto "github.com/APIParkLab/APIPark/module/ai-balance/dto" + "github.com/eolinker/go-common/autowire" + "github.com/gin-gonic/gin" +) + +type IBalanceController interface { + List(ctx *gin.Context, keyword string) ([]*ai_balance_dto.Item, error) + Sort(ctx *gin.Context, input *ai_balance_dto.Sort) error + Create(ctx *gin.Context, input *ai_balance_dto.Create) error + Delete(ctx *gin.Context, id string) error +} + +func init() { + autowire.Auto[IBalanceController](func() reflect.Value { + return reflect.ValueOf(new(imlBalanceController)) + }) +} diff --git a/controller/ai-balance/iml.go b/controller/ai-balance/iml.go new file mode 100644 index 00000000..f21585d3 --- /dev/null +++ b/controller/ai-balance/iml.go @@ -0,0 +1,29 @@ +package ai_balance + +import ( + ai_balance "github.com/APIParkLab/APIPark/module/ai-balance" + ai_balance_dto "github.com/APIParkLab/APIPark/module/ai-balance/dto" + "github.com/gin-gonic/gin" +) + +var _ IBalanceController = (*imlBalanceController)(nil) + +type imlBalanceController struct { + module ai_balance.IBalanceModule `autowired:""` +} + +func (i *imlBalanceController) List(ctx *gin.Context, keyword string) ([]*ai_balance_dto.Item, error) { + return i.module.List(ctx, keyword) +} + +func (i *imlBalanceController) Sort(ctx *gin.Context, input *ai_balance_dto.Sort) error { + return i.module.Sort(ctx, input) +} + +func (i *imlBalanceController) Create(ctx *gin.Context, input *ai_balance_dto.Create) error { + return i.module.Create(ctx, input) +} + +func (i *imlBalanceController) Delete(ctx *gin.Context, id string) error { + return i.module.Delete(ctx, id) +} diff --git a/controller/ai-local/controller.go b/controller/ai-local/controller.go new file mode 100644 index 00000000..82139df5 --- /dev/null +++ b/controller/ai-local/controller.go @@ -0,0 +1,29 @@ +package ai_local + +import ( + "reflect" + + ai_local_dto "github.com/APIParkLab/APIPark/module/ai-local/dto" + "github.com/eolinker/go-common/autowire" + "github.com/gin-gonic/gin" +) + +type ILocalModelController interface { + Search(ctx *gin.Context, keyword string) ([]*ai_local_dto.LocalModelItem, error) + ListCanInstall(ctx *gin.Context, keyword string) ([]*ai_local_dto.LocalModelPackageItem, error) + Deploy(ctx *gin.Context) + DeployStart(ctx *gin.Context, input *ai_local_dto.DeployInput) error + CancelDeploy(ctx *gin.Context, input *ai_local_dto.CancelDeploy) error + RemoveModel(ctx *gin.Context, model string) error + Update(ctx *gin.Context, model string, input *ai_local_dto.Update) error + State(ctx *gin.Context, model string) (*ai_local_dto.DeployState, *ai_local_dto.ModelInfo, error) + SimpleList(ctx *gin.Context) ([]*ai_local_dto.SimpleItem, error) + OllamaConfig(ctx *gin.Context) (*ai_local_dto.OllamaConfig, error) + OllamaConfigUpdate(ctx *gin.Context, input *ai_local_dto.OllamaConfig) error +} + +func init() { + autowire.Auto[ILocalModelController](func() reflect.Value { + return reflect.ValueOf(new(imlLocalModelController)) + }) +} diff --git a/controller/ai-local/iml.go b/controller/ai-local/iml.go new file mode 100644 index 00000000..e436609a --- /dev/null +++ b/controller/ai-local/iml.go @@ -0,0 +1,377 @@ +package ai_local + +import ( + "context" + "encoding/json" + "fmt" + "io" + "math" + "net/http" + "net/url" + "strings" + "time" + + ai_balance "github.com/APIParkLab/APIPark/module/ai-balance" + + "github.com/APIParkLab/APIPark/module/system" + system_dto "github.com/APIParkLab/APIPark/module/system/dto" + ollama_api "github.com/ollama/ollama/api" + + "github.com/APIParkLab/APIPark/module/subscribe" + subscribe_dto "github.com/APIParkLab/APIPark/module/subscribe/dto" + + "github.com/APIParkLab/APIPark/model/plugin_model" + "github.com/APIParkLab/APIPark/service/api" + + ai_api_dto "github.com/APIParkLab/APIPark/module/ai-api/dto" + router_dto "github.com/APIParkLab/APIPark/module/router/dto" + + "github.com/APIParkLab/APIPark/module/router" + + ai_api "github.com/APIParkLab/APIPark/module/ai-api" + + "github.com/APIParkLab/APIPark/module/catalogue" + + "github.com/APIParkLab/APIPark/module/service" + + "github.com/eolinker/go-common/store" + + service_dto "github.com/APIParkLab/APIPark/module/service/dto" + + ai_provider_local "github.com/APIParkLab/APIPark/ai-provider/local" + + "github.com/eolinker/eosc/log" + + ai_local "github.com/APIParkLab/APIPark/module/ai-local" + ai_local_dto "github.com/APIParkLab/APIPark/module/ai-local/dto" + "github.com/gin-gonic/gin" + "github.com/google/uuid" +) + +var _ ILocalModelController = &imlLocalModelController{} + +type imlLocalModelController struct { + module ai_local.ILocalModelModule `autowired:""` + serviceModule service.IServiceModule `autowired:""` + catalogueModule catalogue.ICatalogueModule `autowired:""` + aiAPIModule ai_api.IAPIModule `autowired:""` + aiBalanceModule ai_balance.IBalanceModule `autowired:""` + appModule service.IAppModule `autowired:""` + routerModule router.IRouterModule `autowired:""` + subscribeModule subscribe.ISubscribeModule `autowired:""` + docModule service.IServiceDocModule `autowired:""` + settingModule system.ISettingModule `autowired:""` + transaction store.ITransaction `autowired:""` +} + +func (i *imlLocalModelController) OllamaConfig(ctx *gin.Context) (*ai_local_dto.OllamaConfig, error) { + cfg := i.settingModule.Get(ctx) + return &ai_local_dto.OllamaConfig{ + Address: cfg.OllamaAddress, + }, nil +} + +var ( + client = &http.Client{ + Timeout: 2 * time.Second, + } +) + +func (i *imlLocalModelController) OllamaConfigUpdate(ctx *gin.Context, input *ai_local_dto.OllamaConfig) error { + u, err := url.Parse(input.Address) + if err != nil { + return nil + } + ollamaClient := ollama_api.NewClient(u, client) + _, err = ollamaClient.Version(ctx) + if err != nil { + return err + } + return i.transaction.Transaction(ctx, func(ctx context.Context) error { + err = i.module.SyncLocalModels(ctx, input.Address) + if err != nil { + return err + } + err = i.aiBalanceModule.SyncLocalBalances(ctx, input.Address) + if err != nil { + return err + } + + return i.settingModule.Set(ctx, &system_dto.InputSetting{ + OllamaAddress: &input.Address, + }) + }) +} + +func (i *imlLocalModelController) SimpleList(ctx *gin.Context) ([]*ai_local_dto.SimpleItem, error) { + return i.module.SimpleList(ctx) +} + +func (i *imlLocalModelController) State(ctx *gin.Context, model string) (*ai_local_dto.DeployState, *ai_local_dto.ModelInfo, error) { + return i.module.ModelState(ctx, model) +} + +// 自动选择合适的单位 +func humanReadableSize(size int64) string { + const ( + KB = 1000 + MB = 1000 * KB + GB = 1000 * MB + ) + + switch { + case size >= GB: + return fmt.Sprintf("%.1f GB", math.Round(float64(size)/float64(GB)*10)/10) + case size >= MB: + return fmt.Sprintf("%.1f MB", math.Round(float64(size)/float64(MB)*10)/10) + case size >= KB: + return fmt.Sprintf("%.1f KB", math.Round(float64(size)/float64(KB)*10)/10) + default: + return fmt.Sprintf("%d B", size) + } +} +func (i *imlLocalModelController) Deploy(ctx *gin.Context) { + + var input ai_local_dto.DeployInput + err := ctx.ShouldBindBodyWithJSON(&input) + if err != nil { + ctx.JSON(200, gin.H{ + "code": -1, "msg": err.Error(), "success": "fail", + }) + return + } + if input.Model == "" { + ctx.JSON(200, gin.H{ + "code": -1, "msg": "model is required", "success": "fail", + }) + return + } + + id := uuid.NewString() + p, err := i.module.Deploy(ctx, input.Model, id) + if err != nil { + ctx.JSON(200, gin.H{ + "code": -1, "msg": err.Error(), "success": "fail", + }) + return + } + done := make(chan struct{}) + // 启动一个 goroutine 监听客户端关闭连接 + go func() { + select { + case <-ctx.Writer.CloseNotify(): + + case <-done: + + } + ai_provider_local.CancelPipeline(input.Model, id) + }() + var complete int64 + var total int64 + ctx.Header("Content-Type", "text/plain; charset=utf-8") + ctx.Header("text-encoding", "chunked") + ctx.Stream(func(w io.Writer) bool { + msg, ok := <-p.Message() + if !ok { + return false + } + state := "download" + switch msg.Status { + case "verifying sha256 digest": + state = "deploy" + case "writing manifest": + state = "initializing" + case "removing any unused layers": + state = "initializing" + case "success": + state = "finish" + case "error": + state = "error" + } + if msg.Completed > complete { + complete = msg.Completed + } + if msg.Total > total { + total = msg.Total + } + result := map[string]interface{}{ + "code": 0, + "msg": "", + "data": map[string]interface{}{ + "message": msg.Msg, + "info": map[string]interface{}{ + "current": humanReadableSize(complete), + "total": humanReadableSize(total), + }, + "state": state, + }, + } + data, _ := json.Marshal(result) + + _, err = w.Write(data) + if err != nil { + log.Error("write message error: %v", err) + return false + } + _, err = w.Write([]byte("\n")) + if err != nil { + log.Error("write message error: %v", err) + return false + } + + return true + }) + close(done) +} + +func (i *imlLocalModelController) DeployStart(ctx *gin.Context, input *ai_local_dto.DeployInput) error { + fn, err := i.initAILocalService(ctx, input.Model, input.Team) + if err != nil { + return err + } + id := uuid.NewString() + _, err = i.module.Deploy(ctx, input.Model, id, fn) + if err != nil { + return err + } + ai_provider_local.CancelPipeline(input.Model, id) + return nil +} + +func (i *imlLocalModelController) initAILocalService(ctx context.Context, model string, teamID string) (func() error, error) { + catalogueInfo, err := i.catalogueModule.DefaultCatalogue(ctx) + if err != nil { + return nil, err + } + serviceId := uuid.NewString() + prefix := fmt.Sprintf("/%s", serviceId[:8]) + providerId := "ollama" + err = i.transaction.Transaction(ctx, func(ctx context.Context) error { + _, err = i.serviceModule.Create(ctx, teamID, &service_dto.CreateService{ + Id: serviceId, + Name: model, + Prefix: prefix, + Description: "Auto generated service for AI model " + model, + ServiceType: "public", + State: "deploying", + Catalogue: catalogueInfo.Id, + ApprovalType: "auto", + Kind: "ai", + Provider: &providerId, + Model: &model, + }) + if err != nil { + return err + } + return i.module.SaveCache(ctx, model, serviceId) + }) + + return func() error { + path := fmt.Sprintf("/%s/chat", strings.Trim(prefix, "/")) + timeout := 300000 + retry := 0 + aiPrompt := &ai_api_dto.AiPrompt{ + Variables: []*ai_api_dto.AiPromptVariable{}, + Prompt: "", + } + aiModel := &ai_api_dto.AiModel{ + Id: model, + Config: ai_provider_local.OllamaConfig, + Provider: providerId, + Type: "local", + } + name := "Demo AI API" + description := "This is a demo that shows you how to use a Chat API." + apiId := uuid.NewString() + err = i.aiAPIModule.Create( + ctx, + serviceId, + &ai_api_dto.CreateAPI{ + Id: apiId, + Name: name, + Path: path, + Description: description, + Disable: false, + AiPrompt: aiPrompt, + AiModel: aiModel, + Timeout: timeout, + Retry: retry, + }, + ) + if err != nil { + return err + } + plugins := make(map[string]api.PluginSetting) + plugins["ai_prompt"] = api.PluginSetting{ + Config: plugin_model.ConfigType{ + "prompt": aiPrompt.Prompt, + "variables": aiPrompt.Variables, + }, + } + plugins["ai_formatter"] = api.PluginSetting{ + Config: plugin_model.ConfigType{ + "model": aiModel.Id, + "provider": providerId, + "config": aiModel.Config, + }, + } + _, err = i.routerModule.Create(ctx, serviceId, &router_dto.Create{ + Id: apiId, + Name: name, + Path: path, + Methods: []string{ + http.MethodPost, + }, + Description: description, + Protocols: []string{"http", "https"}, + MatchRules: nil, + Proxy: &router_dto.InputProxy{ + Path: path, + Timeout: timeout, + Retry: retry, + Plugins: plugins, + }, + Disable: false, + }) + if err != nil { + return err + } + apps, err := i.appModule.Search(ctx, teamID, "") + if err != nil { + return err + } + for _, app := range apps { + i.subscribeModule.AddSubscriber(ctx, serviceId, &subscribe_dto.AddSubscriber{ + Application: app.Id, + }) + } + return i.docModule.SaveServiceDoc(ctx, serviceId, &service_dto.SaveServiceDoc{ + Doc: "", + }) + }, err +} + +func (i *imlLocalModelController) Search(ctx *gin.Context, keyword string) ([]*ai_local_dto.LocalModelItem, error) { + return i.module.Search(ctx, keyword) +} + +func (i *imlLocalModelController) ListCanInstall(ctx *gin.Context, keyword string) ([]*ai_local_dto.LocalModelPackageItem, error) { + return i.module.ListCanInstall(ctx, keyword) +} + +func (i *imlLocalModelController) CancelDeploy(ctx *gin.Context, input *ai_local_dto.CancelDeploy) error { + return i.module.CancelDeploy(ctx, input.Model) +} + +func (i *imlLocalModelController) RemoveModel(ctx *gin.Context, model string) error { + return i.module.RemoveModel(ctx, model) +} + +func (i *imlLocalModelController) Update(ctx *gin.Context, model string, input *ai_local_dto.Update) error { + switch input.Disable { + case true: + return i.module.Disable(ctx, model) + default: + return i.module.Enable(ctx, model) + } +} diff --git a/controller/ai/controller.go b/controller/ai/controller.go index 581425d9..e4b2a5a5 100644 --- a/controller/ai/controller.go +++ b/controller/ai/controller.go @@ -9,10 +9,10 @@ import ( ) type IProviderController interface { - ConfiguredProviders(ctx *gin.Context) ([]*ai_dto.ConfiguredProviderItem, *ai_dto.BackupProvider, error) + ConfiguredProviders(ctx *gin.Context, keyword string) ([]*ai_dto.ConfiguredProviderItem, error) UnConfiguredProviders(ctx *gin.Context) ([]*ai_dto.ProviderItem, error) SimpleProviders(ctx *gin.Context) ([]*ai_dto.SimpleProviderItem, error) - SimpleConfiguredProviders(ctx *gin.Context) ([]*ai_dto.SimpleProviderItem, *ai_dto.BackupProvider, error) + SimpleConfiguredProviders(ctx *gin.Context, all string) ([]*ai_dto.SimpleProviderItem, *ai_dto.BackupProvider, error) Provider(ctx *gin.Context, id string) (*ai_dto.Provider, error) SimpleProvider(ctx *gin.Context, id string) (*ai_dto.SimpleProvider, error) LLMs(ctx *gin.Context, driver string) ([]*ai_dto.LLMItem, *ai_dto.ProviderItem, error) @@ -20,7 +20,8 @@ type IProviderController interface { Disable(ctx *gin.Context, id string) error UpdateProviderConfig(ctx *gin.Context, id string, input *ai_dto.UpdateConfig) error UpdateProviderDefaultLLM(ctx *gin.Context, id string, input *ai_dto.UpdateLLM) error - Sort(ctx *gin.Context, input *ai_dto.Sort) error + Delete(ctx *gin.Context, id string) error + //Sort(ctx *gin.Context, input *ai_dto.Sort) error } type IStatisticController interface { diff --git a/controller/ai/iml.go b/controller/ai/iml.go index 78b51087..c7eee3b9 100644 --- a/controller/ai/iml.go +++ b/controller/ai/iml.go @@ -17,12 +17,16 @@ type imlProviderController struct { module ai.IProviderModule `autowired:""` } -func (i *imlProviderController) Sort(ctx *gin.Context, input *ai_dto.Sort) error { - return i.module.Sort(ctx, input) +func (i *imlProviderController) Delete(ctx *gin.Context, id string) error { + return i.module.Delete(ctx, id) } -func (i *imlProviderController) ConfiguredProviders(ctx *gin.Context) ([]*ai_dto.ConfiguredProviderItem, *ai_dto.BackupProvider, error) { - return i.module.ConfiguredProviders(ctx) +//func (i *imlProviderController) Sort(ctx *gin.Context, input *ai_dto.Sort) error { +// return i.module.Sort(ctx, input) +//} + +func (i *imlProviderController) ConfiguredProviders(ctx *gin.Context, keyword string) ([]*ai_dto.ConfiguredProviderItem, error) { + return i.module.ConfiguredProviders(ctx, keyword) } func (i *imlProviderController) UnConfiguredProviders(ctx *gin.Context) ([]*ai_dto.ProviderItem, error) { @@ -33,8 +37,11 @@ func (i *imlProviderController) SimpleProviders(ctx *gin.Context) ([]*ai_dto.Sim return i.module.SimpleProviders(ctx) } -func (i *imlProviderController) SimpleConfiguredProviders(ctx *gin.Context) ([]*ai_dto.SimpleProviderItem, *ai_dto.BackupProvider, error) { - return i.module.SimpleConfiguredProviders(ctx) +func (i *imlProviderController) SimpleConfiguredProviders(ctx *gin.Context, all string) ([]*ai_dto.SimpleProviderItem, *ai_dto.BackupProvider, error) { + if all == "true" { + return i.module.SimpleConfiguredProviders(ctx, true) + } + return i.module.SimpleConfiguredProviders(ctx, false) } func (i *imlProviderController) Provider(ctx *gin.Context, id string) (*ai_dto.Provider, error) { diff --git a/controller/service/iml.go b/controller/service/iml.go index f75d66bf..e2f0bf32 100644 --- a/controller/service/iml.go +++ b/controller/service/iml.go @@ -3,10 +3,27 @@ package service import ( "context" "fmt" + "io" "net/http" "strings" "time" + ai_provider_local "github.com/APIParkLab/APIPark/ai-provider/local" + + subscribe_dto "github.com/APIParkLab/APIPark/module/subscribe/dto" + + "github.com/APIParkLab/APIPark/module/subscribe" + + ai_local "github.com/APIParkLab/APIPark/module/ai-local" + + ai_dto "github.com/APIParkLab/APIPark/module/ai/dto" + + api_doc_dto "github.com/APIParkLab/APIPark/module/api-doc/dto" + + "github.com/APIParkLab/APIPark/module/catalogue" + + "github.com/APIParkLab/APIPark/module/team" + "github.com/eolinker/go-common/pm3" "github.com/APIParkLab/APIPark/module/system" @@ -15,8 +32,6 @@ import ( api_doc "github.com/APIParkLab/APIPark/module/api-doc" - upstream_dto "github.com/APIParkLab/APIPark/module/upstream/dto" - "github.com/eolinker/eosc/log" application_authorization "github.com/APIParkLab/APIPark/module/application-authorization" @@ -40,6 +55,10 @@ import ( "github.com/google/uuid" ) +//var ( +// ollamaConfig = "{\n \"mirostat\": 0,\n \"mirostat_eta\": 0.1,\n \"mirostat_tau\": 5.0,\n \"num_ctx\": 4096,\n \"repeat_last_n\":64,\n \"repeat_penalty\": 1.1,\n \"temperature\": 0.7,\n \"seed\": 42,\n \"num_predict\": 42,\n \"top_k\": 40,\n \"top_p\": 0.9,\n \"min_p\": 0.5\n}\n" +//) + var ( _ IServiceController = (*imlServiceController)(nil) @@ -47,15 +66,138 @@ var ( ) type imlServiceController struct { - module service.IServiceModule `autowired:""` - docModule service.IServiceDocModule `autowired:""` - aiAPIModule ai_api.IAPIModule `autowired:""` - routerModule router.IRouterModule `autowired:""` - apiDocModule api_doc.IAPIDocModule `autowired:""` - providerModule ai.IProviderModule `autowired:""` - upstreamModule upstream.IUpstreamModule `autowired:""` - settingModule system.ISettingModule `autowired:""` - transaction store.ITransaction `autowired:""` + module service.IServiceModule `autowired:""` + docModule service.IServiceDocModule `autowired:""` + subscribeModule subscribe.ISubscribeModule `autowired:""` + aiAPIModule ai_api.IAPIModule `autowired:""` + routerModule router.IRouterModule `autowired:""` + apiDocModule api_doc.IAPIDocModule `autowired:""` + providerModule ai.IProviderModule `autowired:""` + aiLocalModel ai_local.ILocalModelModule `autowired:""` + appModule service.IAppModule `autowired:""` + upstreamModule upstream.IUpstreamModule `autowired:""` + settingModule system.ISettingModule `autowired:""` + teamModule team.ITeamModule `autowired:""` + catalogueModule catalogue.ICatalogueModule `autowired:""` + transaction store.ITransaction `autowired:""` +} + +func (i *imlServiceController) QuickCreateAIService(ctx *gin.Context, input *service_dto.QuickCreateAIService) error { + return i.transaction.Transaction(ctx, func(txCtx context.Context) error { + enable := true + err := i.providerModule.UpdateProviderConfig(ctx, input.Provider, &ai_dto.UpdateConfig{ + Config: input.Config, + Enable: &enable, + }) + if err != nil { + return err + } + p, err := i.providerModule.Provider(ctx, input.Provider) + if err != nil { + return err + } + id := uuid.NewString() + prefix := fmt.Sprintf("/%s", id[:8]) + catalogueInfo, err := i.catalogueModule.DefaultCatalogue(ctx) + if err != nil { + return err + } + _, err = i.createAIService(ctx, input.Team, &service_dto.CreateService{ + Id: uuid.NewString(), + Name: input.Provider + " AI Service", + Prefix: prefix, + Description: "Quick create by AI provider", + ServiceType: "public", + State: "normal", + Catalogue: catalogueInfo.Id, + ApprovalType: "auto", + Provider: &input.Provider, + Model: &p.DefaultLLM, + Kind: "ai", + }) + return err + }) +} + +func (i *imlServiceController) QuickCreateRestfulService(ctx *gin.Context) error { + fileHeader, err := ctx.FormFile("file") + if err != nil { + return err + } + file, err := fileHeader.Open() + if err != nil { + return err + } + content, err := io.ReadAll(file) + if err != nil { + return err + } + typ := ctx.PostForm("type") + switch typ { + case "swagger", "": + default: + return fmt.Errorf("type %s not support", typ) + } + + return i.transaction.Transaction(ctx, func(txCtx context.Context) error { + teamId := ctx.PostForm("team") + id := uuid.NewString() + prefix := fmt.Sprintf("/%s", id[:8]) + catalogueInfo, err := i.catalogueModule.DefaultCatalogue(ctx) + if err != nil { + return err + } + s, err := i.module.Create(ctx, teamId, &service_dto.CreateService{ + Id: uuid.NewString(), + Name: "Restful Service By Swagger", + Prefix: prefix, + Description: "Auto create by upload swagger", + ServiceType: "public", + State: "normal", + Catalogue: catalogueInfo.Id, + ApprovalType: "auto", + Kind: "rest", + }) + if err != nil { + return err + } + _, err = i.apiDocModule.UpdateDoc(ctx, s.Id, &api_doc_dto.UpdateDoc{ + Id: s.Id, + Content: string(content), + }) + if err != nil { + return err + } + path := prefix + "/" + _, err = i.routerModule.Create(ctx, s.Id, &router_dto.Create{ + Id: uuid.NewString(), + Name: "", + Path: path + "*", + Methods: []string{http.MethodGet, http.MethodPost, http.MethodPut, http.MethodDelete, http.MethodPatch, http.MethodOptions}, + Description: "auto create by create service", + Protocols: []string{"http", "https"}, + Proxy: &router_dto.InputProxy{ + Path: path, + Timeout: 30000, + Retry: 0, + }, + Disable: false, + }) + if err != nil { + return err + } + apps, err := i.appModule.Search(ctx, teamId, "") + if err != nil { + return err + } + for _, app := range apps { + i.subscribeModule.AddSubscriber(ctx, id, &subscribe_dto.AddSubscriber{ + Application: app.Id, + }) + } + + return nil + }) } var ( @@ -154,25 +296,18 @@ func (i *imlServiceController) editAIService(ctx *gin.Context, id string, input if input.Provider == nil { return nil, fmt.Errorf("provider is required") } - p, has := model_runtime.GetProvider(*input.Provider) - if !has { - return nil, fmt.Errorf("provider not found") - } - info, err := i.module.Get(ctx, id) - if err != nil { - - } - err = i.transaction.Transaction(ctx, func(txCtx context.Context) error { - info, err = i.module.Edit(ctx, id, input) - if err != nil { - return err + if *input.Provider != "ollama" { + _, has := model_runtime.GetProvider(*input.Provider) + if !has { + return nil, fmt.Errorf("provider not found") } - _, err = i.upstreamModule.Save(ctx, id, newAIUpstream(id, *input.Provider, p.URI())) - return err - }) + } + + info, err := i.module.Edit(ctx, id, input) if err != nil { return nil, err } + //_, err = i.upstreamModule.Save(ctx, id, newAIUpstream(id, *input.Provider, p.URI())) return info, nil } @@ -192,56 +327,61 @@ func (i *imlServiceController) createAIService(ctx *gin.Context, teamID string, input.Prefix = input.Id[:8] } } - pv, err := i.providerModule.Provider(ctx, *input.Provider) - if err != nil { - return nil, err - } - p, has := model_runtime.GetProvider(*input.Provider) - if !has { - return nil, fmt.Errorf("provider not found") - } - m, has := p.GetModel(pv.DefaultLLM) - if !has { - return nil, fmt.Errorf("model %s not found", pv.DefaultLLM) + modelId := "" + modelCfg := "" + modelType := "online" + if *input.Provider == "ollama" { + modelType = "local" + list, err := i.aiLocalModel.SimpleList(ctx) + if err != nil { + return nil, err + } + if len(list) == 0 { + return nil, fmt.Errorf("no local model") + } + modelId = list[0].Id + modelCfg = ai_provider_local.OllamaConfig + } else { + pv, err := i.providerModule.Provider(ctx, *input.Provider) + if err != nil { + return nil, err + } + p, has := model_runtime.GetProvider(*input.Provider) + if !has { + return nil, fmt.Errorf("provider not found") + } + m, has := p.GetModel(pv.DefaultLLM) + if !has { + return nil, fmt.Errorf("model %s not found", pv.DefaultLLM) + } + modelId = m.ID() + modelCfg = m.DefaultConfig() + } var info *service_dto.Service - err = i.transaction.Transaction(ctx, func(txCtx context.Context) error { + err := i.transaction.Transaction(ctx, func(txCtx context.Context) error { var err error info, err = i.module.Create(ctx, teamID, input) if err != nil { return err } - path := fmt.Sprintf("/%s/demo_translation_api", strings.Trim(input.Prefix, "/")) + prefix := strings.Replace(input.Prefix, ":", "_", -1) + path := fmt.Sprintf("/%s/chat", strings.Trim(prefix, "/")) timeout := 300000 retry := 0 aiPrompt := &ai_api_dto.AiPrompt{ - Variables: []*ai_api_dto.AiPromptVariable{ - { - Key: "source_lang", - Description: "", - Require: true, - }, - { - Key: "target_lang", - Description: "", - Require: true, - }, - { - Key: "text", - Description: "", - Require: true, - }, - }, - Prompt: "You need to translate {{source_lang}} into {{target_lang}}, and the following is the content that needs to be translated.\n---\n{{text}}", + Variables: []*ai_api_dto.AiPromptVariable{}, + Prompt: "", } aiModel := &ai_api_dto.AiModel{ - Id: m.ID(), - Config: m.DefaultConfig(), + Id: modelId, + Config: modelCfg, Provider: *input.Provider, + Type: modelType, } - name := "Demo Translation API" - description := "A demo that shows you how to use a prompt to create a Translation API." + name := "Demo AI API " + description := "This is a demo that shows you how to use a Chat API." apiId := uuid.New().String() err = i.aiAPIModule.Create( ctx, @@ -297,9 +437,18 @@ func (i *imlServiceController) createAIService(ctx *gin.Context, teamID string, if err != nil { return err } + apps, err := i.appModule.Search(ctx, info.Team.Id, "") + if err != nil { + return err + } + for _, app := range apps { + i.subscribeModule.AddSubscriber(ctx, info.Id, &subscribe_dto.AddSubscriber{ + Application: app.Id, + }) + } return i.docModule.SaveServiceDoc(ctx, info.Id, &service_dto.SaveServiceDoc{ - Doc: "The Translation API allows developers to translate text from one language to another. It supports multiple languages and enables easy integration of high-quality translation features into applications. With simple API requests, you can quickly translate content into different target languages.", + Doc: "", }) }) @@ -328,13 +477,13 @@ func (i *imlServiceController) Create(ctx *gin.Context, teamID string, input *se } var err error var info *service_dto.Service - err = i.transaction.Transaction(ctx, func(txCtx context.Context) error { - info, err = i.module.Create(txCtx, teamID, input) + err = i.transaction.Transaction(ctx, func(ctx context.Context) error { + info, err = i.module.Create(ctx, teamID, input) if err != nil { return err } path := fmt.Sprintf("/%s/", strings.Trim(input.Prefix, "/")) - _, err = i.routerModule.Create(txCtx, info.Id, &router_dto.Create{ + _, err = i.routerModule.Create(ctx, info.Id, &router_dto.Create{ Id: uuid.New().String(), Name: "", Path: path + "*", @@ -350,6 +499,15 @@ func (i *imlServiceController) Create(ctx *gin.Context, teamID string, input *se }, Disable: false, }) + apps, err := i.appModule.Search(ctx, teamID, "") + if err != nil { + return err + } + for _, app := range apps { + i.subscribeModule.AddSubscriber(ctx, info.Id, &subscribe_dto.AddSubscriber{ + Application: app.Id, + }) + } return err }) return info, err @@ -436,22 +594,22 @@ func (i *imlAppController) DeleteApp(ctx *gin.Context, appId string) error { return i.module.DeleteApp(ctx, appId) } -func newAIUpstream(id string, provider string, uri model_runtime.IProviderURI) *upstream_dto.Upstream { - return &upstream_dto.Upstream{ - Type: "http", - Balance: "round-robin", - Timeout: 300000, - Retry: 0, - Remark: fmt.Sprintf("auto create by ai service %s,provider is %s", id, provider), - LimitPeerSecond: 0, - ProxyHeaders: nil, - Scheme: uri.Scheme(), - PassHost: "node", - Nodes: []*upstream_dto.NodeConfig{ - { - Address: uri.Host(), - Weight: 100, - }, - }, - } -} +//func newAIUpstream(id string, provider string, uri model_runtime.IProviderURI) *upstream_dto.Upstream { +// return &upstream_dto.Upstream{ +// Type: "http", +// Balance: "round-robin", +// Timeout: 300000, +// Retry: 0, +// Remark: fmt.Sprintf("auto create by ai service %s,provider is %s", id, provider), +// LimitPeerSecond: 0, +// ProxyHeaders: nil, +// Scheme: uri.Scheme(), +// PassHost: "node", +// Nodes: []*upstream_dto.NodeConfig{ +// { +// Address: uri.Host(), +// Weight: 100, +// }, +// }, +// } +//} diff --git a/controller/service/service.go b/controller/service/service.go index c46ad21f..e3be79f8 100644 --- a/controller/service/service.go +++ b/controller/service/service.go @@ -16,6 +16,9 @@ type IServiceController interface { // SearchMyServices 搜索服务 SearchMyServices(ctx *gin.Context, teamID string, keyword string) ([]*service_dto.ServiceItem, error) Search(ctx *gin.Context, teamIDs string, keyword string) ([]*service_dto.ServiceItem, error) + QuickCreateRestfulService(ctx *gin.Context) error + + QuickCreateAIService(ctx *gin.Context, input *service_dto.QuickCreateAIService) error // Create 创建 Create(ctx *gin.Context, teamID string, input *service_dto.CreateService) (*service_dto.Service, error) // Edit 编辑 diff --git a/controller/system/iml.go b/controller/system/iml.go index f54e05b4..44f9e37e 100644 --- a/controller/system/iml.go +++ b/controller/system/iml.go @@ -10,6 +10,8 @@ import ( "strings" "time" + subscribe_dto "github.com/APIParkLab/APIPark/module/subscribe/dto" + "github.com/eolinker/eosc/log" ai_dto "github.com/APIParkLab/APIPark/module/ai/dto" @@ -222,6 +224,7 @@ type imlInitController struct { applicationAuthorizationModule application_authorization.IAuthorizationModule `autowired:""` catalogueModule catalogue.ICatalogueModule `autowired:""` providerModule ai.IProviderModule `autowired:""` + subscribeModule subscribe.ISubscribeModule `autowired:""` transaction store.ITransaction `autowired:""` aiAPIModule ai_api.IAPIModule `autowired:""` docModule service.IServiceDocModule `autowired:""` @@ -248,7 +251,7 @@ func (i *imlInitController) OnInit() { if len(items) == 0 { err = i.catalogueModule.Create(ctx, &catalogue_dto.CreateCatalogue{ Id: catalogueId, - Name: "Default Catalogue", + Name: "Default Category", }) if err != nil { return fmt.Errorf("create default catalogue error: %v", err) @@ -264,6 +267,13 @@ func (i *imlInitController) OnInit() { if err != nil { return fmt.Errorf("create default team error: %v", err) } + app, err := i.appModule.CreateApp(ctx, info.Id, &service_dto.CreateApp{ + Name: "Demo Application", + Description: "Auto created By APIPark", + }) + if err != nil { + return fmt.Errorf("create default app error: %v", err) + } // 创建Rest服务 restPath := "/rest-demo" serviceInfo, err := i.serviceModule.Create(ctx, info.Id, &service_dto.CreateService{ @@ -298,6 +308,13 @@ func (i *imlInitController) OnInit() { if err != nil { return fmt.Errorf("create default router error: %v", err) } + err = i.subscribeModule.AddSubscriber(ctx, serviceInfo.Id, &subscribe_dto.AddSubscriber{ + Application: app.Id, + }) + if err != nil { + return err + } + // 创建AI服务 err = i.createAIService(ctx, info.Id, &service_dto.CreateService{ Name: "AI Demo Service", @@ -307,17 +324,11 @@ func (i *imlInitController) OnInit() { Catalogue: catalogueId, ApprovalType: "auto", Kind: "ai", - }) + }, app.Id) if err != nil { return err } - app, err := i.appModule.CreateApp(ctx, info.Id, &service_dto.CreateApp{ - Name: "Demo Application", - Description: "Auto created By APIPark", - }) - if err != nil { - return fmt.Errorf("create default app error: %v", err) - } + _, err = i.applicationAuthorizationModule.AddAuthorization(ctx, app.Id, &application_authorization_dto.CreateAuthorization{ Name: "Default API Key", Driver: "apikey", @@ -338,7 +349,7 @@ func (i *imlInitController) OnInit() { } }) } -func (i *imlInitController) createAIService(ctx context.Context, teamID string, input *service_dto.CreateService) error { +func (i *imlInitController) createAIService(ctx context.Context, teamID string, input *service_dto.CreateService, appId string) error { providerId := "fakegpt" err := i.providerModule.UpdateProviderConfig(ctx, providerId, &ai_dto.UpdateConfig{ @@ -351,6 +362,12 @@ func (i *imlInitController) createAIService(ctx context.Context, teamID string, if input.Id == "" { input.Id = uuid.New().String() } + providerInfo, err := i.providerModule.Provider(ctx, *input.Provider) + if err != nil { + return err + } + input.Model = &providerInfo.DefaultLLM + if input.Prefix == "" { if len(input.Id) < 9 { input.Prefix = input.Id @@ -463,6 +480,12 @@ func (i *imlInitController) createAIService(ctx context.Context, teamID string, if err != nil { return err } + err = i.subscribeModule.AddSubscriber(ctx, info.Id, &subscribe_dto.AddSubscriber{ + Application: appId, + }) + if err != nil { + return err + } return i.docModule.SaveServiceDoc(ctx, info.Id, &service_dto.SaveServiceDoc{ Doc: "The Translation API allows developers to translate text from one language to another. It supports multiple languages and enables easy integration of high-quality translation features into applications. With simple API requests, you can quickly translate content into different target languages.", diff --git a/frontend/package.json b/frontend/package.json index 7217f6e4..5998344c 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -43,7 +43,7 @@ "react-dom": "^18.2.0", "react-i18next": "^15.0.1", "react-joyride": "^2.8.2", - "react-router-dom": "^6.20.0", + "react-router-dom": "6.20.0", "swagger-ui-react": "^5.17.14", "tailwindcss": "^3.3.5", "uuid": "^9.0.1", diff --git a/frontend/packages/common/src/assets/localAI.svg b/frontend/packages/common/src/assets/localAI.svg new file mode 100644 index 00000000..ea2ac931 --- /dev/null +++ b/frontend/packages/common/src/assets/localAI.svg @@ -0,0 +1,3 @@ + + + diff --git a/frontend/packages/common/src/assets/onlineAI.svg b/frontend/packages/common/src/assets/onlineAI.svg new file mode 100644 index 00000000..008a606f --- /dev/null +++ b/frontend/packages/common/src/assets/onlineAI.svg @@ -0,0 +1,3 @@ + + + diff --git a/frontend/packages/common/src/assets/restAPI.svg b/frontend/packages/common/src/assets/restAPI.svg new file mode 100644 index 00000000..680b98f3 --- /dev/null +++ b/frontend/packages/common/src/assets/restAPI.svg @@ -0,0 +1,14 @@ + + + + + + REST + diff --git a/frontend/packages/common/src/components/aoplatform/BasicLayout.tsx b/frontend/packages/common/src/components/aoplatform/BasicLayout.tsx index 931bf7f0..d5bcaa05 100644 --- a/frontend/packages/common/src/components/aoplatform/BasicLayout.tsx +++ b/frontend/packages/common/src/components/aoplatform/BasicLayout.tsx @@ -116,6 +116,10 @@ function BasicLayout({ project = 'core' }: { project: string }) { getGlobalAccessData() }, []) + useEffect(() => { + setPathname(location.pathname) + }, [location.pathname]) + const logOut = () => { fetchData>('account/logout', { method: 'GET' }).then((response) => { const { code, msg } = response @@ -182,7 +186,7 @@ function BasicLayout({ project = 'core' }: { project: string }) { , ...((pluginSlotHub.getSlot('basicLayoutAfterBtns') as unknown[]) || []) ] - }, [pluginSlotHub.getSlot('basicLayoutAfterBtns')]) + }, [state.language, pluginSlotHub.getSlot('basicLayoutAfterBtns')]) return (
(
navigator(mainPage)} /> + + +
)} logo={Logo} @@ -276,9 +293,9 @@ function BasicLayout({ project = 'core' }: { project: string }) { collapsedButtonRender={false} >
diff --git a/frontend/packages/common/src/components/aoplatform/InsidePage.tsx b/frontend/packages/common/src/components/aoplatform/InsidePage.tsx index 3260e886..484a0814 100644 --- a/frontend/packages/common/src/components/aoplatform/InsidePage.tsx +++ b/frontend/packages/common/src/components/aoplatform/InsidePage.tsx @@ -22,6 +22,8 @@ class InsidePageProps { headerClassName?: string = '' /** 整个页面滚动 */ scrollPage?: boolean = true + scrollInsidePage?: boolean = false + customPadding?: boolean customBtn?: ReactNode } @@ -41,6 +43,8 @@ const InsidePage: FC = ({ contentClassName = '', headerClassName = '', scrollPage = true, + scrollInsidePage = false, + customPadding = false, customBtn }) => { const navigate = useNavigate() @@ -49,7 +53,9 @@ const InsidePage: FC = ({ navigate(backUrl || '/') } return ( -
+
{showBanner && (
= ({ {!pageTitle && !description && !backUrl && !customBtn ? ( <> ) : ( -
+
{backUrl && (
)} -
+
{children}
diff --git a/frontend/packages/common/src/components/aoplatform/PageList.tsx b/frontend/packages/common/src/components/aoplatform/PageList.tsx index 4575904a..dab31d82 100644 --- a/frontend/packages/common/src/components/aoplatform/PageList.tsx +++ b/frontend/packages/common/src/components/aoplatform/PageList.tsx @@ -36,11 +36,13 @@ interface PageListProps extends ProTableProps, RefAttributes void beforeSearchNode?: React.ReactNode[] onSearchWordChange?: (e: ChangeEvent) => void afterNewBtn?: React.ReactNode[] + beforeNewBtn?: React.ReactNode[] dragSortKey?: string onDragSortEnd?: (beforeIndex: number, afterIndex: number, newDataSource: T[]) => void | Promise tableTitle?: string @@ -56,7 +58,8 @@ interface PageListProps extends ProTableProps, RefAttributes void + manualReloadTable?: () => void, + customEmptyRender?: () => React.ReactNode } const PageList = >( @@ -73,6 +76,7 @@ const PageList = >( primaryKey = 'id', addNewBtnTitle, addNewBtnAccess, + addNewBtnDisabled = false, tableClickAccess, tableClass, onAddNewBtnClick, @@ -80,6 +84,7 @@ const PageList = >( onSearchWordChange, manualReloadTable, afterNewBtn, + beforeNewBtn, dragSortKey, onDragSortEnd, tableTitle, @@ -94,7 +99,8 @@ const PageList = >( tableTitleClass, delayLoading = true, besidesTableHeight, - noScroll + noScroll, + customEmptyRender } = props const parentRef = useRef(null) const [tableHeight, setTableHeight] = useState(minVirtualHeight || window.innerHeight) @@ -190,6 +196,7 @@ const PageList = >( const headerTitle = () => { return ( <> + {beforeNewBtn ? (beforeNewBtn as React.ReactNode[]) : undefined} {tableTitle ? ( {tableTitle} ) : addNewBtnTitle ? ( @@ -197,6 +204,7 @@ const PageList = >( - - ) : ( - - )} -
- ) -} - -export default AIFlowChart diff --git a/frontend/packages/core/src/pages/aiSetting/AIUnconfigure.tsx b/frontend/packages/core/src/pages/aiSetting/AIUnconfigure.tsx deleted file mode 100644 index ba1ae334..00000000 --- a/frontend/packages/core/src/pages/aiSetting/AIUnconfigure.tsx +++ /dev/null @@ -1,136 +0,0 @@ -import Icon, { LoadingOutlined } from '@ant-design/icons' -import WithPermission from '@common/components/aoplatform/WithPermission' -import { BasicResponse, RESPONSE_TIPS, STATUS_CODE } from '@common/const/const' -import { useGlobalContext } from '@common/contexts/GlobalStateContext' -import { useFetch } from '@common/hooks/http' -import { $t } from '@common/locales' -import { App, Button, Card, Empty, Spin, Tag } from 'antd' -import { memo, useEffect, useState } from 'react' -import { useNavigate } from 'react-router-dom' -import { useAiSetting } from './contexts/AiSettingContext' -import { AiSettingListItem } from './types' - -const CardBox = memo(({ provider }: { provider: AiSettingListItem }) => { - const { openConfigModal } = useAiSetting() - const navigate = useNavigate() - - const handleOpenModal = async (provider: AiSettingListItem) => { - await openConfigModal(provider) - navigate('/aisetting?status=configure') - } - - return ( - -
- - {provider.name} -
- - {provider.configured ? $t('已配置') : $t('未配置')} - -
- } - className="shadow-[0_5px_10px_0_rgba(0,0,0,0.05)] rounded-[10px] overflow-visible h-[156px] m-0 flex flex-col " - classNames={{ header: 'border-b-[0px] p-[20px] px-[24px]', body: 'pt-0 flex-1' }} - > -
-
- {provider.configured && ( - <> - - {provider.defaultLlm} - - )} -
- - - -
- - ) -}) -const ModelCardArea = ({ modelList, className }: { modelList: AiSettingListItem[]; className?: string }) => { - return ( - <> - {modelList.length > 0 ? ( -
- {modelList.map((provider: AiSettingListItem) => ( - - ))} -
- ) : ( - - )} - - ) -} - -const AIUnConfigure = () => { - const [modelData, setModelData] = useState([]) - const { fetchData } = useFetch() - const [loading, setLoading] = useState(false) - const { aiConfigFlushed } = useGlobalContext() - - useEffect(() => { - setLoading(true) - fetchData[] }>>(`ai/providers/unconfigured`, { - method: 'GET', - eoTransformKeys: ['default_llm', 'default_llm_logo'] - }) - .then((response) => { - const { code, data, msg } = response - if (code === STATUS_CODE.SUCCESS) { - setModelData(data.providers) - } else { - const { message } = App.useApp() - message.error(msg || $t(RESPONSE_TIPS.error)) - } - }) - .finally(() => setLoading(false)) - }, [aiConfigFlushed]) - - return ( - } - spinning={loading} - > - {modelData && modelData.length > 0 ? ( -
- {modelData.filter((item) => !item.configured).length > 0 && ( - <> - !item.configured) || []} /> - - )} -
- ) : ( - - )} -
- ) -} -export default AIUnConfigure diff --git a/frontend/packages/core/src/pages/aiSetting/AiSettingList.tsx b/frontend/packages/core/src/pages/aiSetting/AiSettingList.tsx index aa7034d2..0fbccad4 100644 --- a/frontend/packages/core/src/pages/aiSetting/AiSettingList.tsx +++ b/frontend/packages/core/src/pages/aiSetting/AiSettingList.tsx @@ -3,9 +3,9 @@ import { useI18n } from '@common/locales' import { Tabs } from 'antd' import { useEffect, useState } from 'react' import { useSearchParams } from 'react-router-dom' -import AIFlowChart from './AIFlowChart' -import AIUnConfigure from './AIUnconfigure' import { AiSettingProvider } from './contexts/AiSettingContext' +import OnlineModelList from './OnlineModelList' +import LocalModelList from './LocalModelList' const CONTENT_STYLE = { height: 'calc(-300px + 100vh)' } as const @@ -38,21 +38,19 @@ const AiSettingContent = () => { items={[ { key: 'flow', - label: $t('已设置'), + label: $t('在线模型'), children: (
- +
) }, { key: 'config', - label: $t('未设置'), - children: ( -
- -
- ) + label: $t('本地模型'), + children:
+ +
} ]} /> diff --git a/frontend/packages/core/src/pages/aiSetting/AiSettingModal.tsx b/frontend/packages/core/src/pages/aiSetting/AiSettingModal.tsx index a81a4c7d..9aa3e430 100644 --- a/frontend/packages/core/src/pages/aiSetting/AiSettingModal.tsx +++ b/frontend/packages/core/src/pages/aiSetting/AiSettingModal.tsx @@ -1,34 +1,53 @@ -import { QuestionCircleOutlined } from '@ant-design/icons' import { Codebox } from '@common/components/postcat/api/Codebox' import { BasicResponse, PLACEHOLDER, RESPONSE_TIPS, STATUS_CODE } from '@common/const/const' import { useFetch } from '@common/hooks/http' import { $t } from '@common/locales' import { App, Form, InputNumber, Select, Switch, Tag, Tooltip } from 'antd' -import { forwardRef, useEffect, useImperativeHandle, useState } from 'react' -import { AiProviderLlmsItems, ModelDetailData } from './types' +import { forwardRef, useEffect, useImperativeHandle, useRef, useState } from 'react' +import { AiProviderLlmsItems, ModelDetailData, AiSettingListItem, AISettingEntityItem } from './types' +import { MemberItem, SimpleTeamItem } from '@common/const/type' +import { useGlobalContext } from '@common/contexts/GlobalStateContext' export type AiSettingModalContentProps = { - entity: ModelDetailData & { defaultLlm: string } + entity?: AISettingEntityItem readOnly: boolean + modelMode?: 'auto' | 'manual' + source?: string + /** 如果是手动选择 AI 模型,那么需要更新 footer 底部的内容,所以需要这个方法去更新外部的 footer */ + updateEntityData: (entity: AISettingEntityItem) => void } export type AiSettingModalContentHandle = { save: () => Promise + deployAIServer: () => Promise } const AiSettingModalContent = forwardRef((props, ref) => { const [form] = Form.useForm() const { message } = App.useApp() - const { entity, readOnly } = props + const { entity, readOnly, modelMode = 'auto', updateEntityData, source } = props const { fetchData } = useFetch() const [llmList, setLlmList] = useState() const [loading, setLoading] = useState(false) - const [enableState, setEnableState] = useState(entity.status === 'enabled') - const getLlmList = () => { + // AI 模型配置 + const [localEntity, setLocalEntity] = useState(entity) + const [teamList, setTeamList] = useState([]) + // AI 模型提供商列表 + const modelProviderListRef = useRef([]) + // 模型模式加载 + const [modelModeLoading, setModelModeLoading] = useState(false) + const [enableState, setEnableState] = useState(localEntity?.status === 'enabled') + const { checkPermission } = useGlobalContext() + + /** + * 获取 llm 列表 + * @param id + */ + const getLlmList = (id?: string) => { setLoading(true) fetchData>(`ai/provider/llms`, { method: 'GET', - eoParams: { provider: entity.id } + eoParams: { provider: id || localEntity?.id } }) .then((response) => { const { code, data, msg } = response @@ -43,41 +62,133 @@ const AiSettingModalContent = forwardRef { - getLlmList() + /** + * 获取团队选项列表 + * @returns + */ + const getTeamOptionList = async (): any[] => { + const response = await fetchData>( + !checkPermission('system.workspace.team.view_all') ? 'simple/teams/mine' : 'simple/teams', + { method: 'GET', eoTransformKeys: [] } + ) + const { code, data, msg } = response + if (code === STATUS_CODE.SUCCESS) { + const teamOptionList = data.teams?.map((x: MemberItem) => { + return { ...x, label: x.name, value: x.id } + }) + setTeamList(teamOptionList) + if (form.getFieldValue('team') === undefined && data.teams?.length) { + form.setFieldValue('team', data.teams[0].id) + } + } else { + message.error(msg || $t(RESPONSE_TIPS.error)) + return [] + } + } + + /** + * 获取未配置模型提供者列表 + */ + const getModelProviderList = () => { + setModelModeLoading(true) + fetchData>(`ai/providers/unconfigured`, { + method: 'GET', + eoTransformKeys: ['default_llm', 'default_llm_logo'] + }) + .then((response) => { + const { code, data, msg } = response + if (code === STATUS_CODE.SUCCESS) { + const providers = data.providers || [] + modelProviderListRef.current = providers + if (providers.length) { + const id = providers[0].id + form.setFieldValue('modelMode', id) + getModelConfig(id) + } + } else { + message.error(msg || $t(RESPONSE_TIPS.error)) + } + }) + .finally(() => { + setModelModeLoading(false) + }) + } + + /** + * 获取模型配置 + * @param id + */ + const getModelConfig = (id: string) => { + getLlmList(id) + fetchData>(`ai/provider/config`, { + method: 'GET', + eoParams: { provider: id }, + eoTransformKeys: ['get_apikey_url', 'default_llm'] + }) + .then((response) => { + const { code, data, msg } = response + if (code === STATUS_CODE.SUCCESS) { + const modelEntity = { + ...data.provider + } + setLocalEntity(modelEntity) + setFormFieldsValue(modelEntity) + updateEntityData?.(modelEntity) + } else { + message.error(msg || $t(RESPONSE_TIPS.error)) + } + }) + .finally(() => { + setModelModeLoading(false) + }) + } + + /** + * 设置表单字段值 + * @param fieldsValue + */ + const setFormFieldsValue = (fieldsValue: any) => { try { form.setFieldsValue({ - defaultLlm: entity.defaultLlm, - config: entity!.config ? JSON.stringify(JSON.parse(entity!.config), null, 2) : '', - priority: entity.priority || 1, - enable: entity.status === 'enabled' + defaultLlm: fieldsValue.defaultLlm, + config: fieldsValue!.config ? JSON.stringify(JSON.parse(fieldsValue!.config), null, 2) : '', + enable: fieldsValue.status === 'enabled' }) } catch (e) { form.setFieldsValue({ - defaultLlm: entity.defaultLlm, + defaultLlm: localEntity?.defaultLlm, config: '', - priority: 1, enable: true }) } + } + useEffect(() => { + if (localEntity?.id) { + getModelConfig(localEntity.id) + setFormFieldsValue(localEntity) + } else { + getModelProviderList() + source && getTeamOptionList() + } }, []) - const save: () => Promise = () => { + /** + * 部署 AI 服务 + */ + const deployAIServer: () => Promise = () => { return new Promise((resolve, reject) => { form .validateFields() .then((value) => { const finalValue = { - ...value, - priority: Math.max(1, value.priority) + config: value.config, + model: value.defaultLlm, + team: value.team, + provider: localEntity?.id } - - fetchData>('ai/provider/config', { - method: 'PUT', - eoParams: { provider: entity?.id }, - eoBody: finalValue, - eoTransformKeys: ['defaultLlm'] - // eoApiPrefix: 'http://uat.apikit.com:11204/mockApi/aoplatform/api/v1/' + fetchData>('quick/service/ai', { + method: 'POST', + eoBody: finalValue }) .then((response) => { const { code, msg } = response @@ -95,6 +206,45 @@ const AiSettingModalContent = forwardRef Promise = () => { + return new Promise((resolve, reject) => { + try { + form + .validateFields() + .then((value) => { + const finalValue = { + ...value + } + + fetchData>('ai/provider/config', { + method: 'PUT', + eoParams: { provider: localEntity?.id }, + eoBody: finalValue, + eoTransformKeys: ['defaultLlm'] + // eoApiPrefix: 'http://uat.apikit.com:11204/mockApi/aoplatform/api/v1/' + }) + .then((response) => { + const { code, msg } = response + if (code === STATUS_CODE.SUCCESS) { + message.success(msg || $t(RESPONSE_TIPS.success)) + resolve(true) + } else { + message.error(msg || $t(RESPONSE_TIPS.error)) + reject(msg || $t(RESPONSE_TIPS.error)) + } + }).catch((errorInfo) => reject(errorInfo)) + }) + .catch((errorInfo) => reject(errorInfo)) + } catch (error) { + reject(error) + } + }) + } + const getTooltipText = (isChecked: boolean) => { if (!isChecked) { return $t('保存后供应商状态变为【停用】,使用本供应商的 API 将临时使用负载优先级最高的正常供应商。') @@ -103,7 +253,8 @@ const AiSettingModalContent = forwardRef ({ - save + save, + deployAIServer })) return ( @@ -117,6 +268,26 @@ const AiSettingModalContent = forwardRef + {modelMode === 'manual' && ( + label={$t('模型供应商')} name="modelMode" rules={[{ required: true }]}> + + + )} label={$t('默认模型')} name="defaultLlm" rules={[{ required: true }]}> - - - label={ - - {$t('负载优先级')} - - - - - } - name="priority" - rules={[ - { required: true }, - { - validator: async (_, value) => { - if (value <= 0) { - throw new Error($t('优先级必须大于 0')) - } - return Promise.resolve() - } - } - ]} - initialValue={1} - > - - - + {source === 'guide' && ( + + + + )} label={$t('API Key(默认 Key)')} name="config"> - - {entity.configured && ( + {source !== 'guide' && (
{$t('当前调用状态:')} - {entity.status === 'enabled' && {$t('正常')}} - {entity.status === 'disabled' && {$t('停用')}} - {entity.status === 'abnormal' && {$t('异常')}} + {localEntity?.status === 'enabled' && {$t('正常')}} + {localEntity?.status === 'disabled' && {$t('停用')}} + {localEntity?.status === 'abnormal' && {$t('异常')}}
- {(entity.status === 'enabled' && !enableState) || (entity.status !== 'enabled' && enableState) ? ( + {(localEntity?.status === 'enabled' && !enableState) || (localEntity?.status !== 'enabled' && enableState) ? (
* {getTooltipText(enableState)}
) : null}
diff --git a/frontend/packages/core/src/pages/aiSetting/ConfigureOllamaService.tsx b/frontend/packages/core/src/pages/aiSetting/ConfigureOllamaService.tsx new file mode 100644 index 00000000..6207051b --- /dev/null +++ b/frontend/packages/core/src/pages/aiSetting/ConfigureOllamaService.tsx @@ -0,0 +1,85 @@ +import { forwardRef, useEffect, useImperativeHandle } from 'react' +import { App, Divider, Form, Space, Switch, Tag, Input } from 'antd' +import { BasicResponse, RESPONSE_TIPS, STATUS_CODE } from '@common/const/const' +import { $t } from '@common/locales' +import WithPermission from '@common/components/aoplatform/WithPermission' +import { useFetch } from '@common/hooks/http' + +export type ConfigureOllamaServiceHandle = { + save: () => Promise +} + +const ConfigureOllamaService = forwardRef((props, ref) => { + const { address = '' } = props + const [form] = Form.useForm() + const { fetchData } = useFetch() + const { message } = App.useApp() + + useEffect(() => { + form.setFieldsValue({ address }) + }, []) + + /** + * 保存 + * @returns + */ + const save: () => Promise = () => { + return new Promise((resolve, reject) => { + try { + form + .validateFields() + .then((value) => { + fetchData>('model/local/source/ollama', { + method: 'PUT', + eoBody: { address: value.address } + }) + .then((response) => { + const { code, msg } = response + if (code === STATUS_CODE.SUCCESS) { + message.success(msg || $t(RESPONSE_TIPS.success)) + resolve(true) + } else { + message.error(msg || $t(RESPONSE_TIPS.error)) + reject(msg || $t(RESPONSE_TIPS.error)) + } + }) + .catch((errorInfo) => reject(errorInfo)) + }) + .catch((errorInfo) => reject(errorInfo)) + } catch (error) { + reject(error) + } + }) + } + useImperativeHandle(ref, () => ({ + save + })) + return ( + +
+ + form.setFieldValue('address', e.target.value)} + /> + +
+
+ ) +}) + +export default ConfigureOllamaService diff --git a/frontend/packages/core/src/pages/aiSetting/LocalModelList.tsx b/frontend/packages/core/src/pages/aiSetting/LocalModelList.tsx new file mode 100644 index 00000000..145ad02c --- /dev/null +++ b/frontend/packages/core/src/pages/aiSetting/LocalModelList.tsx @@ -0,0 +1,469 @@ +import { ActionType } from '@ant-design/pro-components' +import PageList, { PageProColumns } from '@common/components/aoplatform/PageList' +import TableBtnWithPermission from '@common/components/aoplatform/TableBtnWithPermission' +import { BasicResponse, RESPONSE_TIPS, STATUS_CODE } from '@common/const/const' +import { useFetch } from '@common/hooks/http' +import { $t } from '@common/locales' +import { App, Divider, Form, Space, Switch, Tag, Button } from 'antd' +import React, { forwardRef, useEffect, useImperativeHandle, useRef, useState } from 'react' +import { ModelListData } from './types' +import LocalAiDeploy, { LocalAiDeployHandle } from '../guide/LocalAiDeploy' +import { ServiceDeployment } from '../system/serviceDeployment/ServiceDeployment' +import { LogsFooter } from '../system/serviceDeployment/ServiceDeployMentFooter' +import WithPermission from '@common/components/aoplatform/WithPermission' +import { Icon } from '@iconify/react/dist/iconify.js' +import ConfigureOllamaService, { ConfigureOllamaServiceHandle } from './ConfigureOllamaService' +type EditLocalModelModalHandle = { + save: () => Promise +} +type EditLocalModelModalProps = { + enable: boolean + modelID?: string +} +const EditLocalModelModal = forwardRef( + (props: EditLocalModelModalProps, ref) => { + const { enable, modelID } = props + const { fetchData } = useFetch() + const { message } = App.useApp() + const [form] = Form.useForm() + const [currentStatus, setCurrentStatus] = useState(enable) + + useEffect(() => { + form.setFieldsValue({ enable }) + }, []) + /** + * 保存 + * @returns + */ + const save: () => Promise = () => { + return new Promise((resolve, reject) => { + try { + form + .validateFields() + .then((value) => { + const finalValue = { + disable: !value.enable + } + + fetchData>('model/local/info', { + method: 'PUT', + eoParams: { model: modelID }, + eoBody: finalValue + }) + .then((response) => { + const { code, msg } = response + if (code === STATUS_CODE.SUCCESS) { + message.success(msg || $t(RESPONSE_TIPS.success)) + resolve(true) + } else { + message.error(msg || $t(RESPONSE_TIPS.error)) + reject(msg || $t(RESPONSE_TIPS.error)) + } + }) + .catch((errorInfo) => reject(errorInfo)) + }) + .catch((errorInfo) => reject(errorInfo)) + } catch (error) { + reject(error) + } + }) + } + useImperativeHandle(ref, () => ({ + save + })) + + return ( + +
+ +
+
+ {$t('当前调用状态:')} + {currentStatus && {$t('正常')}} + {!currentStatus && {$t('停用')}} +
+ + { + form.setFieldsValue({ enable: checked }) + setCurrentStatus(checked) + }} + /> + +
+
+
+
+ ) + } +) + +const LocalModelList: React.FC = () => { + const pageListRef = useRef(null) + const { message, modal } = App.useApp() + const { fetchData } = useFetch() + const [searchWord, setSearchWord] = useState('') + const localAiDeployRef = useRef() + const ConfigureOllamaServiceRef = useRef() + const EditLocalModelModalRef = useRef() + const [stateColumnMap] = useState<{ [k: string]: { text: string; className?: string } }>({ + normal: { text: '正常' }, + deploying: { text: '部署中', className: 'text-[#2196f3] cursor-pointer' }, + error: { text: '模型异常', className: 'text-[#ff4d4f]' }, + disabled: { text: '停用' }, + deploying_error: { text: '部署失败', className: 'text-[#ff4d4f] cursor-pointer' } + }) + + const [ollamaAddress, setOllamaAddress] = useState('') + + useEffect(() => { + getOllamaData() + }, []) + + const configureService = (address?: string) => { + modal.confirm({ + title: $t('配置 Ollama 服务'), + content: , + onOk: () => { + return ConfigureOllamaServiceRef.current?.save().then((res) => { + if (res === true) { + getOllamaData() + } + }) + }, + footer: (_, { OkBtn, CancelBtn }) => { + return ( + + ) + }, + width: 600, + okText: $t('确认'), + cancelText: $t('取消'), + closable: true, + icon: <> + }) + } + + const customEmptyRender = () => { + return ( + <> +
+ +
{$t('模型部署服务未配置')}
+ + + +
+ + ) + } + + const getOllamaData = async () => { + const response = await fetchData>('model/local/source/ollama', { + method: 'GET' + }) + + if (response.code === STATUS_CODE.SUCCESS) { + setOllamaAddress(response.data?.config?.address || '') + pageListRef.current?.reload() + } else { + message.error(response.msg || $t(RESPONSE_TIPS.error)) + } + } + + const handleEdit = (record: ModelListData) => { + modal.confirm({ + title: $t('模型设置'), + content: ( + + ), + onOk: () => { + return EditLocalModelModalRef.current?.save().then((res) => { + if (res === true) { + pageListRef.current?.reload() + } + }) + }, + width: 600, + okText: $t('确认'), + cancelText: $t('取消'), + closable: true, + icon: <> + }) + } + + const handleAdd = () => { + const modalInstance = modal.confirm({ + title: $t('部署本地模型'), + content: ( + { + modalInstance.destroy() + pageListRef.current?.reload() + }} + > + ), + onOk: () => { + return localAiDeployRef.current?.deployLocalAIServer().then((res) => { + if (res === true) { + pageListRef.current?.reload() + } + }) + }, + width: 600, + okText: $t('确认'), + cancelText: $t('取消'), + closable: true, + icon: <> + }) + } + + const handleDelete = async (id: string, apiCount: number) => { + modal.confirm({ + title: $t('删除模型'), + content: `${$t('有')} ${apiCount} ${$t('个API使用当前模型,删除当前的模型配置后,该模型相关的API将会切换为使用负载均衡中优先级最高的可用模型。并且当前模型下的所有API KEY和相关数据将会被清空,是否确认删除当前模型?')}`, + onOk: () => { + return new Promise((resolve, reject) => { + try { + fetchData>('model/local', { + method: 'DELETE', + eoParams: { + model: id + } + }) + .then((response) => { + if (response.code === STATUS_CODE.SUCCESS) { + message.success($t('删除成功')) + pageListRef.current?.reload() + } else { + message.error(response.msg || RESPONSE_TIPS.error) + } + resolve(true) + }) + .catch((error) => { + message.error(RESPONSE_TIPS.error) + resolve(true) + }) + } catch (error) { + message.error(RESPONSE_TIPS.error) + resolve(true) + } + }) + }, + width: 600, + okText: $t('确认'), + cancelText: $t('取消'), + closable: true, + icon: <> + }) + } + + const requestList = async (params: any) => { + try { + if (!ollamaAddress) { + return { + data: [], + success: true, + total: 0 + } + } + const response = await fetchData>('model/local/list', { + method: 'GET', + eoParams: { + page_size: params.pageSize, + keyword: searchWord, + page: params.current + }, + eoTransformKeys: ['can_delete', 'api_count'] + }) + + if (response.code === STATUS_CODE.SUCCESS) { + return { + data: response.data.models, + success: true, + total: response.data.total + } + } else { + message.error(response.msg || $t(RESPONSE_TIPS.error)) + return { + data: [], + success: false, + total: response.data.total + } + } + } catch (error) { + return { + data: [], + success: false, + total: 0 + } + } + } + + const operation: PageProColumns[] = [ + { + title: '', + key: 'option', + btnNums: 2, + fixed: 'right', + valueType: 'option', + render: (_: React.ReactNode, entity: ModelListData) => [ + handleEdit(entity)} + btnTitle={$t('设置')} + />, + , + handleDelete(entity.id as string, entity?.apiCount)} + btnTitle={$t('删除')} + /> + ] + } + ] + + const openLogsModal = (record: any) => { + const closeModal = (reload = true) => { + reload && pageListRef.current?.reload() + modalInstance.destroy() + } + const updateFooter = () => { + record.state = 'error' + modalInstance.update({}) + } + let cancelCb: () => void = () => {} + const cancel = (cancel: () => void) => { + cancelCb = cancel + } + const modalInstance = modal.confirm({ + title: $t('部署过程'), + content: ( + + ), + footer: () => { + return + }, + afterClose: () => { + cancelCb() + }, + width: 600, + okText: $t('确认'), + cancelText: $t('取消'), + closable: true, + icon: <> + }) + } + + const columns: PageProColumns[] = [ + { + title: $t('名称'), + dataIndex: 'name', + render: (dom: React.ReactNode, entity: ModelListData) => {entity.name} + }, + { + title: $t('状态'), + width: 140, + dataIndex: 'state', + ellipsis: true, + render: (dom: React.ReactNode, entity: ModelListData) => ( + { + if (['deploying', 'deploying_error'].includes(entity?.state as string)) { + e?.stopPropagation() + openLogsModal(entity) + } + }} + > + {$t(stateColumnMap[entity?.state as string]?.text || '-')} + + ) + }, + { + title: $t('Apis'), + dataIndex: 'apiCount', + width: 100, + render: (dom: React.ReactNode, record: ModelListData) => ( + + + {record.apiCount || '0'} + + + ) + }, + ...operation + ] + + return ( + { + setSearchWord(e.target.value) + pageListRef.current?.reload() + }} + beforeNewBtn={[ + + + + ]} + showPagination={true} + searchPlaceholder={$t('请输入名称搜索')} + columns={columns} + addNewBtnTitle={$t('部署模型')} + onAddNewBtnClick={handleAdd} + addNewBtnAccess="system.devops.ai_provider.edit" + addNewBtnDisabled={!ollamaAddress} + /> + ) +} + +export default LocalModelList diff --git a/frontend/packages/core/src/pages/aiSetting/OnlineModelList.tsx b/frontend/packages/core/src/pages/aiSetting/OnlineModelList.tsx new file mode 100644 index 00000000..a77d3e23 --- /dev/null +++ b/frontend/packages/core/src/pages/aiSetting/OnlineModelList.tsx @@ -0,0 +1,226 @@ +import { ActionType } from '@ant-design/pro-components' +import PageList, { PageProColumns } from '@common/components/aoplatform/PageList' +import TableBtnWithPermission from '@common/components/aoplatform/TableBtnWithPermission' +import { BasicResponse, RESPONSE_TIPS, STATUS_CODE } from '@common/const/const' +import { useFetch } from '@common/hooks/http' +import { $t } from '@common/locales' +import { App, Divider, Space, Typography } from 'antd' +import React, { useRef, useState } from 'react' +import { useAiSetting } from './contexts/AiSettingContext' +import { AiSettingListItem, ModelListData } from './types' + +const OnlineModelList: React.FC = () => { + const pageListRef = useRef(null) + const { message, modal } = App.useApp() + const { fetchData } = useFetch() + const [searchWord, setSearchWord] = useState('') + const [total, setTotal] = useState(0) + const { openConfigModal } = useAiSetting() + + const handleEdit = (record: ModelListData) => { + openConfigModal({ id: record.id, defaultLlm: record.defaultLlm } as AiSettingListItem, () => { + pageListRef.current?.reload() + }) + } + + const handleAdd = () => { + openConfigModal(undefined, () => { + pageListRef.current?.reload() + }) + } + + const handleDelete = async (id: string, apiCount: number) => { + modal.confirm({ + title: $t('删除模型'), + content: `${$t('有')} ${apiCount} ${$t('个API使用当前模型,删除当前的模型配置后,该模型相关的API将会切换为使用负载均衡中优先级最高的可用模型。并且当前模型下的所有API KEY和相关数据将会被清空,是否确认删除当前模型?')}`, + onOk: () => { + return new Promise((resolve, reject) => { + try { + fetchData>('ai/provider', { + method: 'DELETE', + eoParams: { + provider: id + } + }).then((response) => { + if (response.code === STATUS_CODE.SUCCESS) { + message.success($t('删除成功')) + pageListRef.current?.reload() + } else { + message.error(response.msg || RESPONSE_TIPS.error) + } + resolve(true) + }).catch((error) => { + message.error(RESPONSE_TIPS.error) + resolve(true) + }) + } catch (error) { + message.error(RESPONSE_TIPS.error) + resolve(true) + } + }) + }, + width: 600, + okText: $t('确认'), + cancelText: $t('取消'), + closable: true, + icon: <> + }) + + } + + const requestList = async (params: any) => { + try { + const response = await fetchData>('ai/providers/configured', { + method: 'GET', + eoParams: { + page_size: params.pageSize, + keyword: searchWord, + page: params.current + }, + eoTransformKeys: ['default_llm', 'api_count', 'key_count', 'can_delete'] + }) + + if (response.code === STATUS_CODE.SUCCESS) { + setTotal(response.data.total) + return { + data: response.data.providers, + success: true, + total: response.data.total + } + } else { + message.error(response.msg || $t(RESPONSE_TIPS.error)) + return { + data: [], + success: false, + total: response.data.total + } + } + } catch (error) { + return { + data: [], + success: false, + total: 0 + } + } + } + const statusEnum = { + enabled: { text: {$t('正常')} }, + disabled: { text: {$t('停用')} }, + abnormal: { text: {$t('异常')} } + } + + const operation: PageProColumns[] = [ + { + title: '', + key: 'option', + btnNums: 4, + fixed: 'right', + valueType: 'option', + render: (_: React.ReactNode, entity: ModelListData) => [ + handleEdit(entity)} + btnTitle={$t('设置')} + />, + , + handleDelete(entity.id as string, entity.apiCount)} + btnTitle={$t('删除')} + /> + ] + } + ] + + const columns: PageProColumns[] = [ + { + title: $t('名称'), + dataIndex: 'name', + render: (dom: React.ReactNode, entity: ModelListData) => {entity.name} + }, + { + title: $t('状态'), + dataIndex: 'status', + ellipsis: true, + valueType: 'select', + // filters: true, + // onFilter: true, + valueEnum: statusEnum, + render: (dom: React.ReactNode, entity: ModelListData) => statusEnum[entity.status]?.text || entity.status + }, + { + title: $t('默认模型'), + ellipsis: true, + dataIndex: 'defaultLlm' + }, + { + title: $t('Apis'), + dataIndex: 'apiCount', + render: (dom: React.ReactNode, record: ModelListData) => ( + + + {record.apiCount || '0'} + + + ) + }, + { + title: $t('Keys'), + dataIndex: 'keyCount', + render: (dom: React.ReactNode, record: ModelListData) => ( + + + {record.keyCount || '0'} + + + ) + }, + ...operation + ] + + return ( + { + setSearchWord(e.target.value) + pageListRef.current?.reload() + }} + showPagination={true} + searchPlaceholder={$t('请输入名称搜索')} + columns={columns} + addNewBtnAccess="system.devops.ai_provider.edit" + addNewBtnTitle={$t('添加模型')} + onAddNewBtnClick={handleAdd} + /> + ) +} + +export default OnlineModelList diff --git a/frontend/packages/core/src/pages/aiSetting/components/CustomEdge.tsx b/frontend/packages/core/src/pages/aiSetting/components/CustomEdge.tsx deleted file mode 100644 index 35d585f5..00000000 --- a/frontend/packages/core/src/pages/aiSetting/components/CustomEdge.tsx +++ /dev/null @@ -1,72 +0,0 @@ -import { BaseEdge, EdgeLabelRenderer, EdgeProps, getSmoothStepPath, useStore } from '@xyflow/react' - -export default function CustomEdge({ - id, - sourceX, - sourceY, - targetX, - targetY, - sourcePosition, - targetPosition, - style = {}, - markerEnd, - label, - data, - source, - target -}: EdgeProps) { - // Get all edges to check for duplicates - const edges = useStore((state) => state.edges) - - // Find duplicate edges between the same source and target - const duplicateEdges = edges.filter((edge) => edge.source === source && edge.target === target) - const edgeIndex = duplicateEdges.findIndex((edge) => edge.id === id) - - // Adjust the path if this is a duplicate edge - const offset = edgeIndex * 20 // 20px offset for each duplicate edge - - const [edgePath] = getSmoothStepPath({ - sourceX, - sourceY: sourceY, - sourcePosition, - targetX, - targetY: targetY + offset, - targetPosition, - borderRadius: 16 - }) - - const modelId = data?.id - - return ( - <> - - {label && ( - - - {label} - - - )} - - ) -} diff --git a/frontend/packages/core/src/pages/aiSetting/components/KeyStatusNode.tsx b/frontend/packages/core/src/pages/aiSetting/components/KeyStatusNode.tsx deleted file mode 100644 index ef24aee6..00000000 --- a/frontend/packages/core/src/pages/aiSetting/components/KeyStatusNode.tsx +++ /dev/null @@ -1,53 +0,0 @@ -import { Handle, Position } from '@xyflow/react' -import React from 'react' -import { KeyData } from '../types' - -interface KeyStatusNodeData { - id: string - title: string - keys: KeyData[] -} - -const KEY_SIZE = '1.25rem' // 20px -const KEY_GAP = '0.25rem' // 4px -const MAX_KEYS = 10 - -export const KeyStatusNode: React.FC<{ data: KeyStatusNodeData }> = ({ data }) => { - const { title, keys = [] } = data - const totalKeys = keys.length - const keyWidth = totalKeys > 5 ? `calc((100% - ${(totalKeys - 1) * 0.25}rem) / ${totalKeys})` : KEY_SIZE - return ( -
- -
-
{title}
-
5 ? '118px' : 'auto', - maxWidth: `calc(${MAX_KEYS} * ${KEY_SIZE} + (${MAX_KEYS} - 1) * ${KEY_GAP})`, - minHeight: KEY_SIZE - }} - > - {keys.map((key) => ( -
- ))} -
-
-
- ) -} diff --git a/frontend/packages/core/src/pages/aiSetting/components/ModelCardNode.tsx b/frontend/packages/core/src/pages/aiSetting/components/ModelCardNode.tsx deleted file mode 100644 index ede8936b..00000000 --- a/frontend/packages/core/src/pages/aiSetting/components/ModelCardNode.tsx +++ /dev/null @@ -1,76 +0,0 @@ -import { $t } from '@common/locales' -import { Icon } from '@iconify/react' -import { Handle, Position } from '@xyflow/react' -import React from 'react' -import { useAiSetting } from '../contexts/AiSettingContext' -import { AiSettingListItem, ModelDetailData, ModelStatus } from '../types' - -type ModelCardNodeData = ModelDetailData & { - id: string - position: { x: number; y: number } - alternativeModel?: ModelDetailData -} - -export const ModelCardNode: React.FC<{ data: ModelCardNodeData }> = ({ data }) => { - const { name, status, defaultLlm, logo, alternativeModel } = data - const { openConfigModal } = useAiSetting() - - const getStatusIcon = (status: ModelStatus) => { - switch (status) { - case 'enabled': - return { icon: 'mdi:check-circle', color: 'text-green-500' } - case 'disabled': - return { icon: 'mdi:pause-circle', color: 'text-gray-400' } - case 'abnormal': - return { icon: 'mdi:alert-circle', color: 'text-red-500' } - } - } - - const statusConfig = getStatusIcon(status) - - return ( - <> -
- - -
-
-
-
- -
- {name} - -
- - {/* Action buttons */} -
- { - openConfigModal({ id: data.id, defaultLlm: defaultLlm } as AiSettingListItem) - }} - /> -
-
-
- {$t('默认:')} - {defaultLlm} -
-
-
- {status !== 'enabled' && alternativeModel && ( -
- {$t('关联 API 已转用')} {alternativeModel.name}/{alternativeModel.defaultLlm} -
- )} - - ) -} diff --git a/frontend/packages/core/src/pages/aiSetting/components/NodeComponents.tsx b/frontend/packages/core/src/pages/aiSetting/components/NodeComponents.tsx deleted file mode 100644 index e2626cc2..00000000 --- a/frontend/packages/core/src/pages/aiSetting/components/NodeComponents.tsx +++ /dev/null @@ -1,3 +0,0 @@ -export { KeyStatusNode } from './KeyStatusNode' -export { ModelCardNode } from './ModelCardNode' -export { ServiceCardNode } from './ServiceCardNode' diff --git a/frontend/packages/core/src/pages/aiSetting/components/ServiceCardNode.tsx b/frontend/packages/core/src/pages/aiSetting/components/ServiceCardNode.tsx deleted file mode 100644 index 176d80da..00000000 --- a/frontend/packages/core/src/pages/aiSetting/components/ServiceCardNode.tsx +++ /dev/null @@ -1,18 +0,0 @@ -import { Icon } from '@iconify/react' -import { Handle, NodeProps, Position } from '@xyflow/react' -import React from 'react' - -export const ServiceCardNode: React.FC = () => { - return ( -
- -
- - AI Services -
-
- ) -} diff --git a/frontend/packages/core/src/pages/aiSetting/contexts/AiSettingContext.tsx b/frontend/packages/core/src/pages/aiSetting/contexts/AiSettingContext.tsx index f8e078bd..ce71f5a7 100644 --- a/frontend/packages/core/src/pages/aiSetting/contexts/AiSettingContext.tsx +++ b/frontend/packages/core/src/pages/aiSetting/contexts/AiSettingContext.tsx @@ -1,45 +1,39 @@ import Icon from '@ant-design/icons' -import { BasicResponse, RESPONSE_TIPS, STATUS_CODE } from '@common/const/const' import { useGlobalContext } from '@common/contexts/GlobalStateContext' -import { useFetch } from '@common/hooks/http' import { $t } from '@common/locales' import { checkAccess } from '@common/utils/permission' import { App } from 'antd' import { createContext, useContext, useRef } from 'react' import AiSettingModalContent, { AiSettingModalContentHandle } from '../AiSettingModal' -import { AiSettingListItem, ModelDetailData } from '../types' +import { AiSettingListItem } from '../types' interface AiSettingContextType { - openConfigModal: (entity: AiSettingListItem) => Promise + openConfigModal: (entity?: AiSettingListItem, callback?: () => void) => Promise } const AiSettingContext = createContext(undefined) export const AiSettingProvider: React.FC<{ children: React.ReactNode }> = ({ children }) => { - const { modal, message } = App.useApp() - const { fetchData } = useFetch() + const { modal } = App.useApp() const { aiConfigFlushed, setAiConfigFlushed, accessData } = useGlobalContext() const modalRef = useRef() + const entityData = useRef(null) - const openConfigModal = async (entity: AiSettingListItem) => { - message.loading($t(RESPONSE_TIPS.loading)) - const { code, data, msg } = await fetchData>('ai/provider/config', { - method: 'GET', - eoParams: { provider: entity!.id }, - eoTransformKeys: ['get_apikey_url'] - }) - message.destroy() - if (code !== STATUS_CODE.SUCCESS) { - message.error(msg || $t(RESPONSE_TIPS.error)) - return + const openConfigModal = async (entity?: AiSettingListItem, callback?: () => void) => { + // 更新弹窗 + const updateEntityData = (data: any) => { + entityData.current = data + // 更新弹窗 + modalInstance.update({}) } - - modal.confirm({ + const modalInstance = modal.confirm({ title: $t('模型配置'), content: ( ), @@ -47,6 +41,7 @@ export const AiSettingProvider: React.FC<{ children: React.ReactNode }> = ({ chi return modalRef.current?.save().then((res) => { if (res === true) { setAiConfigFlushed(!aiConfigFlushed) + callback?.() } }) }, @@ -58,10 +53,10 @@ export const AiSettingProvider: React.FC<{ children: React.ReactNode }> = ({ chi - {$t('从 (0) 获取 API KEY', [data.provider.name])} + {$t('从 (0) 获取 API KEY', [entityData.current?.name])}
diff --git a/frontend/packages/core/src/pages/aiSetting/types.ts b/frontend/packages/core/src/pages/aiSetting/types.ts index 6ba2ea7a..920de61d 100644 --- a/frontend/packages/core/src/pages/aiSetting/types.ts +++ b/frontend/packages/core/src/pages/aiSetting/types.ts @@ -1,32 +1,42 @@ -export type ModelStatus = 'enabled' | 'abnormal'|'disabled' -export type KeyStatus ='normal' | 'abnormal'|'disabled' +export type ModelStatus = 'enabled' | 'abnormal' | 'disabled' +export type KeyStatus = 'normal' | 'abnormal' | 'disabled' +export type ModelDeployStatus = 'normal' | 'disabled' | 'deploying' | 'error' | 'deploying_error' | undefined export interface KeyData { id: string name: string - status: KeyStatus, + status: KeyStatus } export interface ModelListData { - id: string + id: string | undefined name: string logo: string - defaultLlm: string + defaultLlm: string | undefined + provider?: string + modelMode?: string status: ModelStatus - api_count: number - key_count: number + state?: ModelDeployStatus + apiCount: number + keyCount: number + isDisabled?: boolean keys: KeyData[] + canDelete: boolean } -export interface ModelDetailData extends ModelListData{ - enable:boolean - config: string, - priority?: number + +export interface AISettingEntityItem { + id: string | undefined + status?: ModelStatus | undefined + defaultLlm: string | undefined +} +export interface ModelDetailData extends ModelListData { + enable: boolean + config: string getApikeyUrl: string status: ModelStatus configured: boolean } - export type AiSettingListItem = { name: string id: string @@ -53,5 +63,3 @@ export type AiProviderDefaultConfig = { defaultLlm: string scopes: string[] } - - diff --git a/frontend/packages/core/src/pages/guide/AIModelGuide.tsx b/frontend/packages/core/src/pages/guide/AIModelGuide.tsx new file mode 100644 index 00000000..7b6145a8 --- /dev/null +++ b/frontend/packages/core/src/pages/guide/AIModelGuide.tsx @@ -0,0 +1,234 @@ +import restAPIPic from '@common/assets/restAPI.svg' +import onlineAIPic from '@common/assets/onlineAI.svg' +import localAIPic from '@common/assets/localAI.svg' +import { useGlobalContext } from '@common/contexts/GlobalStateContext' +import { $t } from '@common/locales' +import { Icon } from '@iconify/react/dist/iconify.js' +import { App } from 'antd' +import { Card } from 'antd' +import { useEffect, useRef, useState } from 'react' +import { useNavigate } from 'react-router-dom' +import AiSettingModalContent, { AiSettingModalContentHandle } from '../aiSetting/AiSettingModal' +import { checkAccess } from '@common/utils/permission' +import LocalAiDeploy, { LocalAiDeployHandle } from './LocalAiDeploy' +import useDeployLocalModel from './deployModelUtil' +import RestAIDeploy, { RestAIDeployHandle } from './RestAIDeploy' +import { BasicResponse, RESPONSE_TIPS, STATUS_CODE } from '@common/const/const' +import { useFetch } from '@common/hooks/http' + +export const AIModelGuide = () => { + const { message, modal } = App.useApp() + const entityData = useRef(null) + const navigateTo = useNavigate() + const { accessData } = useGlobalContext() + const modalRef = useRef() + const localAiDeployRef = useRef() + const restAiDeployRef = useRef() + const { deployLocalModel } = useDeployLocalModel() + const { fetchData } = useFetch() + const [ollamaAddress, setOllamaAddress] = useState('') + + const dumpServerPage = () => { + navigateTo('/service/list') + } + + /** + * rest 服务卡片点击事件 + */ + const restCardClick = async () => { + const permission = checkAccess('system.workspace.service.edit', accessData) + if (!permission) { + return message.warning($t('暂无权限')) + } + modal.confirm({ + title: $t('添加 Rest 服务'), + content: , + onOk: () => { + return restAiDeployRef.current?.deployRestAIServer().then((res) => { + if (res === true) { + dumpServerPage() + } + }) + }, + width: 600, + okText: $t('确认'), + cancelText: $t('取消'), + closable: true, + icon: <> + }) + } + + /** + * AI 模型配置弹窗 + */ + const aiCardClick = () => { + const permission = checkAccess('system.devops.ai_provider.edit', accessData) + if (!permission) { + return message.warning($t('暂无权限')) + } + // 更新弹窗 + const updateEntityData = (data: any) => { + entityData.current = data + // 更新弹窗 + modalInstance.update({}) + } + const modalInstance = modal.confirm({ + title: $t('模型配置'), + content: ( + + ), + onOk: () => { + return modalRef.current?.deployAIServer().then((res) => { + if (res === true) { + dumpServerPage() + } + }) + }, + width: 600, + okText: $t('确认'), + footer: (_, { OkBtn, CancelBtn }) => { + return ( +
+ + {$t('从 (0) 获取 API KEY', [entityData.current?.name])} + + +
+ + {checkAccess('system.devops.ai_provider.edit', accessData) ? : null} +
+
+ ) + }, + cancelText: $t('取消'), + closable: true, + icon: <> + }) + } + + + const getOllamaData = async () => { + const response = await fetchData>('model/local/source/ollama', { + method: 'GET' + }) + + if (response.code === STATUS_CODE.SUCCESS) { + setOllamaAddress(response.data?.config?.address || '') + } else { + message.error(response.msg || $t(RESPONSE_TIPS.error)) + } + } + + useEffect(() => { + getOllamaData() + }, []) + + /** + * 本地部署 AI 并生成 API + */ + const localModelCardClick = async () => { + const permission = checkAccess('system.devops.ai_provider.edit', accessData) + if (!permission) { + return message.warning($t('暂无权限')) + } + if (!ollamaAddress) { + navigateTo('/aisetting?status=unconfigure') + return + } + const modalInstance = modal.confirm({ + title: $t('部署本地模型'), + content: { + modalInstance.destroy() + dumpServerPage() + }}>, + onOk: () => { + return localAiDeployRef.current?.deployLocalAIServer().then((res) => { + if (res === true) { + dumpServerPage() + } + }) + }, + width: 600, + okText: $t('确认'), + cancelText: $t('取消'), + closable: true, + icon: <> + }) + } + const deployDeepSeek = async (e: any) => { + e.stopPropagation() + const permission = checkAccess('system.devops.ai_provider.edit', accessData) + if (!permission) { + return message.warning($t('暂无权限')) + } + if (!ollamaAddress) { + navigateTo('/aisetting?status=unconfigure') + return + } + await deployLocalModel({ + modelID: 'deepseek-r1' + }) + dumpServerPage() + } + + const cardList = [ + { + imgSrc: restAPIPic, + title: $t('添加 Rest 服务'), + description: $t('导入OpenAPI文档,将现有系统的API发布到APIPark。'), + click: restCardClick + }, + { + imgSrc: onlineAIPic, + title: $t('添加在线 AI API'), + description: $t('添加公有云AI模型的 API Key,通过APIPark 统一调用公有云的AI模型。'), + click: aiCardClick + }, + { + imgSrc: localAIPic, + title: $t('本地部署 AI 并生成 API'), + description: $t('快速在本地部署开源模型并自动生成 API。'), + click: localModelCardClick, + bottomRender: ( + + + {$t('部署')} Deepseek-R1 + + ) + } + ] + return ( + <> +

{$t('⚡您可快速通过以下方式开放API供大家使用:')}

+
+ {cardList.map((item, itemIndex) => ( + + +

{item.title}

+

{item.description}

+ {item.bottomRender ? item.bottomRender : null} +
+ ))} +
+ + ) +} diff --git a/frontend/packages/core/src/pages/guide/Guide.tsx b/frontend/packages/core/src/pages/guide/Guide.tsx index 9e79f2e8..d87c6e79 100644 --- a/frontend/packages/core/src/pages/guide/Guide.tsx +++ b/frontend/packages/core/src/pages/guide/Guide.tsx @@ -1,232 +1,327 @@ -import InsidePage from "@common/components/aoplatform/InsidePage" -import { useGlobalContext } from "@common/contexts/GlobalStateContext" -import { $t } from "@common/locales" -import { Icon } from "@iconify/react/dist/iconify.js" -import { Button, Card, Collapse } from "antd" -import { Dispatch, SetStateAction, useEffect, useState } from "react" -import { useLocation, useNavigate } from "react-router-dom" +import InsidePage from '@common/components/aoplatform/InsidePage' +import { useGlobalContext } from '@common/contexts/GlobalStateContext' +import { $t } from '@common/locales' +import { Icon } from '@iconify/react/dist/iconify.js' +import { Button, Card, Collapse } from 'antd' +import { Dispatch, SetStateAction, useEffect, useState } from 'react' +import { useLocation, useNavigate } from 'react-router-dom' +import { AIModelGuide } from './AIModelGuide' -export default function Guide(){ - const [showGuide, setShowGuide] = useState(localStorage.getItem('showGuide') !== 'false' ) - const [showAdvancedGuide, setShowAdvancedGuide] = useState(localStorage.getItem('showAdvancedGuide') !== 'false' ) - const [, forceUpdate] = useState(null); - const {state} = useGlobalContext() - const location = useLocation() - const currentUrl = location.pathname - const navigator = useNavigate() - const guideSections = [ +export default function Guide() { + const [showGuide, setShowGuide] = useState(localStorage.getItem('showGuide') !== 'false') + const [showAdvancedGuide, setShowAdvancedGuide] = useState(localStorage.getItem('showAdvancedGuide') !== 'false') + const [, forceUpdate] = useState(null) + const { state } = useGlobalContext() + const location = useLocation() + const currentUrl = location.pathname + const navigator = useNavigate() + const guideSections = [ + { + title: $t('快速接入 AI'), + items: [ { - title: $t('快速接入 AI'), - items: [ - { - title: $t("配置你的 AI 模型"), - description: $t('通过 APIPark 快速接入各种 AI 模型,使用统一的格式来调用API,并且可以随意切换模型。'), - link: 'https://docs.apipark.com/docs/system_setting/ai_model_providers' - }, - { - title: $t("创建 AI 服务和 API"), - description: $t('创建 AI 类型的服务,并且你可以将 Prompt 提示词设置为一个 API,简化使用 AI 的流程。'), - link: 'https://docs.apipark.com/docs/services/ai_services' - }, - { - title: $t("创建调用 Token"), - description: $t('为了安全地调用 API,你需要创建一个消费者以及Token。'), - link: 'https://docs.apipark.com/docs/consumers' - }, - { - title: $t("调用"), - description: $t('现在你可以通过 Token 来调用这些 API。'), - link: 'https://docs.apipark.com/docs/call_api' - } - ] + title: $t('配置你的 AI 模型'), + description: $t('通过 APIPark 快速接入各种 AI 模型,使用统一的格式来调用API,并且可以随意切换模型。'), + link: 'https://docs.apipark.com/docs/system_setting/ai_model_providers' }, { - title: $t('快速接入 REST API'), - items: [ - { - title: $t("创建 REST 服务和 API"), - description: $t('创建 AI 类型的服务,并且你可以将 Prompt 提示词设置为一个 API,简化使用 AI 的流程。'), - link: 'https://docs.apipark.com/docs/services/rest_services' - }, - { - title: $t("创建调用 Token"), - description: $t('为了安全地调用 API,你需要创建一个消费者以及Token。'), - link: 'https://docs.apipark.com/docs/consumers' - }, - { - title: $t("调用"), - description: $t('现在你可以通过 Token 来调用这些 API。'), - link: 'https://docs.apipark.com/docs/call_api' - } - ] + title: $t('创建 AI 服务和 API'), + description: $t('创建 AI 类型的服务,并且你可以将 Prompt 提示词设置为一个 API,简化使用 AI 的流程。'), + link: 'https://docs.apipark.com/docs/services/ai_services' }, { - title: $t('仪表盘'), - items: [ - { - title: $t("统计 API 调用情况"), - description: $t('仪表盘中提供了多种统计图表,帮助我们了解 API 的运行情况。'), - link: 'https://docs.apipark.com/docs/analysis' - } - ] + title: $t('创建调用 Token'), + description: $t('为了安全地调用 API,你需要创建一个消费者以及Token。'), + link: 'https://docs.apipark.com/docs/consumers' + }, + { + title: $t('调用'), + description: $t('现在你可以通过 Token 来调用这些 API。'), + link: 'https://docs.apipark.com/docs/call_api' } - ]; - const advanceGuideSections = [ + ] + }, + { + title: $t('快速接入 REST API'), + items: [ { - title: $t('核心功能'), - items: [ - { - title: $t("账号与角色"), - description: $t('邀请你的团队成员加入 APIPark,共同管理和调用 API。'), - link: 'https://docs.apipark.com/docs/system_setting/account_role' - }, - { - title: $t("团队"), - description: $t('团队中包含了人员、消费者和服务,不同团队之间的消费者和服务数据是隔离的,可用于管理企业内部不同的部门/项目组/团队。'), - link: 'https://docs.apipark.com/docs/teams' - }, - { - title: $t("服务"), - description: $t('服务内包含一组 API,并且可以发布到 API 市场被其他团队使用。'), - link: 'https://docs.apipark.com/docs/category/-%E6%9C%8D%E5%8A%A1' - } - ] + title: $t('创建 REST 服务和 API'), + description: $t('创建 AI 类型的服务,并且你可以将 Prompt 提示词设置为一个 API,简化使用 AI 的流程。'), + link: 'https://docs.apipark.com/docs/services/rest_services' }, { - title: $t('权限管理'), - items: [ - { - title: $t("订阅服务"), - description: $t('如果需要调用某个服务的 API,需要先订阅该服务,并且等待提供服务的团队审核后才可发起 API 请求。'), - link: 'https://docs.apipark.com/docs/developer_portal' - }, - { - title: $t("审核订阅申请"), - description: $t('提供服务的团队可以审核来自其他团队的订阅申请,审核通过后的消费者才可发起 API 请求。'), - link: 'https://docs.apipark.com/docs/services/review_consumers' - } - ] + title: $t('创建调用 Token'), + description: $t('为了安全地调用 API,你需要创建一个消费者以及Token。'), + link: 'https://docs.apipark.com/docs/consumers' }, { - title: $t('集成'), - items: [ - { - title: $t("日志"), - description: $t('APIPark 提供详尽的 API 调用日志,帮助企业监控、分析和审计 API 的运行状况。'), - link: 'https://docs.apipark.com/docs/system_setting/log/' - } - ] + title: $t('调用'), + description: $t('现在你可以通过 Token 来调用这些 API。'), + link: 'https://docs.apipark.com/docs/call_api' } - ]; - useEffect(()=>{ - localStorage.setItem('showGuide', showGuide.toString()) - },[showGuide]) - useEffect(()=>{ - localStorage.setItem('showAdvancedGuide', showAdvancedGuide.toString()) - },[showAdvancedGuide]) - - useEffect(()=>{ - if(currentUrl === '/guide'){ - setTimeout(()=>{ - navigator('/guide/page') - },0) + ] + }, + { + title: $t('仪表盘'), + items: [ + { + title: $t('统计 API 调用情况'), + description: $t('仪表盘中提供了多种统计图表,帮助我们了解 API 的运行情况。'), + link: 'https://docs.apipark.com/docs/analysis' } - },[]) - useEffect(()=>{forceUpdate({})},[state.language]) - return ( - - 👋 - {$t('Hello!欢迎使用 APIPark')} - -
} - description={
-

{$t("你能通过 APIPark 快速在企业内部构建 API 开放门户/市场,享受极致的转发性能、API 可观测、服务治理、多租户管理、订阅审核流程等诸多好处。")}

-

{$t("如果你喜欢我们的产品,欢迎给我们 Star 或提供产品反馈意见。")}

-
} - showBorder={false} - scrollPage={false} - contentClassName=" w-full pr-PAGE_INSIDE_X pb-PAGE_INSIDE_B" - > -
- {showGuide && - -

- 🚀{`${$t('快速入门')}`}

-

{$t("我们提供了一些任务来帮你快速了解 APIPark")}

, - children: }]} - />} - {showAdvancedGuide && - -

- 🏍️{`${$t('进阶教程')}`}

-

{$t("了解 APIPark 如何更好地管理 API 和 AI")}

, - children: }]} - />} -
- - ) + ] + } + ] + const advanceGuideSections = [ + { + title: $t('核心功能'), + items: [ + { + title: $t('账号与角色'), + description: $t('邀请你的团队成员加入 APIPark,共同管理和调用 API。'), + link: 'https://docs.apipark.com/docs/system_setting/account_role' + }, + { + title: $t('团队'), + description: $t( + '团队中包含了人员、消费者和服务,不同团队之间的消费者和服务数据是隔离的,可用于管理企业内部不同的部门/项目组/团队。' + ), + link: 'https://docs.apipark.com/docs/teams' + }, + { + title: $t('服务'), + description: $t('服务内包含一组 API,并且可以发布到 API 市场被其他团队使用。'), + link: 'https://docs.apipark.com/docs/category/-%E6%9C%8D%E5%8A%A1' + } + ] + }, + { + title: $t('权限管理'), + items: [ + { + title: $t('订阅服务'), + description: $t( + '如果需要调用某个服务的 API,需要先订阅该服务,并且等待提供服务的团队审核后才可发起 API 请求。' + ), + link: 'https://docs.apipark.com/docs/developer_portal' + }, + { + title: $t('审核订阅申请'), + description: $t('提供服务的团队可以审核来自其他团队的订阅申请,审核通过后的消费者才可发起 API 请求。'), + link: 'https://docs.apipark.com/docs/services/review_consumers' + } + ] + }, + { + title: $t('集成'), + items: [ + { + title: $t('日志'), + description: $t('APIPark 提供详尽的 API 调用日志,帮助企业监控、分析和审计 API 的运行状况。'), + link: 'https://docs.apipark.com/docs/system_setting/log/' + } + ] + } + ] + useEffect(() => { + localStorage.setItem('showGuide', showGuide.toString()) + }, [showGuide]) + useEffect(() => { + localStorage.setItem('showAdvancedGuide', showAdvancedGuide.toString()) + }, [showAdvancedGuide]) + + useEffect(() => { + if (currentUrl === '/guide') { + setTimeout(() => { + navigator('/guide/page') + }, 0) + } + }, []) + useEffect(() => { + forceUpdate({}) + }, [state.language]) + return ( + + 👋 + {$t('Hello!欢迎使用 APIPark')} +
+ } + description={ +
+

+ 🦄 APIPark + {$t( + '是开源的一站式 AI 网关与 API 门户,可快速接入 OpenAI/DeepSeek 等各类 AI 模型,通过统一请求格式避免模型切换对业务造成影响,提供企业级 API 安全防护(鉴权/限流/敏感词过滤)与实时用量监控,支持团队内 API 共享协作,管理接口订阅授权并保证您的API安全。' + )} +

+

+ {$t('✨ 欢迎在 Github 为我们 Star 或提供产品反馈意见。')} + + {$t('点击这里')} + +   + +   + + + + + +   + +   + + {$t('点击')} +   + + + + Star + +

+
+ } + showBorder={false} + scrollPage={false} + scrollInsidePage={true} + customPadding={true} + headerClassName="pt-[30px] pl-[40px]" + contentClassName=" w-full pr-PAGE_INSIDE_X pb-PAGE_INSIDE_B pl-[40px]" + > + +
+ {showGuide && ( + +

+ 🚀 + {`${$t('快速入门')}`}{' '} +

+

{$t('我们提供了一些任务来帮你快速了解 APIPark')}

+
+ ), + children: + } + ]} + /> + )} + {showAdvancedGuide && ( + +

+ 🏍️ + {`${$t('进阶教程')}`}{' '} +

+

{$t('了解 APIPark 如何更好地管理 API 和 AI')}

+
+ ), + children: ( + + ) + } + ]} + /> + )} +
+ + ) } -const QuickGuideContent = ({changeGuideShow,guideSections}:{changeGuideShow:Dispatch>,guideSections: { - title: string; +const QuickGuideContent = ({ + changeGuideShow, + guideSections +}: { + changeGuideShow: Dispatch> + guideSections: { + title: string items: { - title: string; - description: string; - link: string; - }[]; -}[]})=>{ - - - return (<> -
- {guideSections.map((section, index) => ( -
-

- - {section.title} -

-
-
- {section.items.map((item, itemIndex) => ( - { window.open(item.link, '_blank') }} - > - {item.description} - - ))} -
-
-
- ))} -

- -

- - -
-

-
- ) -} \ No newline at end of file + title: string + description: string + link: string + }[] + }[] +}) => { + return ( + <> +
+ {guideSections.map((section, index) => ( +
+

+ + {section.title} +

+
+
+ {section.items.map((item, itemIndex) => ( + { + window.open(item.link, '_blank') + }} + > + {item.description} + + ))} +
+
+
+ ))} +
+ +
+ + +
+
+
+ + ) +} diff --git a/frontend/packages/core/src/pages/guide/LocalAiDeploy.tsx b/frontend/packages/core/src/pages/guide/LocalAiDeploy.tsx new file mode 100644 index 00000000..e131687b --- /dev/null +++ b/frontend/packages/core/src/pages/guide/LocalAiDeploy.tsx @@ -0,0 +1,197 @@ +import { Icon } from '@iconify/react/dist/iconify.js' +import WithPermission from '@common/components/aoplatform/WithPermission' +import { BasicResponse, PLACEHOLDER, RESPONSE_TIPS, STATUS_CODE } from '@common/const/const' +import { Form, message, Select } from 'antd' +import { $t } from '@common/locales' +import { LocalModelItem, SimpleTeamItem } from '@common/const/type' +import { useFetch } from '@common/hooks/http' +import { forwardRef, useEffect, useImperativeHandle, useState } from 'react' +import useDeployLocalModel from './deployModelUtil' +export type LocalAiDeployHandle = { + deployLocalAIServer: () => Promise +} +const LocalAiDeploy = forwardRef((props: any, ref: any) => { + const { onClose } = props + const [form] = Form.useForm() + const { fetchData } = useFetch() + const [modelList, setModelList] = useState([]) + const [tagList, setTagList] = useState([]) + const [teamList, setTeamList] = useState([]) + const { deployLocalModel, getTeamOptionList } = useDeployLocalModel() + + /** + * 获取本地模型列表 + * @returns 本地模型列表 + */ + const getLocalModelList = async (keyword?: string) => { + const response = await fetchData>('model/local/can_deploy', { + method: 'GET', + eoTransformKeys: ['is_popular'], + ...(keyword ? { eoParams: { keyword } } : {}) + }) + const { code, data, msg } = response + if (code === STATUS_CODE.SUCCESS) { + if (!keyword) { + const modelList = data.models?.map((x: LocalModelItem) => { + return { ...x, label: x.name, value: x.id } + }) + setModelList(modelList) + } else { + const tagList = data.models?.map((x: LocalModelItem) => { + return { ...x, label: x.name, value: x.id } + }) + setTagList(tagList) + if (tagList.length) { + form.setFieldValue('model', tagList[0].id) + } + } + } else { + message.error(msg || $t(RESPONSE_TIPS.error)) + return [] + } + } + + /** + * 部署热门模型 + * @param id 模型ID + * @returns + */ + const deployPopularModel = async (id: string) => { + const response = await deployLocalModel({ + modelID: id + }) + if (response.code !== STATUS_CODE.SUCCESS) { + return + } + onClose?.() + } + + const getTeamList = async () => { + const teamOptionList = await getTeamOptionList() + setTeamList(teamOptionList) + if (form.getFieldValue('team') === undefined && teamOptionList.length) { + form.setFieldValue('team', teamOptionList[0].value) + } + } + useEffect(() => { + getLocalModelList() + getTeamList() + }, []) + + /** + * 部署本地AI + * @returns + */ + const deployLocalAIServer = () => { + return new Promise((resolve, reject) => { + form + .validateFields() + .then(async (value) => { + const response = await deployLocalModel({ + modelID: value.model, + team: value.team + }) + if (response.code !== STATUS_CODE.SUCCESS) { + return + } + resolve(true) + }) + .catch((errorInfo) => reject(errorInfo)) + }) + } + + useImperativeHandle(ref, () => ({ + deployLocalAIServer + })) + return ( + +
+ + +
+ + {$t('热点模型')} +
+
+ {modelList.length + ? modelList + .filter((item) => item.isPopular) + .map((item) => ( + { + deployPopularModel(item.id) + }} + > + {item.name}({item.size}) + + )) + : null} +
+
+ + + + + + +
+
+ ) +}) + +export default LocalAiDeploy diff --git a/frontend/packages/core/src/pages/guide/RestAIDeploy.tsx b/frontend/packages/core/src/pages/guide/RestAIDeploy.tsx new file mode 100644 index 00000000..8dfad314 --- /dev/null +++ b/frontend/packages/core/src/pages/guide/RestAIDeploy.tsx @@ -0,0 +1,122 @@ +import { Icon } from '@iconify/react/dist/iconify.js' +import WithPermission from '@common/components/aoplatform/WithPermission' +import { BasicResponse, PLACEHOLDER, RESPONSE_TIPS, STATUS_CODE } from '@common/const/const' +import { Upload, UploadProps, Form, message, Select } from 'antd' +import { $t } from '@common/locales' +import { SimpleTeamItem } from '@common/const/type' +import { useFetch } from '@common/hooks/http' +import { forwardRef, useEffect, useImperativeHandle, useState } from 'react' +import useDeployLocalModel from './deployModelUtil' + +const { Dragger } = Upload +export type RestAIDeployHandle = { + deployRestAIServer: () => Promise +} +const RestAIDeploy = forwardRef((props: any, ref: any) => { + const [form] = Form.useForm() + const { fetchData } = useFetch() + const [teamList, setTeamList] = useState([]) + const { getTeamOptionList } = useDeployLocalModel() + + const uploadProps: UploadProps = { + accept: '.json,.yaml', + name: 'file', + multiple: false, + maxCount: 1, + beforeUpload: (file) => { + form.setFieldsValue({ key: file }) + return false + } + } + const getTeamList = async () => { + const teamOptionList = await getTeamOptionList() + setTeamList(teamOptionList) + if (form.getFieldValue('team') === undefined && teamOptionList.length) { + form.setFieldValue('team', teamOptionList[0].value) + } + } + useEffect(() => { + getTeamList() + }, []) + + /** + * 部署 rest 服务 + * @param file + * @returns + */ + const deployRestServer = async (file: File) => { + return new Promise((resolve, reject) => { + const formData = new FormData() + formData.append('file', file) + formData.append('type', 'swagger') + formData.append('team', form.getFieldValue('team')) + fetchData>('quick/service/rest', { + method: 'POST', + body: formData + }).then((response) => { + const { code, msg } = response + if (code === STATUS_CODE.SUCCESS) { + message.success(msg || $t(RESPONSE_TIPS.success)) + resolve(true) + } else { + message.error(msg || $t(RESPONSE_TIPS.error)) + reject(false) + } + }) + }) + } + + /** + * 部署本地AI + * @returns + */ + const deployRestAIServer = () => { + return new Promise((resolve, reject) => { + form + .validateFields() + .then(async (value) => { + await deployRestServer(value.key.file) + resolve(true) + }) + .catch((errorInfo) => reject(errorInfo)) + }) + } + + useImperativeHandle(ref, () => ({ + deployRestAIServer + })) + return ( + +
+ + +

+ +

+

{$t('选择 OpenAPI 文件 (.json / .yaml)')}

+
+
+ + + +
+
+ ) +}) + +export default RestAIDeploy diff --git a/frontend/packages/core/src/pages/guide/deployModelUtil.ts b/frontend/packages/core/src/pages/guide/deployModelUtil.ts new file mode 100644 index 00000000..a0477234 --- /dev/null +++ b/frontend/packages/core/src/pages/guide/deployModelUtil.ts @@ -0,0 +1,54 @@ +// deployModelUtil.ts +import { useFetch } from '@common/hooks/http' +import { message } from 'antd' +import { STATUS_CODE, RESPONSE_TIPS, BasicResponse } from '@common/const/const' +import { $t } from '@common/locales' +import { MemberItem, SimpleTeamItem } from '@common/const/type' +import { useGlobalContext } from '@common/contexts/GlobalStateContext' + +const useDeployLocalModel = () => { + const { fetchData } = useFetch() + const { checkPermission } = useGlobalContext() + const deployLocalModel = async (value: { modelID: string; team?: number }) => { + const response = await fetchData>( + 'model/local/deploy/start', + { + method: 'POST', + eoBody: { + model: value.modelID, + team: value?.team + } + } + ) + const { code, msg } = response + if (code === STATUS_CODE.SUCCESS) { + message.success(msg || $t(RESPONSE_TIPS.success)) + return response + } else { + message.error(msg || $t(RESPONSE_TIPS.error)) + } + } + /** + * 获取 team 选项列表 + * @returns + */ + const getTeamOptionList = async (): any[] => { + const response = await fetchData>( + !checkPermission('system.workspace.team.view_all') ? 'simple/teams/mine' : 'simple/teams', + { method: 'GET', eoTransformKeys: [] } + ) + const { code, data, msg } = response + if (code === STATUS_CODE.SUCCESS) { + const teamOptionList = data.teams?.map((x: MemberItem) => { + return { ...x, label: x.name, value: x.id } + }) + return teamOptionList + } else { + message.error(msg || $t(RESPONSE_TIPS.error)) + return [] + } + } + return { deployLocalModel, getTeamOptionList } +} + +export default useDeployLocalModel diff --git a/frontend/packages/core/src/pages/keySettings/index.tsx b/frontend/packages/core/src/pages/keySettings/index.tsx index 3f05d620..67458589 100644 --- a/frontend/packages/core/src/pages/keySettings/index.tsx +++ b/frontend/packages/core/src/pages/keySettings/index.tsx @@ -338,10 +338,10 @@ const KeySettings: React.FC = () => { return ( - {$t('支持单个 API 模型供应商下创建多个 APIKey APIKey 进行智能负载均衡')} + {$t('支持单个 API 模型供应商下创建多个 API Key 进行智能负载均衡')}
((props, ref: any) => { + const [form] = Form.useForm() + const [modelProviderLoading, setModelProviderLoading] = useState(false) + const [modelProviderData, setModelProviderData] = useState([]) + const [llmList, setLlmList] = useState() + const [modelType, setModelType] = useState<'online' | 'local'>('online') + const { message } = App.useApp() + const [llmListLoading, setLlmListLoading] = useState(false) + const { fetchData } = useFetch() + + const [modelTypeList] = useState([ + { + label: $t('线上模型'), + value: 'online' + }, + { + label: $t('本地模型'), + value: 'local' + } + ]) + + /** + * 获取 llm 列表 + * @param id + */ + const getLlmList = (id?: string) => { + setLlmListLoading(true) + fetchData>(`ai/provider/llms`, { + method: 'GET', + eoParams: { provider: id }, + eoTransformKeys: ['default_llm'] + }) + .then((response) => { + const { code, data, msg } = response + if (code === STATUS_CODE.SUCCESS) { + setLlmList(data.llms) + form.setFieldValue('model', data.provider?.defaultLlm) + } else { + message.error(msg || $t(RESPONSE_TIPS.error)) + } + }) + .finally(() => { + setLlmListLoading(false) + }) + } + + /** + * 重置表单数据 + * @param e + */ + const resetFormData = (e = 'online') => { + form.setFieldValue('type', e) + form.setFieldValue('model', '') + form.setFieldValue('provider', '') + setModelProviderData([]) + setLlmList([]) + setModelType(e as 'online' | 'local') + } + + /** + * 切换模型类型 + * @param e + */ + const modelTypeChange = (e: string) => { + resetFormData(e) + if (e === 'online') { + setModelProviderLoading(true) + fetchData('simple/ai/providers/configured', { + method: 'GET', + eoTransformKeys: ['default_llm'] + }) + .then((response) => { + const mockApiResponse: ApiResponse = response as ApiResponse + const providers = mockApiResponse.data.providers || [] + setModelProviderData(providers) + if (providers.length) { + const id = providers[0].id + form.setFieldValue('provider', id) + getLlmList(id) + } + }) + .finally(() => { + setModelProviderLoading(false) + }) + } else { + setLlmListLoading(true) + fetchData('simple/ai/models/local/configured', { + method: 'GET' + }) + .then((response) => { + const models = response.data.models || [] + setLlmList(models) + if (models.length) { + const id = models[0].id + form.setFieldValue('model', id) + } + }) + .finally(() => { + setLlmListLoading(false) + }) + } + } + + /** + * 模型提供商变化 + * @param e + */ + const modelProviderChange = (e: string) => { + form.setFieldValue('modelProvider', e) + getLlmList(e) + } + + useEffect(() => { + modelTypeChange('online') + }, []) + + /** + * 保存 + */ + const save = () => { + return new Promise((resolve, reject) => { + form + .validateFields() + .then((values) => { + fetchData('ai/balance', { + method: 'POST', + eoBody: values + }) + .then((response) => { + const { code, msg } = response + if (code === STATUS_CODE.SUCCESS) { + message.success(msg || $t(RESPONSE_TIPS.success)) + resolve(true) + } else { + message.error(msg || $t(RESPONSE_TIPS.error)) + reject(msg || $t(RESPONSE_TIPS.error)) + } + }) + .catch((error) => { + reject(error) + }) + }) + .catch((errorInfo) => { + reject(errorInfo) + }) + }) + } + useImperativeHandle(ref, () => ({ + save + })) + + return ( +
+ label={$t('模型类型')} name="type" rules={[{ required: true }]}> + + + {modelType === 'online' && ( + label={$t('模型供应商')} name="provider" rules={[{ required: true }]}> + + + )} + + + + + ) +}) + +export default AddLoadBalancingModel diff --git a/frontend/packages/core/src/pages/loadBalancing/index.tsx b/frontend/packages/core/src/pages/loadBalancing/index.tsx new file mode 100644 index 00000000..3b89eb39 --- /dev/null +++ b/frontend/packages/core/src/pages/loadBalancing/index.tsx @@ -0,0 +1,303 @@ +import { ActionType } from '@ant-design/pro-components' +import InsidePage from '@common/components/aoplatform/InsidePage' +import PageList, { PageProColumns } from '@common/components/aoplatform/PageList' +import WithPermission from '@common/components/aoplatform/WithPermission' +import { BasicResponse, RESPONSE_TIPS, STATUS_CODE } from '@common/const/const' +import { useFetch } from '@common/hooks/http' +import { $t } from '@common/locales/index.ts' +import { App, Button, Typography } from 'antd' +import { useEffect, useRef, useState } from 'react' +import { LoadBalancingHandle, LoadBalancingItems } from './type' +import TableBtnWithPermission from '@common/components/aoplatform/TableBtnWithPermission' +import AddLoadBalancingModel from './AddModel' + +const LoadBalancingPage = () => { + const pageListRef = useRef(null) + const [searchWord, setSearchWord] = useState('') + const { modal, message } = App.useApp() + const [apiKeys, setApiKeys] = useState([]) + const addModelRef = useRef() + const statusEnum: Record = { + normal: { text: {$t('正常')} }, + abnormal: { text: {$t('异常')} } + } + + /** + * 请求数据 + */ + const { fetchData } = useFetch() + const addModel = () => { + modal.confirm({ + title: $t('添加模型'), + content: , + width: 600, + closable: true, + onOk: () => { + return addModelRef.current?.save().then((res) => { + if (res === true) { + pageListRef.current?.reload() + } + }) + }, + wrapClassName: 'ant-modal-without-footer', + okText: $t('确认'), + cancelText: $t('取消'), + icon: <> + }) + } + + /** + * 获取列表数据 + * @param dataType + * @returns + */ + const requestApis = () => { + return fetchData>(`ai/balances`, { + method: 'GET', + eoParams: { + keyword: searchWord + }, + eoTransformKeys: ['api_count', 'key_count'] + }) + .then((response) => { + const { code, data, msg } = response + if (code === STATUS_CODE.SUCCESS) { + setApiKeys(response.data.list) + // 保存数据 + return { + data: data.list, + total: data.total, + success: true + } + } else { + message.error(msg || $t(RESPONSE_TIPS.error)) + return { data: [], success: false } + } + }) + .catch(() => { + return { data: [], success: false } + }) + } + + /** + * 排序 + * @param beforeIndex + * @param afterIndex + * @param newDataSource + */ + const handleDragSortEnd = async (beforeIndex: number, afterIndex: number, newDataSource: LoadBalancingItems[]) => { + try { + let targetId + let sortDirection + + // Check if there's an item before afterIndex + if (afterIndex > 0) { + targetId = newDataSource[afterIndex - 1].id + sortDirection = 'after' + } else if (afterIndex < newDataSource.length - 1) { + // If no item before, use the item after + targetId = newDataSource[afterIndex + 1].id + sortDirection = 'before' + } + + const response = await fetchData>('ai/balance/sort', { + method: 'PUT', + eoBody: { + origin: apiKeys[beforeIndex].id, + target: targetId, + sort: sortDirection + } + }) + + if (response.code === STATUS_CODE.SUCCESS) { + message.success($t('排序成功')) + pageListRef.current?.reload() + } else { + message.error(response.msg || RESPONSE_TIPS.error) + // Revert the UI if API call fails + pageListRef.current?.reload() + } + } catch (error) { + message.error(RESPONSE_TIPS.error) + // Revert the UI if API call fails + pageListRef.current?.reload() + } + } + + /** + * 删除 + * @param id + */ + const handleDelete = (id: string) => { + fetchData>('ai/balance', { + method: 'DELETE', + eoParams: { + id + } + }) + .then((response) => { + const { code } = response + if (code === STATUS_CODE.SUCCESS) { + message.success($t('删除成功')) + pageListRef.current?.reload() + } else { + message.error(RESPONSE_TIPS.error) + } + }) + .catch((error) => { + message.error(RESPONSE_TIPS.error) + }) + } + + /** + * 设置表格列 + */ + const columns: PageProColumns[] = [ + { + title: '', + dataIndex: 'drag', + width: '40px' + }, + { + title: $t('优先级'), + dataIndex: 'priority', + width: 80, + ellipsis: true, + key: 'priority' + }, + { + title: $t('模型'), + dataIndex: ['provider', 'name'], + ellipsis: true, + key: 'provider', + render: (dom: React.ReactNode, record: LoadBalancingItems) => ( + + {record.provider?.name} / {record.model?.name} + + ) + }, + { + title: $t('类型'), + dataIndex: 'type', + width: 120, + ellipsis: true, + key: 'type', + render: (dom: React.ReactNode, record: LoadBalancingItems) => ( + {record.type === 'online' ? $t('线上模型') : $t('本地模型')} + ) + }, + { + title: $t('状态'), + dataIndex: 'state', + width: 80, + ellipsis: true, + key: 'state', + render: (dom: React.ReactNode, record: LoadBalancingItems) => ( + {statusEnum[record.state]?.text || '-'} + ) + }, + { + title: $t('Apis'), + dataIndex: 'apiCount', + ellipsis: true, + width: 80, + key: 'apiCount', + render: (dom: React.ReactNode, record: LoadBalancingItems) => ( + + + {record.apiCount || '0'} + + + ) + }, + { + title: $t('Keys'), + dataIndex: 'keyCount', + ellipsis: true, + width: 80, + key: 'keyCount', + render: (dom: React.ReactNode, record: LoadBalancingItems) => ( + + + {record.keyCount || '0'} + + + ) + }, + { + title: '', + key: 'option', + btnNums: 1, + width: 50, + fixed: 'right', + valueType: 'option', + render: (_: React.ReactNode, entity: any) => [ + handleDelete(entity.id as string)} + btnTitle={$t('删除')} + /> + ] + } + ] + + + return ( + <> + +
+ + + + ]} + request={() => requestApis()} + onSearchWordChange={(e) => { + setSearchWord(e.target.value) + }} + showPagination={true} + dragSortKey="drag" + onDragSortEnd={handleDragSortEnd} + searchPlaceholder={$t('请输入...')} + columns={columns} + /> +
+
+ + ) +} +export default LoadBalancingPage diff --git a/frontend/packages/core/src/pages/loadBalancing/loadBalancingLayout.tsx b/frontend/packages/core/src/pages/loadBalancing/loadBalancingLayout.tsx new file mode 100644 index 00000000..196fc934 --- /dev/null +++ b/frontend/packages/core/src/pages/loadBalancing/loadBalancingLayout.tsx @@ -0,0 +1,16 @@ +import { useEffect } from 'react' +import { Outlet, useLocation, useNavigate } from 'react-router-dom' + +export default function LoadBalancingLayout() { + const location = useLocation() + const pathName = location.pathname + const navigator = useNavigate() + + useEffect(() => { + if (pathName === '/loadBalancing') { + const queryParams = new URLSearchParams(location.search).toString() + navigator(`/loadBalancing/list${queryParams ? `?${queryParams}` : ''}`) + } + }, [pathName]) + return +} diff --git a/frontend/packages/core/src/pages/loadBalancing/type.ts b/frontend/packages/core/src/pages/loadBalancing/type.ts new file mode 100644 index 00000000..48cb7a3c --- /dev/null +++ b/frontend/packages/core/src/pages/loadBalancing/type.ts @@ -0,0 +1,31 @@ +export interface LoadBalancingItems { + id: string + priority: string + provider: { + id: string + name: string + } + model: { + id: string + name: string + } + type: string + state: string + apiCount: string + keyCount: string +} + +export interface LoadModelDetailData { + type: string + provider: string + model: string +} +export interface LocalLlmType { + id: string + name: string + defaultConfig: string +} + +export type LoadBalancingHandle = { + save: () => Promise +} diff --git a/frontend/packages/core/src/pages/playground/index.tsx b/frontend/packages/core/src/pages/playground/index.tsx index 12f5ec43..12a1b689 100644 --- a/frontend/packages/core/src/pages/playground/index.tsx +++ b/frontend/packages/core/src/pages/playground/index.tsx @@ -1,7 +1,5 @@ 'use client' -import AIFlowChart from '../aiSetting/AIFlowChart' - export default function Playground() { - return + return