change default temperature from 1.0 to 0.7

When developing prompt, it is generally better use a lower temperature
from beginning
This commit is contained in:
2023-07-27 11:32:36 +08:00
parent b5ec1fe518
commit c90e32d74f

View File

@@ -59,7 +59,7 @@ class Chat {
tokens_margin = 1024,
apiEndPoint = "https://api.openai.com/v1/chat/completions",
model = "gpt-3.5-turbo",
temperature = 1.0,
temperature = 0.7,
top_p = 1,
presence_penalty = 0,
frequency_penalty = 0,