Commit 745b5934 authored by Michael Yang's avatar Michael Yang
Browse files

add model to ModelResponse

parent a38d88d8
...@@ -213,6 +213,7 @@ type ListResponse struct { ...@@ -213,6 +213,7 @@ type ListResponse struct {
type ModelResponse struct { type ModelResponse struct {
Name string `json:"name"` Name string `json:"name"`
Model string `json:"model"`
ModifiedAt time.Time `json:"modified_at"` ModifiedAt time.Time `json:"modified_at"`
Size int64 `json:"size"` Size int64 `json:"size"`
Digest string `json:"digest"` Digest string `json:"digest"`
......
...@@ -735,6 +735,7 @@ func ListModelsHandler(c *gin.Context) { ...@@ -735,6 +735,7 @@ func ListModelsHandler(c *gin.Context) {
} }
return api.ModelResponse{ return api.ModelResponse{
Model: model.ShortName,
Name: model.ShortName, Name: model.ShortName,
Size: model.Size, Size: model.Size,
Digest: model.Digest, Digest: model.Digest,
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment