vericudebuget commited on
Commit
59a9cc5
·
verified ·
1 Parent(s): 37880a7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -12,7 +12,8 @@ def format_prompt(message, history):
12
  prompt += f"[INST] {message} [/INST]"
13
  return prompt
14
 
15
- def generate(prompt, history, system_prompt, temperature=0.9, max_new_tokens=9048, top_p=0.95, repetition_penalty=1.0, theme):
 
16
  temperature = max(float(temperature), 1e-2)
17
  top_p = float(top_p)
18
 
 
12
  prompt += f"[INST] {message} [/INST]"
13
  return prompt
14
 
15
+ def generate(prompt, history, system_prompt, theme, temperature=0.9, max_new_tokens=9048, top_p=0.95, repetition_penalty=1.0):
16
+
17
  temperature = max(float(temperature), 1e-2)
18
  top_p = float(top_p)
19