Skip to content

Commit

Permalink
Update utils.ts
Browse files Browse the repository at this point in the history
temperature range updated.
  • Loading branch information
oliverlabs authored Aug 14, 2023
1 parent 9c6a449 commit c7b5e97
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/features/chat/chat-services/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ export const transformConversationStyleToTemperature = (
) => {
switch (conversationStyle) {
case "precise":
return 1;
return 0.2;
case "balanced":
return 0.5;
case "creative":
return 0.1;
return 0.7;
default:
return 1;
return 0.5;
}
};

0 comments on commit c7b5e97

Please sign in to comment.