mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-03-01 11:34:13 +08:00
12 lines
210 B
Go
12 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"`
|
||
|
}
|