Ankush05 commited on
Commit
7b7ab10
·
1 Parent(s): dea421c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -10,7 +10,7 @@ bard = Bard(token = uri)
10
 
11
  def Chatbot():
12
  st.title("Chatbot")
13
- if advice_input := st.chat_input("Measures for better education ecosystem in India. e.g: how we can education wiil be more accessible, affordable & promote innovation. Comments shall be specific & factful.")
14
  bardans = bard.get_answer(advice_input)['content']
15
  anslist = bard.get_answer(f"Make a list of suggestions: \n{bardans} n\for the betterment education: \n{advice_input}\n\nThe list should be in three sections, section 1 for quality of education, section 2 for relevance of job oriented education & section 3 for pro & cons of linking Artifical intelligence with education system.")["content"]
16
 
 
10
 
11
  def Chatbot():
12
  st.title("Chatbot")
13
+ if advice_input := st.chat_input("Measures for better education ecosystem in India. e.g: how we can education wiil be more accessible, affordable & promote innovation. Comments shall be specific & factful."):
14
  bardans = bard.get_answer(advice_input)['content']
15
  anslist = bard.get_answer(f"Make a list of suggestions: \n{bardans} n\for the betterment education: \n{advice_input}\n\nThe list should be in three sections, section 1 for quality of education, section 2 for relevance of job oriented education & section 3 for pro & cons of linking Artifical intelligence with education system.")["content"]
16