Ollama4j
A Java library (wrapper/binding) for Ollama server.
Loading...
Searching...
No Matches
OllamaChatMessageRole.java
Go to the documentation of this file.
1package io.github.ollama4j.models.chat;
2
3import com.fasterxml.jackson.annotation.JsonValue;
4
9 SYSTEM("system"),
10 USER("user"),
11 ASSISTANT("assistant");
12
13 @JsonValue
14 private String roleName;
15
16 private OllamaChatMessageRole(String roleName){
17 this.roleName = roleName;
18 }
19}