All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.quarkiverse.langchain4j.ollama.ChatResponse Maven / Gradle / Ivy

There is a newer version: 0.21.0
Show newest version
package io.quarkiverse.langchain4j.ollama;

import java.util.Collections;

public record ChatResponse(String model, String createdAt, Message message, Boolean done, Integer promptEvalCount,
        Integer evalCount) {

    public static ChatResponse emptyNotDone() {
        return new ChatResponse(null, null, new Message(Role.ASSISTANT, "", Collections.emptyList(), Collections.emptyList()),
                true, null, null);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy