Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -47,12 +47,13 @@ st.markdown("""
|
|
47 |
|
48 |
with st.sidebar:
|
49 |
st.header("ABOUT:")
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
|
|
56 |
for _ in range(20):
|
57 |
st.write("")
|
58 |
st.subheader("Build By:")
|
@@ -60,7 +61,7 @@ with st.sidebar:
|
|
60 |
st.write("contact: [Email]([email protected])")
|
61 |
|
62 |
if 'messages' not in st.session_state:
|
63 |
-
st.session_state.messages = [{'role': 'assistant', 'content': "I'm Here to help your programming realted questions"}]
|
64 |
|
65 |
if 'history' not in st.session_state:
|
66 |
st.session_state.history = []
|
|
|
47 |
|
48 |
with st.sidebar:
|
49 |
st.header("ABOUT:")
|
50 |
+
|
51 |
+
st.caption("""
|
52 |
+
<div class="justified-text">
|
53 |
+
This is GenXai (Generation Expert AI), designed to assist with programming-related questions. This AI can help you answer your coding queries, fix errors, and much more. Additionally, you can chat with GenXai to build and refine your questions, facilitating a more productive conversation.
|
54 |
+
</div>
|
55 |
+
""", unsafe_allow_html=True)
|
56 |
+
|
57 |
for _ in range(20):
|
58 |
st.write("")
|
59 |
st.subheader("Build By:")
|
|
|
61 |
st.write("contact: [Email]([email protected])")
|
62 |
|
63 |
if 'messages' not in st.session_state:
|
64 |
+
st.session_state.messages = [{'role': 'assistant', 'content': "I'm Here to help your programming realted questions😉"}]
|
65 |
|
66 |
if 'history' not in st.session_state:
|
67 |
st.session_state.history = []
|