Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -3,7 +3,7 @@ import streamlit as st
|
|
| 3 |
|
| 4 |
# Sidebar contents
|
| 5 |
with st.sidebar:
|
| 6 |
-
st.title("
|
| 7 |
st.markdown(
|
| 8 |
"""
|
| 9 |
## About
|
|
@@ -14,15 +14,14 @@ with st.sidebar:
|
|
| 14 |
|
| 15 |
"""
|
| 16 |
)
|
| 17 |
-
st.write("By
|
| 18 |
|
| 19 |
-
st.title("
|
| 20 |
|
| 21 |
-
question = st.text_input("
|
| 22 |
|
| 23 |
if question:
|
| 24 |
-
|
| 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 |
|