Update app.py
Browse files
app.py
CHANGED
@@ -83,7 +83,7 @@ st.sidebar.markdown("**Note**: This model is still in the beta phase. Responses
|
|
83 |
|
84 |
# Add logo and text to the sidebar
|
85 |
st.sidebar.image("https://i.ibb.co/KrZnSmg/Screenshot-2024-06-11-02-04-40.png", width=200)
|
86 |
-
st.sidebar.write("A product proudly developed by Raxder AI
|
87 |
|
88 |
# Initialize chat history
|
89 |
if "messages" not in st.session_state:
|
@@ -105,7 +105,7 @@ intervention_keywords = [
|
|
105 |
]
|
106 |
|
107 |
# Accept user input
|
108 |
-
if prompt := st.chat_input(f"Hi, I'm {selected_model},
|
109 |
# Display user message in chat message container
|
110 |
with st.chat_message("user"):
|
111 |
st.markdown(prompt)
|
|
|
83 |
|
84 |
# Add logo and text to the sidebar
|
85 |
st.sidebar.image("https://i.ibb.co/KrZnSmg/Screenshot-2024-06-11-02-04-40.png", width=200)
|
86 |
+
st.sidebar.write("A product proudly developed by Raxder AI (www.raxder.com)")
|
87 |
|
88 |
# Initialize chat history
|
89 |
if "messages" not in st.session_state:
|
|
|
105 |
]
|
106 |
|
107 |
# Accept user input
|
108 |
+
if prompt := st.chat_input(f"Hi, I'm {selected_model}, let's talk"):
|
109 |
# Display user message in chat message container
|
110 |
with st.chat_message("user"):
|
111 |
st.markdown(prompt)
|