aks1981 commited on
Commit
b085dc9
·
verified ·
1 Parent(s): d527a9f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -6
app.py CHANGED
@@ -3,7 +3,7 @@ import streamlit as st
3
 
4
  # Sidebar contents
5
  with st.sidebar:
6
- st.title("SiffyLab Chat App")
7
  st.markdown(
8
  """
9
  ## About
@@ -14,15 +14,14 @@ with st.sidebar:
14
 
15
  """
16
  )
17
- st.write("By RTRS Datalake team")
18
 
19
- st.title("SiffyLab 💬")
20
 
21
- question = st.text_input("Question: ")
22
 
23
  if question:
24
- chain = get_sql_db_chain(db_name)
25
- response = question
26
  st.header("Answer")
27
  st.write(response)
28
 
 
3
 
4
  # Sidebar contents
5
  with st.sidebar:
6
+ st.title("The School of AI Tokenization App")
7
  st.markdown(
8
  """
9
  ## About
 
14
 
15
  """
16
  )
17
+ st.write("By Ajit Kumar Singh")
18
 
19
+ st.title("The School of AI 💬")
20
 
21
+ question = st.text_input("Please enter Hindi text: ")
22
 
23
  if question:
24
+ response = "Your text is " + question
 
25
  st.header("Answer")
26
  st.write(response)
27