AjayKr09 commited on
Commit
4f5bc72
·
verified ·
1 Parent(s): 5bfe5dc

Update AI Chat Bot Dashboard.py

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