Skip to content

Commit

Permalink
hotfix: #70 Gpt4 Temperature 값 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
yo0oni committed May 12, 2024
1 parent 8e0e342 commit 039f768
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public class GptConfig {
public static final Integer MAX_TOKEN = 4095;
public static final Boolean STREAM = false;
public static final String ROLE = "user";
public static final Double TEMPERATURE = 1.5;
public static final Double TEMPERATURE = 1.0;
public static final String MEDIA_TYPE = "application/json; charset=UTF-8";
public static final String CHAT_URL = "https://api.openai.com/v1/chat/completions";
public static final String PROMPT = """
Expand Down

0 comments on commit 039f768

Please sign in to comment.