Skip to content

Commit 37d9291

Browse files
authored
Windows javadoc encoding error fix (TheoKanning#246)
* windows javadoc encoding error fix * windows-1252 standard double quotation
1 parent 7141e4c commit 37d9291

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Diff for: api/src/main/java/com/theokanning/openai/completion/chat/ChatMessage.java

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
package com.theokanning.openai.completion.chat;
22

33
import lombok.AllArgsConstructor;
4-
import lombok.Builder;
54
import lombok.Data;
65
import lombok.NoArgsConstructor;
76

87
/**
9-
* <p>Each object has a role (either system”, “user, or assistant) and content (the content of the message). Conversations can be as short as 1 message or fill many pages.</p>
8+
* <p>Each object has a role (either "system", "user", or "assistant") and content (the content of the message). Conversations can be as short as 1 message or fill many pages.</p>
109
* <p>Typically, a conversation is formatted with a system message first, followed by alternating user and assistant messages.</p>
11-
* <p>The system message helps set the behavior of the assistant. In the example above, the assistant was instructed with You are a helpful assistant.<br>
10+
* <p>The system message helps set the behavior of the assistant. In the example above, the assistant was instructed with "You are a helpful assistant."<br>
1211
* The user messages help instruct the assistant. They can be generated by the end users of an application, or set by a developer as an instruction.<br>
1312
* The assistant messages help store prior responses. They can also be written by a developer to help give examples of desired behavior.
1413
* </p>

0 commit comments

Comments
 (0)