Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
hysts-debug
/
multimodal-chat-autofocus
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
hysts
HF staff
commited on
Dec 6, 2024
Commit
4057f87
·
1 Parent(s):
4c3dc1e
Add files
Browse files
Files changed (1)
hide
show
app.py
+8
-0
app.py
ADDED
Viewed
@@ -0,0 +1,8 @@
1
+
import gradio as gr
2
+
3
+
4
+
def fn(message, history, system_prompt):
5
+
return message
6
+
7
+
8
+
gr.ChatInterface(fn=fn, additional_inputs=[gr.Textbox()], multimodal=True).launch()