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

com.agentsflex.spring.boot.llm.spark.SparkAutoConfiguration Maven / Gradle / Ivy

There is a newer version: 1.0.0-rc.2
Show newest version
package com.agentsflex.spring.boot.llm.spark;

import com.agentsflex.llm.spark.SparkLlm;
import com.agentsflex.llm.spark.SparkLlmConfig;
import org.springframework.boot.autoconfigure.condition.ConditionalOnClass;
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

/**
 * Agents-Flex 大语言模型自动配置。
 *
 * @author 王帅
 * @since 2024-04-10
 */
@ConditionalOnClass(SparkLlm.class)
@Configuration(proxyBeanMethods = false)
@EnableConfigurationProperties(SparkProperties.class)
public class SparkAutoConfiguration {

    @Bean
    @ConditionalOnMissingBean
    public SparkLlm sparkLlm(SparkProperties properties) {
        SparkLlmConfig config = new SparkLlmConfig();
        config.setAppId(properties.getAppId());
        config.setApiKey(properties.getApiKey());
        config.setApiSecret(properties.getApiSecret());
        config.setVersion(properties.getVersion());
        return new SparkLlm(config);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy