Files changed (1) hide show
  1. app.py +7 -0
app.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ git clone https://huggingface.co/spaces/aman81/animate-anyone
2
+ hf download aman81/animate-anyone --repo-type=space
3
+ import streamlit as st
4
+
5
+ x = st.slider('Select a value')
6
+ st.write(x, 'squared is', x * x)
7
+ git add app.py && git commit -m 'Add application file' && git push