Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
OhanaTechnologies
/
DSS
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
h3110w0rld
commited on
Mar 24, 2025
Commit
18db82e
·
verified
·
1 Parent(s):
bd38aad
Update app.py
Browse files
Files changed (1)
hide
show
app.py
+5
-3
app.py
CHANGED
Viewed
@@ -1,4 +1,6 @@
1
-
import
streamlit
as
st
2
3
-
x = st
.
slider
(
'Select a value')
4
-
st.write(x
,
'squared is', x * x)
1
+
import
gradio
as
gr
2
3
+
gr
.
load
(
4
+
"models/deepseek-ai/DeepSeek-V3-0324"
,
5
+
provider="fireworks-ai",
6
+
).launch()