karimouda commited on
Commit
8ecbfe2
·
verified ·
1 Parent(s): df75c9b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -37,7 +37,7 @@ def generate(
37
  message: str,
38
  chat_history: list[dict],
39
  max_new_tokens: int = 1024,
40
- temperature: float = 0.0,
41
  ) -> Iterator[str]:
42
  conversation = chat_history.copy()
43
  conversation.append({"role": "user", "content": message})
 
37
  message: str,
38
  chat_history: list[dict],
39
  max_new_tokens: int = 1024,
40
+ temperature: float = 0.01,
41
  ) -> Iterator[str]:
42
  conversation = chat_history.copy()
43
  conversation.append({"role": "user", "content": message})