operablepattern's picture
Update app.py
14bb5e0 verified
raw
history blame
237 Bytes
import gradio as gr
from llama_cpp import Llama
def response(message, history):
print(message)
print(history)
return message
gr.ChatInterface(
fn=response,
title="Chat with Gemma",
theme='sky'
).queue().launch()