File size: 237 Bytes
d4cdbf0
20f6917
d4cdbf0
20f6917
a3cd95c
 
14bb5e0
20f6917
 
 
7a45842
 
8fdda21
1
2
3
4
5
6
7
8
9
10
11
12
13
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()