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

dev.langchain4j.qianfan.spring.LanguageModelProperties Maven / Gradle / Ivy

There is a newer version: 0.36.2
Show newest version
package dev.langchain4j.qianfan.spring;

import lombok.Getter;
import lombok.Setter;
import org.springframework.boot.context.properties.NestedConfigurationProperty;

import java.time.Duration;

@Getter
@Setter
class LanguageModelProperties {

    String baseUrl;
    String apiKey;
    String secretKey;
    Double temperature;
    Integer maxRetries;
    Integer topK;
    Double topP;
    String modelName;
    String endpoint;
    Double penaltyScore;
    Boolean logRequests;
    Boolean logResponses;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy