com.theokanning.openai.completion.chat.ChatMessageRole Maven / Gradle / Ivy
package com.theokanning.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 - 2025 Weber Informatics LLC | Privacy Policy