mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-10-10 15:36:45 +08:00
11 lines
210 B
Go
11 lines
210 B
Go
package model
|
|
|
|
type OllamaModel struct {
|
|
BaseModel
|
|
|
|
Name string `json:"name"`
|
|
Size string `json:"size"`
|
|
From string `json:"from"`
|
|
Status string `json:"status"`
|
|
Message string `json:"message"`
|
|
}
|