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

io.quarkiverse.langchain4j.watsonx.bean.TextGenerationResponse Maven / Gradle / Ivy

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

import java.util.List;

import com.fasterxml.jackson.annotation.JsonProperty;

public record TextGenerationResponse(List results) {
    public record Result(
            @JsonProperty("generated_text") String generatedText,
            @JsonProperty("generated_token_count") int generatedTokenCount,
            @JsonProperty("input_token_count") int inputTokenCount,
            @JsonProperty("stop_reason") String stopReason) {
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy