AjayKr09 commited on
Commit
c8cca73
·
verified ·
1 Parent(s): 85f2df7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +17 -0
app.py CHANGED
@@ -1,2 +1,19 @@
1
  import streamlit as st
2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  import streamlit as st
2
 
3
+ st.title("AI Chat Bot Dashboard")
4
+
5
+ st.header('Interactive Chatbot')
6
+
7
+ st.write('''An interactive chatbot is designed to engage in dynamic, back-and-forth conversations with users.
8
+ These chatbots can understand and retain context from previous interactions, making their responses more
9
+ relevant and coherent as the conversation progresses. Interactive chatbots often use advanced natural language
10
+ processing (NLP) techniques and memory management to provide a more human-like experience. They are commonly used
11
+ in applications where ongoing interaction and context awareness are crucial, such as customer support, virtual
12
+ assistants, and personalized recommendations.''')
13
+
14
+ st.header('Non-Interactive Chatbot')
15
+
16
+ st.write('''A non-interactive chatbot, on the other hand, is designed for more straightforward, single-turn interactions.
17
+ These chatbots do not retain context from previous interactions, meaning each user query is treated independently.
18
+ Non-interactive chatbots are typically used for simple, transactional tasks where context is not required. They are
19
+ easier to develop and deploy and are suitable for scenarios where the interaction is brief and to the point.''')