test-chat-share / app.py
abidlabs's picture
abidlabs HF Staff
Create app.py
6f7a32a
raw
history blame
241 Bytes
import gradio as gr
def generate(x):
return [
(f"abc ![](/file={x})", "def"),
("ghi", "jkl")]
with gr.Blocks() as demo:
i = gr.Image(type="filepath")
c = gr.Chatbot()
i.change(generate, i, c)
demo.launch()