juliawri commited on
Commit
eab5800
·
verified ·
1 Parent(s): f201a2c

raised max_tokens, lowered temperature

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -16,9 +16,9 @@ def respond(message, history):
16
 
17
  for message in client.chat_completion(
18
  model="meta-llama/Llama-3.1-8B-Instruct",
19
- temperature=0.8,
20
  messages=messages,
21
- max_tokens=150,
22
  stream=True
23
  ):
24
  token = message.choices[0].delta.content
 
16
 
17
  for message in client.chat_completion(
18
  model="meta-llama/Llama-3.1-8B-Instruct",
19
+ temperature=0.4,
20
  messages=messages,
21
+ max_tokens=350,
22
  stream=True
23
  ):
24
  token = message.choices[0].delta.content