Skip to content

Commit

Permalink
change default setting openIA
Browse files Browse the repository at this point in the history
  • Loading branch information
waxdred committed Jan 27, 2023
1 parent 056d6c6 commit c637482
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Binary file modified bin/chatGPT
Binary file not shown.
6 changes: 3 additions & 3 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ import (
)

var (
temperature = flag.Float64("temp", 0, "chatGpt temperature")
top = flag.Float64("top", 0.5, "chatGpt topP")
temperature = flag.Float64("temp", 0.7, "chatGpt temperature")
top = flag.Float64("top", 0.9, "chatGpt topP")
frequency = flag.Float64("freg", 0.5, "chatGpt frequency")
presence = flag.Float64("pres", 0.5, "chatGpt presence")
presence = flag.Float64("pres", 0.8, "chatGpt presence")
token = flag.Int64("token", 100, "chatGpt presence")
)

Expand Down

0 comments on commit c637482

Please sign in to comment.