Skip to content

Commit

Permalink
Merge pull request #71 from tukcomCD2024/70-backend-hotfix-gptconfig-…
Browse files Browse the repository at this point in the history
…temperature-변경

[Backend : Hotfix] #70 Gpt4 Temperature 값 변경
  • Loading branch information
yo0oni authored May 12, 2024
2 parents 8e0e342 + 039f768 commit 7fcbd86
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 7fcbd86

Please sign in to comment.