Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
eteron
/
Dialogue_assistant
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
eteron
commited on
Dec 27, 2023
Commit
7bc8fb3
·
1 Parent(s):
6f854da
Upload app.py
Browse files
Add application file
Files changed (1)
hide
show
app.py
+9
-0
app.py
ADDED
Viewed
@@ -0,0 +1,9 @@
1
+
import gradio as gr
2
+
3
+
def predict(name):
4
+
pass
5
+
6
+
interface = gr.ChatInterface(predict)
7
+
8
+
if __name__ == '__main__':
9
+
interface.launch(predict)