Change temperature to 0.35 per Mistral recommendation

#1
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -44,7 +44,7 @@ model = AutoModelForCausalLM.from_pretrained(
44
  def stream_chat(
45
  message: str,
46
  history: list,
47
- temperature: float = 0.8,
48
  max_new_tokens: int = 1024,
49
  top_p: float = 1.0,
50
  top_k: int = 20,
 
44
  def stream_chat(
45
  message: str,
46
  history: list,
47
+ temperature: float = 0.35,
48
  max_new_tokens: int = 1024,
49
  top_p: float = 1.0,
50
  top_k: int = 20,