Tamerstito commited on
Commit
e21b4e7
·
verified ·
1 Parent(s): 07b1ebe

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ # When prompted for a password, use an access token with write permissions.
2
+ # Generate one from your settings: https://huggingface.co/settings/tokens
3
+ git clone https://huggingface.co/spaces/Tamerstito/vhs-intro-ai
4
+
5
+ import streamlit as st
6
+
7
+ x = st.slider('Select a value')
8
+ st.write(x, 'squared is', x * x)