Rajagopal commited on
Commit
0696a9e
·
1 Parent(s): 7b1dc49

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -4
app.py CHANGED
@@ -37,10 +37,10 @@ def findanswer(Nand_url, Nand_question):
37
 
38
 
39
 
40
- image = Image.open('Wipro logo.png')
41
  st.image(image)
42
 
43
- st.header("Learn best practices in Data Centre Sustainability")
44
 
45
 
46
 
@@ -59,8 +59,6 @@ with st.form("my_form"):
59
 
60
  myurl = st.text_input("What is the URL?", "https://sites.pitt.edu/~dtipper/2011/GreenPaper.pdf")
61
 
62
- yourquestion = st.text_input('Ask your question on best practices', 'What is Energy Star 4.0 Standard?')
63
- st.write('Your input is ', yourquestion)
64
  yourquestion = st.selectbox(
65
  'Select', samplequestions )
66
 
 
37
 
38
 
39
 
40
+ image = Image.open('Wipro logo.png', width=100)
41
  st.image(image)
42
 
43
+ st.write("Learn best practices in Data Centre Sustainability")
44
 
45
 
46
 
 
59
 
60
  myurl = st.text_input("What is the URL?", "https://sites.pitt.edu/~dtipper/2011/GreenPaper.pdf")
61
 
 
 
62
  yourquestion = st.selectbox(
63
  'Select', samplequestions )
64