Ollama4j
A Java library (wrapper/binding) for Ollama server.
Loading...
Searching...
No Matches
ModelPullResponse.java
Go to the documentation of this file.
1
package
io.github.ollama4j.models.response;
2
3
import
com.fasterxml.jackson.annotation.JsonIgnoreProperties;
4
import
lombok.Data;
5
6
@Data
7
@JsonIgnoreProperties(ignoreUnknown =
true
)
8
public class
ModelPullResponse
{
9
private
String status;
10
private
String digest;
11
private
long
total;
12
private
long
completed;
13
}
io.github.ollama4j.models.response.ModelPullResponse
Definition
ModelPullResponse.java:8
src
main
java
io
github
ollama4j
models
response
ModelPullResponse.java
Generated by
1.12.0