Skip to content
This repository has been archived by the owner on Jun 6, 2024. It is now read-only.

Commit

Permalink
Windows javadoc encoding error fix (#246)
Browse files Browse the repository at this point in the history
* windows javadoc encoding error fix

* windows-1252 standard double quotation
  • Loading branch information
tgolob committed Apr 8, 2023
1 parent 7141e4c commit 37d9291
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
package com.theokanning.openai.completion.chat;

import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;

/**
* <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>
* <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>
* <p>Typically, a conversation is formatted with a system message first, followed by alternating user and assistant messages.</p>
* <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>
* <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>
* 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>
* The assistant messages help store prior responses. They can also be written by a developer to help give examples of desired behavior.
* </p>
Expand Down

0 comments on commit 37d9291

Please sign in to comment.