Merge pull request #22 from AgentSchmecker/bugfix/add_model_property_to_model_api

Adds model property to Model Type
This commit is contained in:
Amith Koujalgi 2024-02-09 23:48:36 +05:30 committed by GitHub
commit ad670c3c62
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -7,6 +7,7 @@ import lombok.Data;
public class Model {
private String name;
private String model;
@JsonProperty("modified_at")
private String modifiedAt;
private String digest;