mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-02-23 22:34:10 +08:00
12 lines
202 B
Go
12 lines
202 B
Go
|
package dto
|
||
|
|
||
|
type OllamaModelInfo struct {
|
||
|
Name string `json:"name"`
|
||
|
Size string `json:"size"`
|
||
|
Modified string `json:"modified"`
|
||
|
}
|
||
|
|
||
|
type OllamaModelName struct {
|
||
|
Name string `json:"name"`
|
||
|
}
|