Spaces:
Running
Running
Create app.py
Browse files
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)
|