separate deprecation changes

This commit is contained in:
Roy Han
2024-06-28 13:22:37 -07:00
parent 12209bd021
commit 0ac5cbc00e
4 changed files with 7 additions and 3 deletions

View File

@@ -293,6 +293,7 @@ type ProcessResponse struct {
// ListModelResponse is a single model description in [ListResponse].
type ListModelResponse struct {
Name string `json:"name"`
Model string `json:"model"`
ModifiedAt time.Time `json:"modified_at"`
Size int64 `json:"size"`
Digest string `json:"digest"`
@@ -301,6 +302,7 @@ type ListModelResponse struct {
// ProcessModelResponse is a single model description in [ProcessResponse].
type ProcessModelResponse struct {
Name string `json:"name"`
Model string `json:"model"`
Size int64 `json:"size"`
Digest string `json:"digest"`