Commit
·
a5788b8
1
Parent(s):
75daee1
init
Browse files- app.py +4 -0
- requirements.txt +4 -0
app.py
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
|
3 |
+
x = st.slider('Select a value')
|
4 |
+
st.write(x, 'squared is', x * x)
|
requirements.txt
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
streamlit>=1.39.0
|
2 |
+
pandas>=2.2.3
|
3 |
+
fsspec>=2024.10.0
|
4 |
+
huggingface-hub>=0.26.1
|