SilvusTV commited on
Commit
6672a13
1 Parent(s): 438833d

update app.py for only use web application

Browse files
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -1,11 +1,11 @@
1
  from image import *
2
  import streamlit as st
 
 
3
 
4
- x = st.slider('Select a value')
5
- st.write(x, 'squared is', x * x)
6
 
7
-
8
- url = "https://i.imgur.com/qs0CxjE_d.webp?maxwidth=760&fidelity=grand"
9
- text = "What is the two color's car ?"
10
 
11
  st.write(image(url, text))
 
1
  from image import *
2
  import streamlit as st
3
+ # url = "https://i.imgur.com/qs0CxjE_d.webp?maxwidth=760&fidelity=grand"
4
+ # text = "What is the two color's car ?"
5
 
6
+ st.write('Application starting...')
 
7
 
8
+ text = st.text('Posez votre question (en anglais)')
9
+ url = st.text('mettez le liens de votre image')
 
10
 
11
  st.write(image(url, text))