operablepattern commited on
Commit
7a45842
·
verified ·
1 Parent(s): 8fdda21

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -2,10 +2,10 @@ import gradio as gr
2
  from llama_cpp import Llama
3
 
4
  def response(message, history):
5
- return message
6
 
7
  gr.ChatInterface(
8
  fn=response,
9
- title="",
10
- theme=''
11
  ).queue().launch()
 
2
  from llama_cpp import Llama
3
 
4
  def response(message, history):
5
+ return message + history
6
 
7
  gr.ChatInterface(
8
  fn=response,
9
+ title="Chat with Gemma",
10
+ theme='sky'
11
  ).queue().launch()