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

com.xlrit.gears.plugin.chatgpt.ChatGptProperties Maven / Gradle / Ivy

package com.xlrit.gears.plugin.chatgpt;

import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;

@Data
@Component
@ConfigurationProperties(prefix = "gears.chatgpt")
public class ChatGptProperties {
	private boolean enabled = false;
	private String role = "chatgpt";
	private String key = null;
	private String model = "gpt-3.5-turbo";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy