Skip to content

Commit

Permalink
fix: ChatGPTNextWeb#159 temperature should range 0 - 2
Browse files Browse the repository at this point in the history
  • Loading branch information
Yidadaa authored Mar 29, 2023
1 parent f893f53 commit 380f818
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/components/settings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ export function Settings(props: { closeSettings: () => void }) {
type="range"
value={config.modelConfig.temperature.toFixed(1)}
min="0"
max="1"
max="2"
step="0.1"
onChange={(e) => {
updateConfig(
Expand Down

0 comments on commit 380f818

Please sign in to comment.