mirror of
https://github.com/ollama/ollama.git
synced 2025-04-04 01:50:26 +02:00
add model to ModelResponse
This commit is contained in:
parent
a38d88d828
commit
745b5934fa
@ -213,6 +213,7 @@ type ListResponse struct {
|
||||
|
||||
type ModelResponse struct {
|
||||
Name string `json:"name"`
|
||||
Model string `json:"model"`
|
||||
ModifiedAt time.Time `json:"modified_at"`
|
||||
Size int64 `json:"size"`
|
||||
Digest string `json:"digest"`
|
||||
|
@ -735,6 +735,7 @@ func ListModelsHandler(c *gin.Context) {
|
||||
}
|
||||
|
||||
return api.ModelResponse{
|
||||
Model: model.ShortName,
|
||||
Name: model.ShortName,
|
||||
Size: model.Size,
|
||||
Digest: model.Digest,
|
||||
|
Loading…
x
Reference in New Issue
Block a user