Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 37d9291

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

File tree

Expand file treeCollapse file tree

1 file changed

+2
-3
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+2
-3
lines changed

‎api/src/main/java/com/theokanning/openai/completion/chat/ChatMessage.java

Copy file name to clipboardExpand all lines: api/src/main/java/com/theokanning/openai/completion/chat/ChatMessage.java
+2-3Lines changed: 2 additions & 3 deletions
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.