Skip to content

Commit

Permalink
change default temperature to 0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
markpollack committed Aug 10, 2023
1 parent 47cbb07 commit 867a8e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class AzureOpenAiClient implements LlmClient {

private final OpenAIClient msoftOpenAiClient;

private Double temperature = 0.5;
private Double temperature = 0.7;

private String model = "gpt-35-turbo";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class AzureOpenAiProperties {

private String endpoint;

private Double temperature = 0.5;
private Double temperature = 0.7;

private String model = "gpt-35-turbo";

Expand Down

0 comments on commit 867a8e6

Please sign in to comment.