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

io.github.microcks.config.AICopilotConfiguration Maven / Gradle / Ivy

The newest version!
/*
 * Copyright The Microcks Authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *  http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package io.github.microcks.config;

import io.github.microcks.util.ai.AICopilot;
import io.github.microcks.util.ai.OpenAICopilot;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

import java.util.Arrays;
import java.util.Map;

/**
 * Application configuration in charge of building AI Copilot instance.
 * @author laurent
 */
@Configuration
@ConfigurationProperties("ai-copilot")
public class AICopilotConfiguration {

   /** A simple logger for diagnostic messages. */
   private static Logger log = LoggerFactory.getLogger(AICopilotConfiguration.class);

   private boolean enabled = false;

   private String implementation;

   private Map openai;

   /**
    * Enable the usage of AICopilot feature. Default is false. In that case, a null implementation will be provided.
    * @param enabled Flag telling if AICopilot is activated.
    */
   public void setEnabled(boolean enabled) {
      this.enabled = enabled;
   }

   /**
    * Set the name of AICopilot implementation to later build.
    * @param implementation THe name of implementation to build.
    */
   public void setImplementation(String implementation) {
      this.implementation = implementation;
   }

   /**
    * Set OpenAI implementation configuration properties.
    * @param openai OpenAI configuration properties.
    */
   public void setOpenai(Map openai) {
      this.openai = openai;
   }

   /**
    * Build and configure a suitable AICopilot based on application properties.
    * @return An AICopilot implementation configured as specified.
    */
   @Bean
   public AICopilot aiCopilotImplementation() {
      if (enabled && implementation != null) {
         log.info("AICopilot is enabled with implementation '{}'", implementation);

         if ("openai".equals(implementation)) {
            // Check the presence of mandatory keys.
            if (Arrays.stream(OpenAICopilot.getMandatoryConfigKeys()).allMatch(key -> openai.containsKey(key))) {
               return new OpenAICopilot(openai);
            } else {
               log.warn("At least one mandatory configuration is missing for OpenAI AICopilot implementation");
               log.warn("Mandatory configuration keys are: {}", OpenAICopilot.getMandatoryConfigKeys());
            }
         }
      }
      log.info("AICopilot is disabled");
      return null;
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy