Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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()
|