Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ankan8145
/
Med-Report-Gen-Preview
like
1
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
ankan8145
commited on
Sep 3, 2024
Commit
7b6ea28
·
verified
·
1 Parent(s):
51d11b2
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+7
-0
app.py
ADDED
Viewed
@@ -0,0 +1,7 @@
1
+
import gradio as gr
2
+
import os
3
+
4
+
hf_token = os.getenv("HF_TOKEN")
5
+
6
+
demo = gr.load("ankan8145/Med-Report-Generation", src="spaces", hf_token=hf_token, token=False)
7
+
demo.launch()