hysts's picture
hysts HF staff
Add file
3396ac4
raw
history blame contribute delete
213 Bytes
import gradio as gr
def fn(message, history):
return message
gr.ChatInterface(
fn=fn,
cache_examples=True,
cache_mode="lazy",
examples=[["hey"], ["hello"]],
type="messages",
).launch()