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

com.launchableinc.openai.completion.chat.ChatMessageRole Maven / Gradle / Ivy

The newest version!
package com.launchableinc.openai.completion.chat;

/**
 * see {@link ChatMessage} documentation.
 */
public enum ChatMessageRole {
	SYSTEM("system"),
	USER("user"),
	ASSISTANT("assistant"),
	FUNCTION("function");

	private final String value;

	ChatMessageRole(final String value) {
		this.value = value;
	}

	public String value() {
		return value;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy