Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
tsaditya
/
GPT-Kalki
like
1
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
ecb561e
GPT-Kalki
/
app.py
tsaditya
Create app.py
ecb561e
over 2 years ago
raw
Copy download link
history
blame
Safe
182 Bytes
import
streamlit
as
st
x = st.slider(
'Select a value'
)
st.write(x,
'squared is'
, x * x)
video_file =
open
(
'myvideo.mp4'
,
'rb'
)
video_bytes = video_file.read()
st.video(video_bytes)