Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -12,9 +12,9 @@ def predict(message, history):
|
|
12 |
history.append({"role": "user", "content": message})
|
13 |
input_text = tokenizer.apply_chat_template(history, tokenize=False)
|
14 |
inputs = tokenizer.encode(input_text, return_tensors="pt").to(device)
|
15 |
-
outputs = model.generate(inputs, max_new_tokens=100, temperature=0.
|
16 |
decoded = tokenizer.decode(outputs[0])
|
17 |
-
response = decoded.split("<|
|
18 |
return response
|
19 |
|
20 |
demo = gr.ChatInterface(predict, type="messages")
|
|
|
12 |
history.append({"role": "user", "content": message})
|
13 |
input_text = tokenizer.apply_chat_template(history, tokenize=False)
|
14 |
inputs = tokenizer.encode(input_text, return_tensors="pt").to(device)
|
15 |
+
outputs = model.generate(inputs, max_new_tokens=100, temperature=0.7, top_p=0.9, do_sample=True)
|
16 |
decoded = tokenizer.decode(outputs[0])
|
17 |
+
response = decoded.split("<|start_header_id|>assistant<|end_header_id|>\\n\\n")[-1].split("<|im_end|>")[0]
|
18 |
return response
|
19 |
|
20 |
demo = gr.ChatInterface(predict, type="messages")
|