Mr-Vicky-01 commited on
Commit
578200d
·
verified ·
1 Parent(s): f01ae47

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +22 -0
app.py CHANGED
@@ -37,6 +37,28 @@ def response_streaming(text):
37
  st.title("GenXAi")
38
  st.text("I am Generative EXpert Assistant for Programming Related Task!")
39
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
40
  if 'messages' not in st.session_state:
41
  st.session_state.messages = [{'role': 'assistant', 'content': "I'm Here to help your programming realted questions"}]
42
 
 
37
  st.title("GenXAi")
38
  st.text("I am Generative EXpert Assistant for Programming Related Task!")
39
 
40
+ st.markdown("""
41
+ <style>
42
+ .justified-text {
43
+ text-align: justify;
44
+ }
45
+ </style>
46
+ """, unsafe_allow_html=True)
47
+
48
+ with st.sidebar:
49
+ st.header("ABOUT:")
50
+ st.caption("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.")
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
+ # for _ in range(20):
57
+ st.write("")
58
+ st.subheader("Build By:")
59
+ st.write("[Pachaiappan❤️](https://github.com/Mr-Vicky-01)")
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