-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
211 lines (151 loc) · 5.74 KB
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
# import streamlit as st
# from utils import qa_pipeline
# chain = qa_pipeline()
# def main():
# global chain
# # Set the title of the web application
# st.title('Indian Law Q&A Bot')
# # Initialize the session state if it doesn't exist
# if 'chat_log' not in st.session_state:
# st.session_state.chat_log = []
# # Get the user's question
# user_input = st.text_input("You:")
# # On user input, generate response and add to the chat log
# if user_input:
# # Generate the answer
# bot_output = chain(user_input)
# bot_output = bot_output['result']
# # Add the user input and bot output to the chat log
# st.session_state.chat_log.append({"User": user_input, "Bot": bot_output})
# # Clear the input box
# st.text_input("You:", value="", key="unique")
# # Display the chat log
# for exchange in st.session_state.chat_log:
# st.markdown(f'**You:** {exchange["User"]}')
# st.markdown(f'**Bot:** {exchange["Bot"]}')
# if __name__ == "__main__":
# main()
# import streamlit as st
# from utils import qa_pipeline
# chain = qa_pipeline()
# def main():
# global chain
# # Set the title of the web application
# st.title('Indian Law Q&A Bot')
# # Initialize the session state with an empty chat log if it doesn't exist
# session_state = st.session_state.get(chat_log=[])
# # Get the user's question
# user_input = st.text_input("You:")
# # On user input, generate response and add to the chat log
# if user_input:
# # Generate the answer
# bot_output = chain(user_input)
# bot_output = bot_output['result']
# # Add the user input and bot output to the chat log
# session_state.chat_log.append({"User": user_input, "Bot": bot_output})
# # Clear the input box
# st.text_input("You:", value="", key="unique")
# # Display the chat log
# for exchange in session_state.chat_log:
# st.markdown(f'**You:** {exchange["User"]}')
# st.markdown(f'**Bot:** {exchange["Bot"]}')
# if __name__ == "__main__":
# main()
# import streamlit as st
# from utils import qa_pipeline
# chain = qa_pipeline()
# # Function to initialize session state
# def init_session():
# return {"chat_log": []}
# def main():
# global chain
# # Set the title of the web application
# st.title('Indian Law Q&A Bot')
# # Get or create the session state
# session_state = st.session_state.get(chat_log=[], init=init_session)
# # Get the user's question
# user_input = st.text_input("You:")
# # On user input, generate response and add to the chat log
# if user_input:
# # Generate the answer
# bot_output = chain(user_input)
# bot_output = bot_output['result']
# # Add the user input and bot output to the chat log
# session_state.chat_log.append({"User": user_input, "Bot": bot_output})
# # Clear the input box
# st.text_input("You:", value="", key="unique")
# # Display the chat log
# for exchange in session_state.chat_log:
# st.markdown(f'**You:** {exchange["User"]}')
# st.markdown(f'**Bot:** {exchange["Bot"]}')
# if __name__ == "__main__":
# main()
# import streamlit as st
# from utils import qa_pipeline
# chain = qa_pipeline()
# # Function to initialize session state
# def init_session():
# return {"chat_log": []}
# def main():
# global chain
# # Set the title of the web application
# st.title('Indian Law Q&A Bot')
# # Try to get the session state, initialize if not present
# try:
# session_state = st.session_state
# except AttributeError:
# st.session_state = init_session()
# session_state = st.session_state
# # Get the user's question
# user_input = st.text_input("You:")
# # On user input, generate response and add to the chat log
# if user_input:
# # Generate the answer
# bot_output = chain(user_input)
# bot_output = bot_output['result']
# # Add the user input and bot output to the chat log
# session_state.chat_log.append({"User": user_input, "Bot": bot_output})
# # Clear the input box
# st.text_input("You:", value="", key="unique")
# # Display the chat log
# for exchange in session_state.chat_log:
# st.markdown(f'**You:** {exchange["User"]}')
# st.markdown(f'**Bot:** {exchange["Bot"]}')
# if __name__ == "__main__":
# main()
import streamlit as st
from utils import qa_pipeline
chain = qa_pipeline()
# Function to initialize session state
def init_session():
return {"chat_log": []}
def main():
global chain
# Set the title of the web application
st.title('LawBOT')
# Try to get the session state, initialize if not present
try:
session_state = st.session_state
except AttributeError:
st.session_state = init_session()
session_state = st.session_state
# Ensure chat_log is initialized
if 'chat_log' not in session_state:
session_state.chat_log = []
# Get the user's question
user_input = st.text_input("You:")
# On user input, generate response and add to the chat log
if user_input:
# Generate the answer
bot_output = chain(user_input)
bot_output = bot_output['result']
# Add the user input and bot output to the chat log
session_state.chat_log.append({"User": user_input, "Bot": bot_output})
# Clear the input box
st.text_input("You:", value="", key="unique")
# Display the chat log
for exchange in session_state.chat_log:
st.markdown(f'**You:** {exchange["User"]}')
st.markdown(f'**LawBot:** {exchange["Bot"]}')
if __name__ == "__main__":
main()