operablepattern commited on
Commit
a3cd95c
1 Parent(s): 7a45842

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -2,7 +2,9 @@ import gradio as gr
2
  from llama_cpp import Llama
3
 
4
  def response(message, history):
5
- return message + history
 
 
6
 
7
  gr.ChatInterface(
8
  fn=response,
 
2
  from llama_cpp import Llama
3
 
4
  def response(message, history):
5
+ print(message)
6
+ print(history)
7
+ return history
8
 
9
  gr.ChatInterface(
10
  fn=response,