GPT-Kalki / app.py
tsaditya's picture
Create app.py
ecb561e
raw
history blame
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)