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()